diff --git a/lib/far_mar/market_class.rb b/lib/far_mar/market_class.rb index 81e0e9a3..b712e677 100644 --- a/lib/far_mar/market_class.rb +++ b/lib/far_mar/market_class.rb @@ -1,7 +1,69 @@ +require "pry" + module FarMar class Market - def initialize + + attr_accessor :id, :name, :address, :city, :county, :state, :zip + + # Each individual market has many vendors associated with it. The `FarMar::Market` data, in order in the CSV, consists of: + # + # 1. ID - (Fixnum) a unique identifier for that market + # 2. Name - (String) the name of the market (not guaranteed unique) + # 3. Address - (String) street address of the market + # 4. City - (String) city in which the market is located + # 5. County - (String) county in which the market is located + # 6. State - (String) state in which the market is located + # 7. Zip - (String) zipcode in which the market is located + + def initialize(id, name, address, city, county, state, zip) + @id = id + @name = name + @address = address + @city = city + @county = county + @state = state + @zip = zip + end + +# - `self.all` - returns a collection of Market instances, representing all of the markets described in the CSV + def self.all market_array = CSV.read("./support/markets.csv") + all_markets_array = [] + market_array.each do |single_array| + id = single_array[0] + name = single_array[1] + address = single_array[2] + city = single_array[3] + county = single_array[4] + state = single_array[5] + zip = single_array[6] + all_markets_array.push(FarMar::Market.new(id, name, address, city, county, state, zip)) + end + return all_markets_array + end + +# # - `self.find(id)` - returns an instance of Market where the value of the `id` field in the CSV matches the passed parameter. + + def self.find_market(market_id) + FarMar::Market.all.find do |single_market| + if single_market.id == market_id.to_s + return single_market + end + end + end + +# - `vendors` - returns a collection of `FarMar::Vendor` instances that are associated with the market by the `market_id` field. + + def vendors + var = [] + FarMar::Vendor.all.find_all do |seller| + if seller.market_id == self.id.to_s + var.push(seller) + end #close if + end #close do + #return array of vendor instances + return var end + end end diff --git a/lib/far_mar/product_class.rb b/lib/far_mar/product_class.rb index dda1e75f..e2c760d8 100644 --- a/lib/far_mar/product_class.rb +++ b/lib/far_mar/product_class.rb @@ -1,14 +1,89 @@ module FarMar class Product + attr_accessor :id, :name, :vendor_id + # Each product belongs to a vendor. The `vendor_id` field refers to the `FarMar::Vendor` ID field. The `FarMar::Product` data, in order in the CSV, consists of: # # 1. ID - (Fixnum) uniquely identifies the product # 2. Name - (String) the name of the product (not guaranteed unique) # 3. Vendor_id - (Fixnum) a reference to which vendor sells this product - def initialize - array_of_product = CSV.read("./support/products.csv") + def initialize(id, name, vendor_id) + @id = id + @name = name + @vendor_id = vendor_id + end + +# - `self.all` - returns a collection of Product instances, representing all of the products described in the CSV +def self.all + product_array = CSV.read("./support/products.csv") + all_products_array = [] + product_array.each do |single_array| + id = single_array[0] + name = single_array[1] + vendor_id = single_array[2] + all_products_array.push(self.new(id, name, vendor_id)) + end + return all_products_array +end + +# - `self.find(id)` - returns an instance of Product where the value of the `id` field in the CSV matches the passed parameter. + def self.find_product(product_id) + self.all.find do |single_product| + if single_product.id == product_id.to_s + return single_product + end + end + end + +# - `find_product_things` - returns and array of all of the product item instances from a given class + + def find_product_things(pd_id) + products_items = [] + FarMar::Sale.all.find_all do |single_item| + if single_item.product_id == pd_id.to_s + products_items.push(single_item) + end end + return products_items + end + +# - `vendor` - returns the `FarMar::Vendor` instance that is associated with this vendor using the `FarMar::Product` `vendor_id` field + + def vendor(prod_id) + prod = FarMar::Product.find_product(prod_id) + vendor = FarMar::Vendor.find_vendor(prod.vendor_id) + return vendor[0] + end + +# - `sales` - returns a collection of `FarMar::Sale` instances that are associated using the `FarMar::Sale` `product_id` field. + + def sales(prod_id) + find_product_things(prod_id) + end + +# - `number_of_sales` - returns the number of times this product has been sold. + + def number_of_sales(prod_id) + find_product_things(prod_id).length + end + +# - `self.by_vendor(vendor_id)` - returns all of the products with the given `vendor_id` + + def self.by_vendor(vend_id) + var = [] + #passes to the variable item each of the vendor instances in turn + self.all.find_all do |item| + # compares the vendor id of a product instance to the vendor id we have taken in as a parameter + if item.vendor_id == vend_id.to_s + #pushes the vendor instances that pass the comparison to the var array + var.push(item) + end #close if + end #close do + #return array of vendor instances + return var + end + end end diff --git a/lib/far_mar/sale_class.rb b/lib/far_mar/sale_class.rb index 14aeb09c..46ee508b 100644 --- a/lib/far_mar/sale_class.rb +++ b/lib/far_mar/sale_class.rb @@ -1,6 +1,8 @@ module FarMar class Sale + attr_accessor :id, :amount, :purchase_time, :vendor_id, :product_id + # Each sale belongs to a vendor __AND__ a product. The `vendor_id` and `product_id` fields refer to the `FarMar::Vendor` and `FarMar::Product` ID fields, respectively. The `FarMar::Sale` data, in order in the CSV, consists of: # # 1. ID - (Fixnum) uniquely identifies the product @@ -9,8 +11,80 @@ class Sale # 4. Vendor_id - (Fixnum) a reference to which vendor completed the sale # 5. Product_id - (Fixnum) a refere - def initialize + def initialize(id, amount, purchase_time, vendor_id, product_id) + @id = id + @amount = amount + @purchase_time = DateTime.strptime(purchase_time, "%Y-%m-%d %H:%M:%S %z") + @vendor_id = vendor_id + @product_id = product_id + end + +# - `self.all` - returns a collection of Sale instances, representing all of the markets described in the CSV + def self.all array_of_sale = CSV.read("./support/sales.csv") + all_sales_array = [] + array_of_sale.each do |single_sale| + id = single_sale[0] + amount = single_sale[1] + purchase_time = single_sale[2] + vendor_id = single_sale[3] + product_id = single_sale[4] + all_sales_array.push(FarMar::Sale.new(id, amount, purchase_time, vendor_id, product_id)) + end + return all_sales_array end + +# - `self.find(id)` - returns an instance of Sale where the value of the `id` field in the CSV matches the passed parameter. + def self.find_sale(sale_id) + all_the_sales = self.all + all_the_sales.find do |single_sale| + if single_sale.id == sale_id.to_s + return single_sale + end + end + end + +# - `find_sale_things` - returns and array of all of the sale item related instances from a given class + + def find_sale_things(class_type) + case class_type + when "product" + item_array = FarMar::Product.all + compare = self.product_id.to_s + when "vendor" + item_array = FarMar::Vendor.all + compare = self.vendor_id.to_s + end + item_array.find_all do |sale_item| + if sale_item.id == compare + return sale_item + end + end + end + + +# - `vendor` - returns the `FarMar::Vendor` instance that is associated with this sale using the `FarMar::Sale` `vendor_id` field + def vendor + find_sale_things("vendor") + end + +# - `product` - returns the `FarMar::Product` instance that is associated with this sale using the `FarMar::Sale` `product_id` field + + def product + find_sale_things("product") + end + +# - `self.between(beginning_time, end_time)` - returns a collection of FarMar::Sale objects where the purchase time is between the two times given as arguments + + def self.between(begin_time, end_time) + time_array = [] + self.all.find_all do |purchase| + if begin_time <= purchase.purchase_time && end_time >= purchase.purchase_time + time_array.push(purchase) + end + end + return time_array + end + end end diff --git a/lib/far_mar/vendor_class.rb b/lib/far_mar/vendor_class.rb index e56cd6b6..96f3d743 100644 --- a/lib/far_mar/vendor_class.rb +++ b/lib/far_mar/vendor_class.rb @@ -1,6 +1,8 @@ module FarMar class Vendor + attr_accessor :id, :name, :employees_count, :market_id + # Each vendor belongs to a market, the `market_id` field refers to the `FarMar::Market` ID field. # Each vendor has many products for sell. The `FarMar::Vendor` data, in order in the CSV, consists of: # @@ -9,8 +11,91 @@ class Vendor # 3. No. of Employees - (Fixnum) How many employees the vendor has at the market # 4. Market_id - (Fixnum) a reference to which market the vendor attends - def initialize - array_of_vendor = CSV.read("./support/vendors.csv") + def initialize(id, name, employees_count, market_id) + @id = id + @name = name + @employees_count = employees_count + @market_id = market_id + end + +# - `self.all` - returns a collection of Vendor instances, representing all of the markets described in the CSV + def self.all + vendor_array = CSV.read("./support/vendors.csv") + all_vend_instances = [] + vendor_array.each do |single_vend| + id = single_vend[0] + name = single_vend[1] + employees_count = single_vend[2] + market_id = single_vend[3] + all_vend_instances.push(self.new(id, name, employees_count, market_id)) + end + return all_vend_instances + end + +# - `self.find(id)` - returns an instance of Vendor where the value of the `id` field in the CSV matches the passed parameter. + def self.find_vendor(vend_id) + var = [] + self.all.find_all do |single_vend| + if single_vend.id == vend_id.to_s + var.push(single_vend) + return var + end + end + end + +# - `find_vend_things` - returns an array of all of the vendor item instances from a given class + def find_vend_things(vend_id, class_name) + case class_name + when "product" + item_array = FarMar::Product.all + when "sale" + item_array = FarMar::Sale.all + end + vendors_items = [] + item_array.find_all do |single_item| + if single_item.vendor_id == vend_id.to_s + vendors_items.push(single_item) + end + end + return vendors_items + end + +# - `market` - returns the `FarMar::Market` instance that is associated with this vendor using the `FarMar::Vendor` `market_id` field + def market(vend_id) + vend = FarMar::Vendor.find_vendor(vend_id) + market = FarMar::Market.find_market(vend[0].market_id) + return market + end + +# - `products` - returns a collection of `FarMar::Product` instances that are associated by the `FarMar::Product` `vendor_id` field. + def products(vend_id) + find_vend_things(vend_id, "product") + end + +# - `sales` - returns a collection of `FarMar::Sale` instances that are associated by the `vendor_id` field. + def sales(vend_id) + find_vend_things(vend_id, "sale") + end + +# - `revenue` - returns the the sum of all of the vendor's sales (in cents) + def revenue(vend_id) + total_sales = 0 + sales(vend_id).each do |money| + total_sales += money.amount.to_i end + return total_sales + end + +# # - `self.by_market(market_id)` - returns all of the vendors with the given `market_id` + def self.by_market(mkt_id) + var = [] + FarMar::Vendor.all.find_all do |seller| + if seller.market_id == mkt_id.to_s + var.push(seller) + end + end + return var + end + end end diff --git a/spec/far_mar/markets_spec.rb b/spec/far_mar/markets_spec.rb index 113d9d12..46c82125 100644 --- a/spec/far_mar/markets_spec.rb +++ b/spec/far_mar/markets_spec.rb @@ -2,11 +2,33 @@ require "./lib/far_mar/market_class.rb" describe FarMar::Market do + describe "initialize" - before :each do - @market_test = FarMar::Market.new - end it "creates a new instace of the market class" do + @market_test = FarMar::Market.new(0, "name", "1234 street", "city", "county", "state", 12345) expect(@market_test).to be_an_instance_of FarMar::Market end + + describe "self.all" + it "returns an array" do + expect(FarMar::Market.all).to be_an Array + end + it "returns all markets in the csv file" do + expect(FarMar::Market.all.count).to eq 500 + end + + describe "self.find" + it "returns the information for a given market ID" do + expect(FarMar::Market.find_market(303).zip).to eq "35804" + end + + describe "vendors" + it "returns a collection" do + @market_test = FarMar::Market.new("7", "Petaluma Evening Farmers' Market", "1 2nd Street", "Petaluma", "Sonoma", "California", "94952") + expect(@market_test.vendors).to be_an Array + end + it "returns all vendors for a given market id" do + @market_test = FarMar::Market.new("7", "Petaluma Evening Farmers' Market", "1 2nd Street", "Petaluma", "Sonoma", "California", "94952") + expect(@market_test.vendors.length).to eq 2 + end end diff --git a/spec/far_mar/products_spec.rb b/spec/far_mar/products_spec.rb index c8ce699f..6282f3a0 100644 --- a/spec/far_mar/products_spec.rb +++ b/spec/far_mar/products_spec.rb @@ -3,11 +3,51 @@ describe FarMar::Product do describe "initialize" - before :each do - @product_test = FarMar::Product.new - end - it "creates a new instace of the product class" do - expect(@product_test).to be_an_instance_of FarMar::Product - end + describe "initialize" + it "creates a new instace of the product class" do + @product_test = FarMar::Product.new(0, "name", 12345) + expect(@product_test).to be_an_instance_of FarMar::Product + end + + + describe "self.all" + it "returns an array" do + expect(FarMar::Product.all).to be_an Array + end + it "returns all markets in the csv file" do + expect(FarMar::Product.all.count).to eq 500 + end + + describe "self.find_product" + it "returns the information for a given product ID" do + expect(FarMar::Product.find_product(10)).to be_an_instance_of FarMar::Product + end + it "returns the instance for the given product ID" do + @product_test = FarMar::Product.find_product(10) + expect(@product_test.vendor_id).to eq "5" + end + + describe "vendor" + it "returns an instance of vendor" do + @product_test = FarMar::Product.new("24", "Fierce Beef", "10") + expect(@product_test.vendor(24)).to be_an_instance_of FarMar::Vendor + end + + describe "sale" + it "returns an instance of sale" do + @prod_test = FarMar::Product.new("4", "Yummy Fruit", "3") + expect(@prod_test.sales(4)[0]).to be_an_instance_of FarMar::Sale + end + + describe "number_of_sales" + it "returns the number of times the product has been sold" do + @prod_test = FarMar::Product.new("4", "Yummy Fruit", "3") + expect(@prod_test.number_of_sales(4)).to eq 8 + end + + describe "self.by_vendor(vendor_id)" + it "returns all of the products with the given id" do + expect(FarMar::Product.by_vendor(7).length).to eq 1 + end end diff --git a/spec/far_mar/sales_spec.rb b/spec/far_mar/sales_spec.rb index a0d84d12..bb85bf90 100644 --- a/spec/far_mar/sales_spec.rb +++ b/spec/far_mar/sales_spec.rb @@ -2,11 +2,47 @@ require "./lib/far_mar/sale_class.rb" describe FarMar::Sale do + describe "initialize" - before :each do - @sale_test = FarMar::Sale.new - end it "creates a new instace of the sale class" do + @sale_test = FarMar::Sale.new(4, 6789, "2013-11-12 12:00:35 -0800", 6, 12) expect(@sale_test).to be_an_instance_of FarMar::Sale end + + describe "self.all" + it "returns an array" do + expect(FarMar::Sale.all).to be_an Array + end + it "returns instances of all the sales described in the CSV" do + expect(FarMar::Sale.all.length).to eq 935 + end + + describe "self.find_sale" + it "returns the information for a given sale ID" do + expect(FarMar::Sale.find_sale(8).amount).to eq "5727" + end + + describe "vendor" + it "returns a vendor instance" do + expect(FarMar::Sale.find_sale(8).vendor).to be_an_instance_of FarMar::Vendor + end + it "gives the vendor associated with the sales instance" do + expect(FarMar::Sale.find_sale(8).vendor.id).to eq "2" + end + + describe "product" + it "returns a product instance" do + expect(FarMar::Sale.find_sale(8).product).to be_an_instance_of FarMar::Product + end + it "gives the product associated with the sales instance" do + expect(FarMar::Sale.find_sale(8).product.id).to eq "2" + end + + describe "self.between" + it "returns all of the sales that occured between the parameter times" do + @beginning_time = DateTime.strptime("2013-11-07 04:34:56 -0800", "%Y-%m-%d %H:%M:%S %z") + @end_time = DateTime.strptime("2013-11-10 01:51:24 -0800", "%Y-%m-%d %H:%M:%S %z") + expect(FarMar::Sale.between(@beginning_time, @end_time)).to be_an Array + expect(FarMar::Sale.between(@beginning_time, @end_time)[0].amount).to eq "9290" + end end diff --git a/spec/far_mar/vendors_spec.rb b/spec/far_mar/vendors_spec.rb index 509501c8..661e722f 100644 --- a/spec/far_mar/vendors_spec.rb +++ b/spec/far_mar/vendors_spec.rb @@ -2,11 +2,64 @@ require "./lib/far_mar/vendor_class.rb" describe FarMar::Vendor do - describe "initialize" - before :each do - @vendor_test = FarMar::Vendor.new - end + it "creates a new instace of the vendor class" do + @vendor_test = FarMar::Vendor.new(4, "name", 12, 21) expect(@vendor_test).to be_an_instance_of FarMar::Vendor end + + describe "self.all" + it "returns a collection" do + expect(FarMar::Vendor.all).to be_an Array + end + it "returns all of the vendors listed in the CSV file" do + expect(FarMar::Vendor.all.length).to eq 816 + end + + describe "self.find_vendor" + it "retuns an instace of Vendor class" do + expect(FarMar::Vendor.find_vendor(6)[0]).to be_an_instance_of FarMar::Vendor + end + it "returns the instance that matches the given id" do + @vend_test = FarMar::Vendor.find_vendor(6)[0] + expect(@vend_test.market_id).to eq "1" + end + + describe "market" + it "returns a market instance for the given vendor" do + @vend_test = FarMar::Vendor.new("9","Quigley, Breitenberg and Schuster","2","2") + expect(@vend_test.market(9)).to be_an_instance_of FarMar::Market + end + it "returns a market instance for the given vendor" do + @vend_test = FarMar::Vendor.new("9","Quigley, Breitenberg and Schuster","2","2") + expect(@vend_test.market(9).zip).to eq "98383" + end + + describe "products" + it "returns instances for the products of a given vendor" do + @vend_test = FarMar::Vendor.new("9","Quigley, Breitenberg and Schuster","2","2") + expect(@vend_test.products(9)[0]).to be_an_instance_of FarMar::Product + end + + describe "sales" + it "returns information for the sales associated with a given vendor" do + @vend_test = FarMar::Vendor.new(13,"Grady, Hudson and Olson",11,4) + expect(@vend_test.sales(13)[0]).to be_an_instance_of FarMar::Sale + end + + describe "revenue" + it "returns the total of all of a given vendor's sales" do + @vend_test = FarMar::Vendor.new(13,"Grady, Hudson and Olson",11,4) + expect(@vend_test.revenue(13)).to eq 2848 + end + + describe "self.by_market(market_id)" + it "gives an array" do + expect(FarMar::Vendor.by_market(13)).to be_an Array + end + it "gives all of the instances of vendor that attend a given market" do + first_instance = FarMar::Vendor.by_market(13)[0] + expect(first_instance.id).to eq "54" + end + end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index a5054a6b..b8684579 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -3,3 +3,23 @@ SimpleCov.start require "./lib/far_mar" + +RSpec.configure do |config| + config.order = 'random' +end + +RSpec.configure do |config| + config.after(:suite) do + num_failed = RSpec.world + .filtered_examples + .values + .flatten + .count(&:exception) + + if num_failed == 0 + `say "You did it Lauren! You're amazing!"` + else + `say "Keep going! Only #{num_failed} #{num_failed > 1 ? "tests" : "test"} to go!"` + end + end +end diff --git a/support/products.csv b/support/products.csv index 92794f1c..11c9c7f5 100644 --- a/support/products.csv +++ b/support/products.csv @@ -498,7696 +498,3 @@ 498,Cruel Fruit,158 499,Plain Chicken,159 500,Stale Carrots,159 -501,Selfish Bread,160 -502,Jolly Mushrooms,160 -503,Bright Burrito,160 -504,Fluffy Burrito,160 -505,Cruel Beets,160 -506,Scrumptious Mushrooms,161 -507,Sticky Honey,161 -508,Black Beef,161 -509,Obnoxious Mushrooms,161 -510,Worried Pretzel,161 -511,Many Fish,162 -512,Spicy Greens,162 -513,Nosy Burrito,162 -514,Incredible Carrots,162 -515,Rough Honey,163 -516,Helpless Carrots,163 -517,Blue Pretzel,163 -518,Slimy Fruit,163 -519,Black Burrito,163 -520,Afraid Fruit,164 -521,Breezy Apples,164 -522,Disgusted Burrito,164 -523,Fat Burrito,164 -524,Depressed Pretzel,164 -525,Sad Carrots,165 -526,– Honey,165 -527,Fine Beef,165 -528,Cuddly Fish,165 -529,Rainy Fish,165 -530,Tired Pretzel,166 -531,Tricky Mushrooms,166 -532,Flat Chicken,166 -533,Filthy Fruit,166 -534,Smooth Fish,167 -535,Greasy Apples,167 -536,Uneven Mushrooms,167 -537,Massive Carrots,167 -538,Boom-town Carrots,168 -539,Thoughtless Beets,169 -540,Dull Honey,170 -541,Obnoxious Greens,170 -542,Tired Apples,170 -543,Sharp Chicken,171 -544,Dull Pretzel,171 -545,Faint Beef,171 -546,Plain Beets,172 -547,Early Burrito,172 -548,Scrawny Burrito,172 -549,R Mushrooms,173 -550,Curved Greens,173 -551,Loud Fruit,173 -552,Sad Bread,173 -553,Sticky Burrito,174 -554,Homeless Honey,174 -555,Hot Chicken,174 -556,Tame Beets,175 -557,Kind Greens,175 -558,Tiny Chicken,176 -559,Early Burrito,176 -560,Fluffy Fish,176 -561,Blue Pretzel,176 -562,Rough Beef,177 -563,Brief Apples,177 -564,Mighty Bread,177 -565,Scrawny Beets,177 -566,Depressed Burrito,178 -567,Cuddly Pretzel,178 -568,Big Honey,178 -569,Jittery Carrots,178 -570,Hissing Apples,178 -571,Annoyed Fish,179 -572,Dry Fish,179 -573,Hissing Fish,179 -574,Pickled Greens,180 -575,Enthusiastic Fish,180 -576,Petite Beets,180 -577,Fat Apples,180 -578,Immense Carrots,181 -579,Massive Fruit,182 -580,Charming Pretzel,182 -581,Comfortable Apples,182 -582,Successful Beets,183 -583,Handsome Pretzel,183 -584,Shrill Fish,183 -585,Nom nom Apples,183 -586,Plastic Apples,183 -587,Tricky Apples,184 -588,Curly Fish,185 -589,Successful Beets,186 -590,Raspy Burrito,186 -591,Silky Chicken,187 -592,Tasteless Burrito,187 -593,Whispering Beef,187 -594,Broken Bread,187 -595,Friendly Greens,188 -596,Kickin' Greens,189 -597,Melted Greens,189 -598,Hissing Greens,189 -599,Bitter Pretzel,189 -600,Tart Beef,189 -601,Nervous Fish,190 -602,Numerous Pretzel,190 -603,Modern Carrots,191 -604,Upset Apples,191 -605,Calm Bread,191 -606,Terrible Beef,191 -607,Rare Burrito,192 -608,Shrill Beets,192 -609,Hushed Chicken,192 -610,Helpless Beef,192 -611,Swift Carrots,193 -612,Uneven Burrito,193 -613,Evil Burrito,193 -614,Breezy Fruit,193 -615,Arrogant Beets,193 -616,Quick Fish,194 -617,Frightened Greens,194 -618,Kind Bread,195 -619,Dusty Fish,195 -620,Panicky Apples,195 -621,Annoyed Greens,195 -622,Average Fish,195 -623,Breezy Apples,196 -624,Righteous Greens,196 -625,Narrow Apples,196 -626,Giant Beef,196 -627,Giant Beef,197 -628,Pleasant Bread,197 -629,Upset Carrots,197 -630,– Honey,198 -631,Frantic Beef,198 -632,Tall Pretzel,198 -633,Whispering Chicken,198 -634,Nasty Fruit,199 -635,Fuzzy Carrots,200 -636,Thundering Honey,200 -637,Creepy Beef,201 -638,Fluffy Beef,201 -639,Dangerous Mushrooms,202 -640,Tender Fruit,203 -641,Solid Chicken,203 -642,Breezy Apples,204 -643,Many Carrots,204 -644,Round Chicken,204 -645,Late Beets,204 -646,Massive Fish,205 -647,Disgusted Bread,206 -648,Vivacious Apples,206 -649,Naughty Carrots,206 -650,Grubby Fish,207 -651,Small Apples,207 -652,Nice Apples,207 -653,Deep Chicken,207 -654,Troubled Apples,208 -655,Miniature Beets,208 -656,Wooden Bread,208 -657,Shallow Fruit,208 -658,Tense Beets,208 -659,Melodic Chicken,209 -660,Late Beets,209 -661,Troubled Honey,209 -662,Slippery Burrito,209 -663,Mysterious Fruit,209 -664,Handsome Pretzel,210 -665,Flat Fruit,211 -666,Afraid Fish,211 -667,Shivering Apples,212 -668,Empty Greens,212 -669,Cool Mushrooms,212 -670,Foolish Beef,212 -671,Thundering Beef,213 -672,Juicy Carrots,214 -673,Friendly Beef,214 -674,Ugliest Fish,214 -675,Mammoth Pretzel,215 -676,Solid Greens,215 -677,Tame Apples,215 -678,Kind Chicken,216 -679,Steep Pretzel,216 -680,Lovely Burrito,216 -681,Repulsive Pretzel,216 -682,Victorious Pretzel,216 -683,Eager Fruit,217 -684,Purring Fish,218 -685,Testy Carrots,218 -686,Lovely Pretzel,218 -687,Young Fruit,218 -688,Sad Fruit,218 -689,Many Honey,219 -690,Frantic Fruit,219 -691,Anxious Mushrooms,220 -692,Smooth Chicken,220 -693,Silky Mushrooms,220 -694,Filthy Fish,220 -695,Giant Greens,221 -696,Arrogant Beets,221 -697,Tasteless Beef,221 -698,Stale Fruit,221 -699,Brief Carrots,221 -700,Scary Beets,222 -701,Dangerous Carrots,222 -702,Splendid Bread,222 -703,Strong Greens,222 -704,Round Fish,222 -705,Low Pretzel,223 -706,Wonderful Pretzel,223 -707,Lively Beef,224 -708,Fluffy Bread,224 -709,Witty Beets,224 -710,Tender Greens,225 -711,Rainy Bread,225 -712,Outrageous Chicken,225 -713,Thundering Burrito,225 -714,Nasty Bread,226 -715,Striped Pretzel,227 -716,Funny Honey,228 -717,Husky Honey,229 -718,Moaning Apples,229 -719,Thundering Fish,229 -720,Thirsty Burrito,229 -721,Enthusiastic Fruit,229 -722,Round Apples,230 -723,Fuzzy Greens,230 -724,Determined Fish,230 -725,Mammoth Greens,231 -726,Foolish Honey,231 -727,Faint Pretzel,231 -728,Enthusiastic Beef,231 -729,Dull Fruit,231 -730,Mighty Fish,232 -731,Ordinary Mushrooms,232 -732,Anxious Chicken,233 -733,Broken Apples,233 -734,Harsh Fish,233 -735,Horrible Beets,233 -736,Prickly Honey,233 -737,Shallow Greens,234 -738,Solid Beets,235 -739,Empty Honey,235 -740,Thoughtless Carrots,236 -741,Great Honey,237 -742,Agreeable Pretzel,237 -743,Greasy Honey,237 -744,Angry Greens,237 -745,Fluffy Chicken,237 -746,Narrow Carrots,238 -747,Prickly Beets,238 -748,Horrible Fish,238 -749,Husky Greens,238 -750,Rainy Pretzel,239 -751,Cool Burrito,240 -752,Eager Fruit,240 -753,Repulsive Fish,240 -754,Hilarious Beef,240 -755,Combative Pretzel,240 -756,Moaning Beef,241 -757,Heavy Bread,241 -758,Embarrassed Mushrooms,241 -759,Few Beets,241 -760,Uneven Burrito,241 -761,Repulsive Beef,242 -762,Anxious Greens,242 -763,Smooth Apples,242 -764,Deep Carrots,242 -765,Obnoxious Pretzel,242 -766,Low Fish,243 -767,Kickin' Honey,243 -768,Lively Carrots,243 -769,Hard Chicken,244 -770,Yellow Pretzel,244 -771,Happy Greens,244 -772,Tart Carrots,244 -773,Lucky Beets,245 -774,Grubby Pretzel,245 -775,S Bread,245 -776,Lonely Carrots,245 -777,Ugly Apples,246 -778,Grand Chicken,246 -779,Kickin' Beets,247 -780,Panicky Fruit,247 -781,Splendid Beef,247 -782,Greasy Fruit,247 -783,Frightened Chicken,248 -784,Greasy Carrots,248 -785,Blue Apples,248 -786,Great Carrots,248 -787,Grand Beef,249 -788,Cruel Mushrooms,249 -789,Screeching Apples,249 -790,Gentle Honey,250 -791,– Carrots,250 -792,Tasteless Fish,250 -793,Thoughtful Honey,250 -794,Green Bread,251 -795,Gorgeous Honey,251 -796,Tart Pretzel,251 -797,Prickly Carrots,251 -798,Melted Greens,252 -799,Resonant Fruit,252 -800,Lazy Fish,252 -801,Screeching Pretzel,253 -802,Hungry Greens,253 -803,Ripe Beets,254 -804,Lazy Beets,254 -805,Agreeable Fish,254 -806,R Burrito,254 -807,Purple Greens,255 -808,Fast Bread,256 -809,Square Beets,256 -810,Jolly Carrots,257 -811,Slow Honey,257 -812,Obnoxious Chicken,257 -813,Quickest Chicken,258 -814,Mysterious Apples,259 -815,Outrageous Apples,259 -816,Colossal Pretzel,259 -817,Helpful Chicken,260 -818,Curly Chicken,260 -819,Righteous Bread,261 -820,Hurt Bread,261 -821,Crazy Carrots,261 -822,Flat Pretzel,262 -823,Fuzzy Fish,262 -824,Disgusted Bread,262 -825,Eager Greens,262 -826,Plastic Bread,263 -827,Thirsty Fruit,263 -828,Anxious Beef,263 -829,Bright Honey,263 -830,Lucky Carrots,264 -831,Witty Fish,264 -832,Obnoxious Beets,264 -833,Young Apples,265 -834,Vivacious Mushrooms,265 -835,Square Apples,265 -836,Dizzy Pretzel,266 -837,Quiet Apples,267 -838,Foolish Pretzel,268 -839,Kickin' Mushrooms,268 -840,Straight Honey,268 -841,Disgusted Fruit,268 -842,Jittery Greens,268 -843,Harsh Mushrooms,269 -844,Wonderful Honey,269 -845,Plain Carrots,269 -846,Filthy Greens,269 -847,Weary Honey,270 -848,Lovely Beets,271 -849,Thoughtful Honey,271 -850,Young Greens,271 -851,Wasteful Chicken,271 -852,Sweet Beef,271 -853,High Burrito,272 -854,Friendly Carrots,273 -855,Tough Chicken,274 -856,Cool Beets,274 -857,Kickin' Burrito,274 -858,Shaky Carrots,274 -859,Massive Beef,274 -860,Dry Beef,275 -861,Selfish Beef,275 -862,Cooing Bread,275 -863,Rough Apples,275 -864,Spotty Greens,276 -865,Splendid Mushrooms,276 -866,Tame Honey,276 -867,Resonant Beef,276 -868,Nice Mushrooms,276 -869,Square Beef,277 -870,Greasy Pretzel,277 -871,Broad Pretzel,278 -872,Better Beef,279 -873,Confused Carrots,279 -874,Zany Burrito,279 -875,Quickest Chicken,279 -876,Cold Bread,279 -877,R Apples,280 -878,Short Mushrooms,280 -879,Blue Bread,280 -880,Hollow Greens,281 -881,Handsome Carrots,281 -882,Comfortable Pretzel,281 -883,Roasted Pretzel,281 -884,Lovely Beef,281 -885,Flaky Bread,282 -886,Outrageous Beef,282 -887,Victorious Mushrooms,283 -888,Lucky Fruit,283 -889,Fine Mushrooms,283 -890,Ugly Carrots,283 -891,Panicky Carrots,284 -892,Pickled Fruit,284 -893,S Apples,285 -894,Hot Beef,285 -895,Zany Apples,286 -896,Tricky Beets,286 -897,Handsome Apples,286 -898,Plastic Beef,286 -899,Boiling Burrito,286 -900,Defeated Honey,287 -901,Cheerful Greens,287 -902,– Bread,287 -903,Striped Burrito,287 -904,Selfish Fruit,288 -905,Few Greens,289 -906,Dirty Burrito,289 -907,Giant Apples,290 -908,Mammoth Fish,290 -909,Rainy Beef,290 -910,Yummy Greens,290 -911,Bumpy Pretzel,290 -912,Happy Apples,291 -913,Bland Beets,291 -914,Grubby Beef,292 -915,Puny Beef,293 -916,Naughty Burrito,293 -917,Brave Fish,293 -918,Nervous Beets,293 -919,Straight Carrots,294 -920,Thirsty Mushrooms,294 -921,Greasy Mushrooms,294 -922,Melodic Fruit,295 -923,Jumpin' Mushrooms,295 -924,Bland Greens,296 -925,Brave Fish,296 -926,Hard Carrots,296 -927,Victorious Apples,296 -928,Bland Bread,297 -929,Nom nom Greens,297 -930,Sad Mushrooms,297 -931,Testy Beef,298 -932,Obnoxious Mushrooms,298 -933,Incredible Beets,298 -934,Purple Bread,298 -935,Silky Apples,299 -936,Stale Carrots,299 -937,Comfortable Apples,299 -938,Black Pretzel,300 -939,Long Mushrooms,301 -940,Boring Burrito,301 -941,Thirsty Burrito,301 -942,Zany Pretzel,301 -943,Hurt Burrito,302 -944,Shallow Mushrooms,303 -945,Gentle Carrots,303 -946,Weak Mushrooms,303 -947,Stale Burrito,304 -948,Tender Mushrooms,304 -949,Mammoth Greens,304 -950,Squealing Chicken,305 -951,Agreeable Mushrooms,305 -952,Comfortable Fruit,306 -953,Grumpy Pretzel,306 -954,Shallow Pretzel,307 -955,Uneven Carrots,307 -956,Annoyed Fish,308 -957,Grubby Fish,308 -958,Nervous Beef,308 -959,Wooden Bread,308 -960,Lovely Mushrooms,309 -961,Lively Bread,310 -962,Ratty Beets,310 -963,Encouraging Fish,310 -964,Upset Honey,311 -965,Yellow Burrito,311 -966,Sticky Beets,312 -967,Amused Burrito,312 -968,R Chicken,312 -969,Plain Carrots,313 -970,Foolish Beets,313 -971,Spicy Honey,313 -972,Precious Apples,313 -973,Cruel Burrito,314 -974,Shivering Bread,314 -975,Many Beef,314 -976,Ugliest Beef,314 -977,Smiling Fish,315 -978,Curved Apples,315 -979,Pickled Greens,316 -980,Strange Honey,316 -981,Giant Mushrooms,316 -982,Moaning Burrito,317 -983,Arrogant Honey,317 -984,Eager Fish,318 -985,Edible Apples,318 -986,Hissing Bread,318 -987,Wide Pretzel,319 -988,Round Carrots,319 -989,Uneven Carrots,319 -990,Ripe Pretzel,319 -991,Sticky Apples,320 -992,Upset Honey,321 -993,Silent Apples,321 -994,Tender Fish,321 -995,Cooing Beets,321 -996,Silly Honey,322 -997,Zany Burrito,322 -998,Brave Beef,323 -999,Tense Greens,323 -1000,Cooperative Carrots,323 -1001,Numerous Greens,323 -1002,Ordinary Fish,324 -1003,Wonderful Bread,324 -1004,Stale Burrito,325 -1005,Weak Beets,325 -1006,Fantastic Fruit,325 -1007,Uneven Greens,325 -1008,Amused Burrito,325 -1009,Deafening Beets,326 -1010,Hot Chicken,326 -1011,Wicked Fruit,326 -1012,Splendid Beef,326 -1013,Greasy Honey,327 -1014,Cooing Mushrooms,327 -1015,Modern Beef,327 -1016,Jolly Carrots,327 -1017,Rough Carrots,327 -1018,Petite Carrots,328 -1019,Jolly Fruit,329 -1020,Bright Burrito,330 -1021,Average Burrito,330 -1022,Faithful Fruit,330 -1023,Rare Bread,331 -1024,Rare Chicken,332 -1025,Nervous Beef,332 -1026,Testy Honey,333 -1027,Hot Greens,333 -1028,Repulsive Mushrooms,333 -1029,Sharp Beets,333 -1030,Terrible Beets,333 -1031,Fine Mushrooms,334 -1032,Gigantic Bread,334 -1033,Annoyed Fish,334 -1034,Grieving Burrito,335 -1035,Wasteful Apples,335 -1036,Delightful Bread,336 -1037,Jittery Greens,336 -1038,Deafening Apples,336 -1039,Outrageous Carrots,337 -1040,M Fruit,337 -1041,Witty Pretzel,337 -1042,Healthy Pretzel,338 -1043,Ripe Beef,339 -1044,Tall Honey,340 -1045,Yummy Burrito,341 -1046,Moist Honey,341 -1047,Little Greens,341 -1048,Curved Bread,342 -1049,Tame Apples,343 -1050,R Beets,343 -1051,Purring Fruit,343 -1052,Good Pretzel,343 -1053,Small Honey,343 -1054,Grand Bread,344 -1055,Uptight Fish,344 -1056,Successful Carrots,344 -1057,Nervous Pretzel,344 -1058,Pleasant Bread,345 -1059,Fast Mushrooms,345 -1060,Square Greens,345 -1061,Naughty Chicken,345 -1062,Naughty Carrots,346 -1063,Dizzy Chicken,346 -1064,Fantastic Beets,347 -1065,Scattered Beets,347 -1066,Dizzy Carrots,347 -1067,Excited Burrito,348 -1068,Weak Beef,348 -1069,Itchy Carrots,348 -1070,New Carrots,348 -1071,Husky Mushrooms,349 -1072,Frantic Beets,349 -1073,Testy Mushrooms,350 -1074,Encouraging Honey,350 -1075,Roasted Bread,350 -1076,Clumsy Honey,350 -1077,Loud Pretzel,351 -1078,Stale Beef,351 -1079,– Chicken,351 -1080,Excited Apples,351 -1081,Thoughtful Greens,351 -1082,Average Mushrooms,352 -1083,Tasteless Pretzel,352 -1084,Tasteless Carrots,352 -1085,Slimy Pretzel,352 -1086,Fantastic Carrots,353 -1087,Steady Fruit,354 -1088,Tricky Pretzel,354 -1089,Sore Bread,354 -1090,Great Greens,354 -1091,Steep Bread,354 -1092,Delicious Greens,355 -1093,Stale Bread,355 -1094,Slimy Honey,355 -1095,Itchy Beef,356 -1096,Cheerful Carrots,356 -1097,Nasty Carrots,356 -1098,Resonant Carrots,357 -1099,Combative Beef,357 -1100,Grubby Bread,357 -1101,Grumpy Fish,358 -1102,Silent Apples,359 -1103,Gorgeous Carrots,359 -1104,Mute Honey,360 -1105,Squealing Fruit,360 -1106,Sad Beef,360 -1107,Soft Fruit,361 -1108,Bland Mushrooms,361 -1109,Angry Honey,361 -1110,Husky Honey,362 -1111,Tiny Fish,362 -1112,Shivering Apples,362 -1113,Little Bread,363 -1114,Large Mushrooms,363 -1115,Average Beef,364 -1116,Tasteless Honey,364 -1117,Obnoxious Burrito,364 -1118,Tired Beets,364 -1119,Rare Pretzel,364 -1120,Skinny Carrots,365 -1121,Dizzy Mushrooms,365 -1122,Gigantic Fish,365 -1123,Nasty Fish,366 -1124,Scrumptious Beef,366 -1125,Tricky Apples,366 -1126,Shaggy Chicken,366 -1127,Silly Apples,366 -1128,Quickest Burrito,367 -1129,Frantic Fruit,367 -1130,Little Apples,367 -1131,Magnificent Greens,367 -1132,Charming Fish,368 -1133,Kickin' Fruit,368 -1134,Numerous Chicken,368 -1135,Soft Beef,368 -1136,Defiant Honey,368 -1137,Scary Beets,369 -1138,Lively Mushrooms,369 -1139,Uptight Burrito,369 -1140,Amused Chicken,369 -1141,Ancient Apples,370 -1142,Tan Fruit,370 -1143,Huge Honey,370 -1144,Watery Greens,370 -1145,Hilarious Fish,371 -1146,Thirsty Fruit,371 -1147,Melted Apples,371 -1148,Upset Bread,371 -1149,Cold Bread,371 -1150,Screeching Bread,372 -1151,Orange Honey,372 -1152,Chilly Honey,372 -1153,Jolly Honey,372 -1154,Cooing Honey,373 -1155,Boom-town Chicken,373 -1156,Wet Chicken,373 -1157,Black Honey,373 -1158,Scary Burrito,373 -1159,Low Mushrooms,374 -1160,Lovely Honey,374 -1161,Zany Mushrooms,375 -1162,Young Fish,375 -1163,Low Bread,375 -1164,Tight Fish,375 -1165,Red Carrots,376 -1166,Fluffy Carrots,377 -1167,Confused Beef,377 -1168,Cold Beets,378 -1169,Silent Bread,379 -1170,Helpful Beets,379 -1171,Healthy Chicken,379 -1172,Fantastic Bread,379 -1173,Raspy Burrito,379 -1174,Moist Fish,380 -1175,Giant Apples,380 -1176,Whispering Chicken,380 -1177,Ugliest Beef,380 -1178,Determined Carrots,381 -1179,Perfect Chicken,381 -1180,Slow Carrots,381 -1181,Delightful Fish,381 -1182,Wasteful Pretzel,382 -1183,Excited Chicken,383 -1184,Savory Bread,383 -1185,Bland Greens,383 -1186,Strong Beef,383 -1187,Calm Burrito,384 -1188,Fierce Greens,384 -1189,Flat Bread,385 -1190,Bitter Beef,385 -1191,Swift Carrots,386 -1192,Hilarious Greens,386 -1193,Obedient Mushrooms,387 -1194,Nervous Beef,387 -1195,Terrible Fruit,388 -1196,Purple Burrito,388 -1197,Prickly Pretzel,389 -1198,– Apples,390 -1199,Straight Chicken,390 -1200,Embarrassed Beef,390 -1201,Swift Fish,390 -1202,Panicky Apples,390 -1203,Ratty Fish,391 -1204,Shaggy Fruit,391 -1205,Dirty Chicken,392 -1206,Pretty Fish,392 -1207,Repulsive Fish,393 -1208,Great Honey,393 -1209,New Beets,393 -1210,Moaning Bread,393 -1211,Green Beef,393 -1212,Fantastic Fruit,394 -1213,Sticky Beef,394 -1214,Stale Greens,394 -1215,Charming Beets,395 -1216,Silky Bread,395 -1217,Red Fruit,395 -1218,Quaint Fruit,396 -1219,Envious Burrito,397 -1220,Purring Carrots,397 -1221,Energetic Fruit,398 -1222,Shrill Mushrooms,398 -1223,Comfortable Mushrooms,398 -1224,Nasty Mushrooms,398 -1225,Roasted Honey,399 -1226,Early Chicken,399 -1227,Faint Burrito,399 -1228,Wooden Fish,399 -1229,Grumpy Bread,400 -1230,Handsome Greens,400 -1231,Wide Bread,400 -1232,Energetic Carrots,400 -1233,Slippery Honey,400 -1234,Ugliest Pretzel,401 -1235,Little Carrots,401 -1236,Slow Chicken,402 -1237,Frantic Bread,403 -1238,Swift Greens,403 -1239,Deafening Greens,404 -1240,Bright Beets,404 -1241,Evil Mushrooms,404 -1242,Fluffy Mushrooms,405 -1243,Tasty Burrito,405 -1244,New Carrots,405 -1245,Determined Chicken,405 -1246,Dizzy Beef,405 -1247,Crazy Fish,406 -1248,Cold Beets,406 -1249,Proud Apples,406 -1250,Ill Apples,407 -1251,Fat Beef,407 -1252,Rainy Carrots,407 -1253,Embarrassed Fish,408 -1254,Shaggy Mushrooms,409 -1255,– Burrito,410 -1256,Salty Honey,410 -1257,Squealing Bread,410 -1258,Raspy Carrots,411 -1259,Eager Mushrooms,411 -1260,Shaky Bread,411 -1261,Witty Apples,412 -1262,Slimy Apples,413 -1263,Hushed Greens,413 -1264,R Greens,414 -1265,Nervous Mushrooms,414 -1266,Frail Beef,415 -1267,Naughty Mushrooms,416 -1268,Hot Pretzel,416 -1269,Chilly Bread,416 -1270,Colossal Apples,417 -1271,Filthy Fish,417 -1272,Red Carrots,417 -1273,Gorgeous Mushrooms,417 -1274,Frightened Fruit,418 -1275,Successful Fish,418 -1276,Young Carrots,419 -1277,Shivering Fish,419 -1278,Boring Beef,419 -1279,Filthy Pretzel,420 -1280,Weary Beets,421 -1281,Tender Apples,421 -1282,Wicked Beets,421 -1283,Squealing Bread,421 -1284,Silky Chicken,421 -1285,Loud Pretzel,422 -1286,Melodic Mushrooms,422 -1287,Helpless Burrito,422 -1288,Weak Mushrooms,422 -1289,Yummy Beef,422 -1290,Modern Chicken,423 -1291,Gigantic Greens,423 -1292,Comfortable Carrots,423 -1293,Stupendous Burrito,423 -1294,Voiceless Honey,424 -1295,Breezy Apples,424 -1296,Salty Honey,424 -1297,Scattered Carrots,424 -1298,Kickin' Honey,425 -1299,Shallow Pretzel,425 -1300,Round Greens,425 -1301,Scrawny Fruit,425 -1302,Wonderful Fish,425 -1303,Agreeable Greens,426 -1304,Happy Fish,426 -1305,Hot Beef,427 -1306,Mute Carrots,427 -1307,Steep Fish,427 -1308,Shaggy Carrots,428 -1309,Jolly Honey,429 -1310,Jumpin' Apples,429 -1311,Tall Honey,429 -1312,Slimy Bread,430 -1313,Cooing Greens,430 -1314,Enthusiastic Beef,431 -1315,Yellow Bread,431 -1316,Disturbed Mushrooms,431 -1317,Slimy Bread,431 -1318,Sweet Pretzel,431 -1319,Melodic Fish,432 -1320,Few Mushrooms,433 -1321,Pickled Mushrooms,433 -1322,Embarrassed Fish,433 -1323,Shivering Fish,433 -1324,Scrumptious Bread,433 -1325,Miniature Fish,434 -1326,Agreeable Fruit,434 -1327,Broken Chicken,434 -1328,Combative Fruit,434 -1329,Plastic Fruit,434 -1330,Hushed Apples,435 -1331,Fuzzy Chicken,436 -1332,Dull Apples,436 -1333,Puny Mushrooms,436 -1334,Gorgeous Bread,436 -1335,Jumpin' Apples,436 -1336,Slippery Fish,437 -1337,Eager Carrots,437 -1338,Red Pretzel,437 -1339,Handsome Beef,438 -1340,Tough Mushrooms,438 -1341,Dangerous Apples,439 -1342,Orange Chicken,439 -1343,Cold Honey,439 -1344,Boring Fish,439 -1345,Selfish Apples,440 -1346,High Mushrooms,440 -1347,Victorious Mushrooms,440 -1348,Gorgeous Fish,441 -1349,Shallow Honey,441 -1350,Grubby Chicken,442 -1351,Fast Apples,442 -1352,Large Honey,442 -1353,Arrogant Chicken,442 -1354,Mighty Mushrooms,442 -1355,Heavy Chicken,443 -1356,Sad Greens,443 -1357,Mute Beef,443 -1358,Dusty Burrito,443 -1359,Steady Beef,444 -1360,Giant Honey,444 -1361,Wide Pretzel,444 -1362,Cheesy Beets,445 -1363,Ugliest Honey,445 -1364,Perfect Carrots,445 -1365,Red Chicken,446 -1366,Repulsive Fruit,446 -1367,Scary Fish,446 -1368,Flaky Burrito,446 -1369,Fluffy Honey,447 -1370,Stale Apples,447 -1371,Ugly Beets,447 -1372,Zany Burrito,447 -1373,Wooden Beef,447 -1374,Broken Carrots,448 -1375,Roasted Fruit,448 -1376,Worried Honey,448 -1377,Excited Greens,448 -1378,Old Beef,449 -1379,Wide Mushrooms,449 -1380,Puny Beef,449 -1381,Roasted Beef,449 -1382,Grand Fish,450 -1383,Broken Burrito,450 -1384,Scary Mushrooms,450 -1385,Plain Apples,450 -1386,Purring Burrito,450 -1387,Jumpin' Burrito,451 -1388,Faint Beets,451 -1389,Whispering Pretzel,451 -1390,Defiant Apples,451 -1391,Grieving Apples,452 -1392,Black Carrots,452 -1393,Delicious Chicken,452 -1394,Mysterious Fish,453 -1395,Scrumptious Burrito,453 -1396,Delicious Beets,453 -1397,Lively Honey,454 -1398,Friendly Carrots,454 -1399,Dangerous Honey,455 -1400,Tiny Pretzel,455 -1401,Mammoth Pretzel,455 -1402,R Honey,455 -1403,Skinny Apples,455 -1404,Cooing Honey,456 -1405,Broken Fruit,456 -1406,Nom nom Burrito,456 -1407,Salty Mushrooms,456 -1408,Huge Beef,457 -1409,Slimy Fish,457 -1410,Immense Fish,457 -1411,Nasty Mushrooms,457 -1412,Thoughtful Beef,458 -1413,Sticky Fruit,458 -1414,Quiet Beets,458 -1415,Scary Fruit,459 -1416,Naughty Carrots,459 -1417,Scary Beef,459 -1418,Anxious Fish,460 -1419,Cheesy Pretzel,461 -1420,Shivering Bread,461 -1421,Light Carrots,461 -1422,Fierce Bread,461 -1423,Awful Greens,461 -1424,Puny Beets,462 -1425,Sweet Pretzel,462 -1426,Tender Fish,462 -1427,Greasy Chicken,463 -1428,Repulsive Carrots,463 -1429,Ancient Greens,463 -1430,Nom nom Fish,464 -1431,Awful Pretzel,464 -1432,Dusty Burrito,464 -1433,Purring Apples,465 -1434,Friendly Chicken,465 -1435,Cuddly Apples,465 -1436,Embarrassed Apples,465 -1437,Long Chicken,465 -1438,Faint Fruit,466 -1439,Witty Honey,466 -1440,Defeated Honey,466 -1441,Fierce Beef,466 -1442,Ancient Bread,467 -1443,Orange Apples,467 -1444,Dizzy Honey,468 -1445,Delicious Bread,468 -1446,Weak Fish,468 -1447,Fluffy Honey,468 -1448,Hot Pretzel,468 -1449,M Honey,469 -1450,Wonderful Mushrooms,469 -1451,Cool Beef,469 -1452,Hungry Chicken,470 -1453,Old Beets,470 -1454,Tired Fruit,470 -1455,Steady Honey,471 -1456,Sad Mushrooms,471 -1457,Tough Beets,471 -1458,Tense Greens,471 -1459,Obnoxious Fruit,471 -1460,Yummy Fish,472 -1461,Grubby Greens,473 -1462,Testy Beef,473 -1463,Green Carrots,473 -1464,Defeated Mushrooms,473 -1465,Proud Burrito,474 -1466,Scattered Pretzel,474 -1467,Sore Beets,474 -1468,Vast Fish,474 -1469,Courageous Beef,474 -1470,Eager Fish,475 -1471,Good Beets,475 -1472,Ordinary Beef,476 -1473,Evil Fish,476 -1474,Weak Beets,476 -1475,Tart Greens,476 -1476,Tall Mushrooms,477 -1477,Fuzzy Carrots,477 -1478,Tight Beef,478 -1479,Immense Greens,478 -1480,Rough Beef,478 -1481,Long Honey,478 -1482,Spicy Apples,478 -1483,Hungry Greens,479 -1484,Scrumptious Beef,479 -1485,Sad Apples,480 -1486,Ordinary Mushrooms,480 -1487,Stingy Beef,481 -1488,Average Greens,481 -1489,Scrumptious Fruit,481 -1490,Heavy Greens,481 -1491,Tough Greens,481 -1492,Thoughtless Carrots,482 -1493,Yellow Mushrooms,482 -1494,Rough Greens,482 -1495,Embarrassed Chicken,482 -1496,Uneven Honey,482 -1497,Lazy Fruit,483 -1498,Flaky Mushrooms,484 -1499,Frantic Carrots,484 -1500,Immense Beets,484 -1501,Eager Carrots,484 -1502,Sweet Apples,485 -1503,Wet Chicken,485 -1504,Watery Beets,485 -1505,Cheerful Fish,485 -1506,Fantastic Fruit,485 -1507,Energetic Fruit,486 -1508,R Fish,486 -1509,Hungry Bread,487 -1510,Deafening Apples,487 -1511,Gigantic Bread,487 -1512,Mysterious Pretzel,487 -1513,Cool Beef,487 -1514,Rough Mushrooms,488 -1515,Tart Honey,488 -1516,Low Beets,488 -1517,Lucky Fruit,488 -1518,Panicky Beef,488 -1519,Beautiful Beets,489 -1520,Shivering Beef,489 -1521,Relieved Beef,489 -1522,Swift Mushrooms,490 -1523,Robust Chicken,490 -1524,Bland Bread,490 -1525,Uneven Fish,490 -1526,Weak Greens,491 -1527,Hard Chicken,491 -1528,Naughty Greens,491 -1529,Tense Apples,491 -1530,Melodic Honey,492 -1531,Disgusted Beets,493 -1532,Hurt Fish,493 -1533,Prickly Chicken,493 -1534,Charming Beef,493 -1535,Stingy Bread,493 -1536,Tender Greens,494 -1537,Splendid Beef,494 -1538,Tall Beef,494 -1539,Handsome Greens,495 -1540,Few Apples,496 -1541,Ordinary Greens,496 -1542,Screeching Beef,496 -1543,Grumpy Beef,497 -1544,Sweet Fruit,498 -1545,Determined Carrots,499 -1546,Boiling Fish,499 -1547,Greasy Beef,499 -1548,Clumsy Burrito,499 -1549,Pretty Chicken,500 -1550,Shaggy Greens,501 -1551,Lucky Burrito,501 -1552,Huge Honey,502 -1553,Tricky Fish,502 -1554,Grubby Honey,503 -1555,Melted Apples,503 -1556,Sticky Bread,503 -1557,Mute Honey,503 -1558,Nosy Honey,504 -1559,Greasy Beef,504 -1560,Magnificent Mushrooms,504 -1561,Broad Fish,504 -1562,Mute Beef,504 -1563,Screeching Beef,505 -1564,Deep Greens,505 -1565,Disturbed Greens,506 -1566,Edible Chicken,506 -1567,Gigantic Honey,506 -1568,Cheesy Beef,506 -1569,Bright Mushrooms,506 -1570,Yummy Bread,507 -1571,Beautiful Greens,508 -1572,Hissing Greens,509 -1573,Splendid Beets,509 -1574,Great Chicken,509 -1575,Wasteful Chicken,510 -1576,Arrogant Chicken,511 -1577,Sweet Beets,512 -1578,Energetic Greens,512 -1579,Courageous Mushrooms,512 -1580,Kickin' Beets,512 -1581,Awful Burrito,512 -1582,Hissing Apples,513 -1583,Tasteless Carrots,514 -1584,Precious Fish,514 -1585,Silly Apples,515 -1586,Splendid Honey,516 -1587,Troubled Chicken,516 -1588,Lucky Beets,516 -1589,Salty Chicken,517 -1590,Great Honey,517 -1591,Cold Fish,518 -1592,Tart Carrots,518 -1593,Tough Carrots,519 -1594,Arrogant Fish,520 -1595,Clumsy Greens,520 -1596,Hot Honey,520 -1597,Sour Apples,521 -1598,Late Carrots,521 -1599,Sour Carrots,521 -1600,Tough Chicken,521 -1601,Disturbed Beef,522 -1602,Good Chicken,523 -1603,Itchy Chicken,523 -1604,Moaning Honey,524 -1605,Skinny Beef,524 -1606,Kickin' Beets,524 -1607,Fluffy Beets,524 -1608,Savory Pretzel,524 -1609,Dizzy Carrots,525 -1610,Smooth Greens,525 -1611,Big Chicken,525 -1612,Dirty Bread,526 -1613,Strange Beets,526 -1614,Smiling Carrots,527 -1615,Grubby Apples,528 -1616,Tight Chicken,528 -1617,Loose Honey,528 -1618,Cheerful Honey,528 -1619,Tight Carrots,528 -1620,Robust Greens,529 -1621,Fuzzy Beets,529 -1622,Defeated Chicken,529 -1623,Flaky Burrito,529 -1624,Chilly Mushrooms,529 -1625,Salty Fruit,530 -1626,Great Apples,530 -1627,Cold Greens,530 -1628,Angry Carrots,530 -1629,Rainy Apples,530 -1630,Zany Bread,531 -1631,Thoughtful Apples,531 -1632,Miniature Fruit,531 -1633,Strange Mushrooms,531 -1634,Breezy Pretzel,532 -1635,Crazy Carrots,532 -1636,Young Apples,532 -1637,Troubled Fruit,532 -1638,Shaky Greens,533 -1639,Shaggy Mushrooms,533 -1640,Lucky Chicken,533 -1641,Friendly Beets,533 -1642,Dull Bread,534 -1643,Fuzzy Beef,534 -1644,Uneven Carrots,534 -1645,Plain Carrots,534 -1646,Mysterious Fruit,535 -1647,Wide-eyed Honey,535 -1648,Numerous Apples,536 -1649,Dull Beets,536 -1650,Weak Burrito,536 -1651,Arrogant Burrito,537 -1652,Hot Carrots,537 -1653,Husky Beef,537 -1654,Hard Bread,537 -1655,Dry Pretzel,537 -1656,Weak Pretzel,538 -1657,Righteous Mushrooms,538 -1658,Beautiful Chicken,538 -1659,Broken Chicken,539 -1660,Ill Apples,539 -1661,Massive Honey,539 -1662,Salty Chicken,539 -1663,Hot Burrito,540 -1664,Loose Carrots,541 -1665,Thundering Greens,542 -1666,Rough Burrito,542 -1667,Cheerful Pretzel,543 -1668,Numerous Fish,543 -1669,Square Beets,544 -1670,Fair Beets,544 -1671,Greasy Apples,544 -1672,Robust Apples,544 -1673,Sharp Fruit,545 -1674,Ugliest Honey,546 -1675,Massive Beef,546 -1676,Steady Mushrooms,546 -1677,Salty Pretzel,546 -1678,Nervous Bread,546 -1679,Tasty Chicken,547 -1680,Tired Greens,547 -1681,Tender Beets,548 -1682,Great Beets,548 -1683,Whispering Chicken,549 -1684,Boiling Beef,549 -1685,Fierce Mushrooms,549 -1686,New Chicken,549 -1687,Horrible Pretzel,549 -1688,Fine Mushrooms,550 -1689,Nutty Pretzel,551 -1690,Tight Greens,551 -1691,Early Carrots,551 -1692,Fluffy Bread,552 -1693,Slippery Beef,553 -1694,Gorgeous Beef,553 -1695,Defeated Fruit,554 -1696,Jolly Burrito,555 -1697,Fluffy Burrito,555 -1698,Cold Burrito,555 -1699,Upset Carrots,555 -1700,Black Carrots,555 -1701,Quiet Fish,556 -1702,Grand Beef,556 -1703,Sad Beets,556 -1704,Better Beets,556 -1705,Silent Carrots,556 -1706,Blue Honey,557 -1707,Crazy Honey,558 -1708,Fantastic Fruit,558 -1709,Flaky Beef,559 -1710,Beautiful Greens,559 -1711,Colossal Fish,559 -1712,Tiny Fish,560 -1713,Repulsive Greens,561 -1714,Mighty Carrots,562 -1715,Beautiful Pretzel,562 -1716,Cold Apples,562 -1717,Late Mushrooms,562 -1718,Disgusted Mushrooms,563 -1719,Nervous Chicken,563 -1720,Watery Fish,564 -1721,Incredible Fish,564 -1722,Jealous Bread,565 -1723,Uneven Bread,565 -1724,Defiant Honey,565 -1725,Panicky Mushrooms,566 -1726,Great Beef,567 -1727,Square Beef,568 -1728,Straight Beets,569 -1729,Ill Burrito,570 -1730,Weak Pretzel,570 -1731,Boring Fish,571 -1732,Wide Beets,571 -1733,Broken Mushrooms,571 -1734,Dull Mushrooms,571 -1735,Yummy Chicken,572 -1736,Jolly Greens,572 -1737,Wicked Beef,573 -1738,Moist Honey,573 -1739,Sour Chicken,573 -1740,Cold Bread,573 -1741,Worried Greens,574 -1742,R Beets,574 -1743,Mysterious Greens,575 -1744,Short Carrots,575 -1745,Outrageous Carrots,575 -1746,Sore Mushrooms,575 -1747,Floppy Beef,576 -1748,Great Carrots,576 -1749,Petite Carrots,577 -1750,Gentle Pretzel,577 -1751,Hollow Chicken,577 -1752,Wet Mushrooms,577 -1753,Cheesy Apples,578 -1754,Damp Greens,578 -1755,Cuddly Fish,579 -1756,Excited Fish,579 -1757,Naughty Burrito,580 -1758,Shallow Burrito,580 -1759,Handsome Burrito,580 -1760,Tough Fruit,580 -1761,Orange Greens,581 -1762,Steady Pretzel,581 -1763,Tired Beef,582 -1764,Nutty Beef,583 -1765,Jittery Burrito,583 -1766,Nervous Bread,583 -1767,Ugliest Carrots,584 -1768,Comfortable Mushrooms,584 -1769,Quaint Burrito,584 -1770,Funny Beets,585 -1771,Cuddly Bread,585 -1772,Evil Honey,585 -1773,Modern Burrito,585 -1774,Kickin' Burrito,585 -1775,Selfish Apples,586 -1776,Odd Mushrooms,586 -1777,Disgusted Fish,586 -1778,Massive Pretzel,586 -1779,Frantic Carrots,586 -1780,Shivering Burrito,587 -1781,Smooth Beets,588 -1782,Evil Pretzel,588 -1783,Sticky Carrots,588 -1784,Relieved Pretzel,588 -1785,Slippery Mushrooms,589 -1786,Exuberant Fish,590 -1787,Nutty Greens,590 -1788,Excited Burrito,590 -1789,Solid Pretzel,591 -1790,Plain Fish,591 -1791,Edible Carrots,591 -1792,Kind Pretzel,591 -1793,Broken Mushrooms,592 -1794,Shaky Burrito,592 -1795,Lazy Honey,592 -1796,Dull Fish,592 -1797,Tiny Burrito,592 -1798,Mammoth Beef,593 -1799,Envious Burrito,593 -1800,Small Apples,593 -1801,Nasty Pretzel,593 -1802,Filthy Beef,593 -1803,Kind Chicken,594 -1804,Happy Pretzel,594 -1805,Defiant Beef,594 -1806,Whispering Burrito,595 -1807,Roasted Mushrooms,595 -1808,Nervous Beets,595 -1809,Quiet Pretzel,595 -1810,Boring Honey,595 -1811,Lively Honey,596 -1812,Huge Apples,596 -1813,Narrow Chicken,596 -1814,Tight Burrito,597 -1815,Hissing Fish,597 -1816,Sad Beef,597 -1817,Hollow Honey,597 -1818,Terrible Chicken,597 -1819,Anxious Pretzel,598 -1820,Strange Chicken,598 -1821,Arrogant Fish,598 -1822,Boring Pretzel,599 -1823,Outrageous Greens,599 -1824,Selfish Greens,600 -1825,Troubled Apples,600 -1826,Mysterious Fruit,600 -1827,Thoughtless Honey,601 -1828,Witty Apples,601 -1829,Fluffy Apples,601 -1830,Dizzy Mushrooms,602 -1831,Anxious Bread,602 -1832,Stale Fruit,603 -1833,Troubled Bread,603 -1834,Hurt Burrito,603 -1835,Fluffy Carrots,603 -1836,Tame Mushrooms,603 -1837,Exuberant Greens,604 -1838,Fantastic Honey,605 -1839,Better Burrito,605 -1840,Hissing Chicken,606 -1841,Red Apples,606 -1842,Troubled Fish,606 -1843,Prickly Apples,606 -1844,Amused Beets,607 -1845,R Chicken,608 -1846,Itchy Chicken,608 -1847,Frightened Beef,608 -1848,Ancient Greens,609 -1849,Testy Burrito,609 -1850,Odd Beef,610 -1851,Squealing Beef,610 -1852,Defeated Fruit,611 -1853,Bumpy Honey,612 -1854,Boring Pretzel,612 -1855,Mute Pretzel,612 -1856,Naughty Beets,613 -1857,Tasteless Carrots,613 -1858,Cuddly Bread,614 -1859,Repulsive Greens,614 -1860,Dull Carrots,614 -1861,Slimy Chicken,614 -1862,Fat Beef,614 -1863,Itchy Burrito,615 -1864,– Apples,616 -1865,Flat Apples,616 -1866,Greasy Fruit,616 -1867,Cooing Carrots,616 -1868,Shaky Greens,617 -1869,Tart Honey,617 -1870,Itchy Greens,617 -1871,Moaning Beets,617 -1872,Ancient Fish,618 -1873,Petite Mushrooms,618 -1874,Ripe Fruit,618 -1875,Bland Carrots,619 -1876,Fuzzy Apples,619 -1877,Scrawny Carrots,619 -1878,Faithful Apples,619 -1879,Roasted Fish,620 -1880,Dangerous Apples,621 -1881,Scrawny Beef,621 -1882,Happy Carrots,621 -1883,Thoughtless Apples,622 -1884,Elated Beets,622 -1885,Deep Greens,623 -1886,Awful Apples,623 -1887,Loud Fish,624 -1888,Healthy Burrito,625 -1889,Clumsy Burrito,626 -1890,Petite Mushrooms,627 -1891,Dangerous Fish,627 -1892,Elated Beets,627 -1893,Tart Beef,627 -1894,Moist Fruit,628 -1895,Weak Pretzel,628 -1896,Angry Beef,628 -1897,Obedient Apples,629 -1898,Happy Mushrooms,629 -1899,Scary Fish,629 -1900,Scattered Mushrooms,629 -1901,Homeless Chicken,630 -1902,Vivacious Burrito,630 -1903,Dull Chicken,630 -1904,Plastic Pretzel,631 -1905,Smooth Bread,631 -1906,Melodic Fruit,632 -1907,Spicy Carrots,632 -1908,Prickly Fish,633 -1909,Sharp Apples,633 -1910,Soft Fish,633 -1911,Testy Mushrooms,633 -1912,Healthy Bread,634 -1913,Embarrassed Beets,634 -1914,Dirty Beef,634 -1915,Melted Pretzel,634 -1916,Combative Fruit,634 -1917,Dusty Pretzel,635 -1918,Lucky Beets,635 -1919,Sore Beef,635 -1920,Fat Pretzel,635 -1921,Vivacious Fish,635 -1922,Silent Fish,636 -1923,Silky Pretzel,636 -1924,Terrible Chicken,636 -1925,Ashamed Burrito,636 -1926,Cheerful Bread,637 -1927,Precious Carrots,637 -1928,Cruel Greens,637 -1929,Broken Carrots,638 -1930,Flaky Fruit,638 -1931,Boiling Fruit,638 -1932,Itchy Mushrooms,638 -1933,Clumsy Greens,639 -1934,Floppy Fruit,639 -1935,Large Greens,639 -1936,Wicked Chicken,639 -1937,Cooing Beef,640 -1938,Energetic Apples,640 -1939,Whispering Beets,640 -1940,Itchy Mushrooms,640 -1941,Wide Carrots,641 -1942,Envious Carrots,642 -1943,R Beets,642 -1944,Melted Carrots,642 -1945,Strong Beef,642 -1946,Whispering Greens,643 -1947,Moaning Beef,643 -1948,Prickly Bread,643 -1949,Kickin' Beets,644 -1950,Kind Apples,644 -1951,Narrow Chicken,644 -1952,Odd Greens,644 -1953,Rare Pretzel,645 -1954,Jealous Beef,645 -1955,High Chicken,645 -1956,Wasteful Beef,645 -1957,Thirsty Bread,646 -1958,Sour Chicken,646 -1959,Witty Burrito,646 -1960,Salty Burrito,647 -1961,Faint Mushrooms,647 -1962,Pretty Burrito,647 -1963,Slimy Apples,648 -1964,Moaning Carrots,648 -1965,Curved Fruit,648 -1966,Striped Honey,649 -1967,Late Pretzel,649 -1968,Gigantic Greens,650 -1969,Boring Pretzel,650 -1970,Wasteful Honey,650 -1971,Obnoxious Carrots,651 -1972,Loose Beets,651 -1973,Cruel Beef,651 -1974,Moist Greens,652 -1975,Wasteful Beets,652 -1976,Bad Carrots,653 -1977,Filthy Carrots,653 -1978,Curly Fruit,653 -1979,Sweet Fish,653 -1980,Watery Beef,653 -1981,Silky Pretzel,654 -1982,Relieved Carrots,654 -1983,Late Burrito,654 -1984,Giant Bread,654 -1985,Happy Pretzel,655 -1986,Rotten Fish,655 -1987,Anxious Mushrooms,655 -1988,Mute Beets,656 -1989,Tasteless Apples,656 -1990,Rough Fruit,657 -1991,Eager Chicken,658 -1992,Raspy Carrots,658 -1993,Voiceless Fish,658 -1994,Broken Beets,658 -1995,Courageous Pretzel,659 -1996,Tame Carrots,660 -1997,Modern Mushrooms,660 -1998,Salty Beets,661 -1999,Melodic Chicken,662 -2000,Gentle Fish,662 -2001,Incredible Carrots,662 -2002,Long Carrots,662 -2003,Light Greens,662 -2004,Moaning Apples,663 -2005,Small Apples,663 -2006,Puny Bread,664 -2007,Bad Pretzel,664 -2008,Blue Fish,664 -2009,Kickin' Chicken,664 -2010,Many Apples,664 -2011,Spicy Beef,665 -2012,Sharp Fruit,666 -2013,Victorious Beets,666 -2014,Defiant Mushrooms,666 -2015,Empty Apples,666 -2016,Red Greens,666 -2017,Mammoth Carrots,667 -2018,Jumpin' Bread,668 -2019,Red Beef,668 -2020,Ancient Fish,668 -2021,Homeless Bread,669 -2022,Swift Pretzel,669 -2023,Spotty Chicken,669 -2024,Flat Fruit,669 -2025,Smooth Greens,669 -2026,Charming Pretzel,670 -2027,New Bread,671 -2028,Sweet Fruit,671 -2029,Nice Carrots,671 -2030,Flaky Carrots,671 -2031,Juicy Carrots,672 -2032,Kind Honey,672 -2033,Kickin' Chicken,673 -2034,Foolish Fish,673 -2035,Tense Fruit,673 -2036,Broad Greens,673 -2037,Mute Fruit,674 -2038,Broken Greens,675 -2039,Grumpy Mushrooms,675 -2040,Cheerful Mushrooms,675 -2041,Scary Apples,676 -2042,Prickly Carrots,676 -2043,Sad Burrito,676 -2044,Relieved Fruit,676 -2045,Blue Beets,677 -2046,Nom nom Burrito,677 -2047,Tall Bread,677 -2048,Large Chicken,678 -2049,R Pretzel,678 -2050,Elated Mushrooms,678 -2051,Immense Burrito,678 -2052,Sore Fruit,679 -2053,Frightened Greens,679 -2054,Fine Beef,679 -2055,Energetic Mushrooms,679 -2056,Flaky Beef,679 -2057,Rough Beef,680 -2058,Thundering Pretzel,680 -2059,Awful Pretzel,681 -2060,Sticky Pretzel,682 -2061,Rapid Bread,683 -2062,Big Mushrooms,683 -2063,Ordinary Fish,683 -2064,Greasy Burrito,684 -2065,Breezy Mushrooms,684 -2066,Slippery Bread,684 -2067,Tense Greens,684 -2068,Boring Greens,684 -2069,Blue Pretzel,685 -2070,Frightened Beets,685 -2071,Purring Beef,685 -2072,Jumpin' Chicken,686 -2073,Faithful Fish,686 -2074,Shaky Chicken,686 -2075,Relieved Greens,687 -2076,Sharp Fruit,687 -2077,Grieving Beets,687 -2078,Nom nom Mushrooms,687 -2079,Melodic Fruit,687 -2080,Melodic Chicken,688 -2081,Selfish Mushrooms,688 -2082,Boom-town Bread,688 -2083,Floppy Mushrooms,688 -2084,Hurt Bread,689 -2085,Wicked Beef,689 -2086,Black Fish,689 -2087,Elated Fruit,689 -2088,Envious Bread,690 -2089,Silent Greens,690 -2090,Terrible Mushrooms,691 -2091,Proud Apples,691 -2092,Robust Chicken,691 -2093,Itchy Beets,691 -2094,Loud Carrots,692 -2095,Purring Beef,692 -2096,Dull Greens,692 -2097,Hot Beef,692 -2098,Kickin' Fish,692 -2099,Clumsy Burrito,693 -2100,Flat Bread,693 -2101,Frightened Greens,693 -2102,Pickled Beets,693 -2103,Large Burrito,694 -2104,Pretty Mushrooms,694 -2105,Giant Carrots,695 -2106,Boring Burrito,696 -2107,Old Carrots,696 -2108,Icy Bread,696 -2109,Swift Apples,696 -2110,Edible Carrots,696 -2111,Mysterious Beets,697 -2112,Wooden Honey,697 -2113,Hollow Apples,698 -2114,Fluffy Beef,698 -2115,Disturbed Mushrooms,698 -2116,Gigantic Carrots,698 -2117,Gigantic Chicken,699 -2118,Flaky Burrito,699 -2119,Greasy Chicken,699 -2120,Faint Mushrooms,699 -2121,Wooden Bread,700 -2122,Small Beets,701 -2123,Squealing Apples,701 -2124,Fuzzy Beets,702 -2125,Nosy Fruit,703 -2126,Evil Apples,703 -2127,Skinny Carrots,703 -2128,Black Beets,704 -2129,Young Greens,705 -2130,Incredible Fish,706 -2131,Dirty Burrito,706 -2132,Dangerous Honey,707 -2133,Average Pretzel,708 -2134,Sharp Fish,708 -2135,Ashamed Fish,708 -2136,Wicked Pretzel,708 -2137,Wasteful Greens,709 -2138,Faithful Fruit,710 -2139,Wicked Bread,711 -2140,Troubled Carrots,711 -2141,Cool Carrots,711 -2142,Confused Chicken,712 -2143,Steady Fruit,712 -2144,Juicy Fish,712 -2145,Wide-eyed Beets,713 -2146,Skinny Greens,713 -2147,Happy Burrito,714 -2148,Sour Mushrooms,715 -2149,Enthusiastic Burrito,715 -2150,Gentle Beets,715 -2151,R Carrots,715 -2152,Icy Carrots,716 -2153,Whispering Apples,717 -2154,Great Pretzel,718 -2155,Ancient Greens,718 -2156,Beautiful Beef,719 -2157,Cuddly Fish,719 -2158,Quaint Beef,720 -2159,Selfish Fruit,720 -2160,Purple Bread,720 -2161,Vast Apples,720 -2162,Narrow Bread,721 -2163,Perfect Beef,721 -2164,Obnoxious Carrots,721 -2165,Young Burrito,721 -2166,Scary Fruit,722 -2167,Depressed Apples,722 -2168,New Honey,722 -2169,Green Bread,722 -2170,Nasty Mushrooms,723 -2171,Bitter Fish,723 -2172,Voiceless Honey,723 -2173,Weary Chicken,724 -2174,Mysterious Beets,725 -2175,Beautiful Mushrooms,725 -2176,Thoughtless Mushrooms,725 -2177,Fluffy Beets,725 -2178,Tight Chicken,726 -2179,Striped Mushrooms,726 -2180,Numerous Fruit,726 -2181,Testy Chicken,727 -2182,Shaggy Burrito,727 -2183,Spotty Fish,728 -2184,Broken Mushrooms,728 -2185,Stale Beets,729 -2186,Faint Pretzel,730 -2187,Hushed Carrots,731 -2188,Hot Carrots,732 -2189,Nosy Chicken,732 -2190,Pleasant Honey,732 -2191,Nosy Burrito,732 -2192,Scattered Carrots,732 -2193,Average Carrots,733 -2194,Cold Carrots,733 -2195,Hissing Honey,734 -2196,Healthy Greens,734 -2197,Defiant Beef,734 -2198,Gentle Beef,734 -2199,Broad Fish,734 -2200,Ratty Beets,735 -2201,Sad Apples,735 -2202,Broken Chicken,736 -2203,Better Fruit,737 -2204,Modern Burrito,737 -2205,Sweet Chicken,738 -2206,Ratty Pretzel,738 -2207,Grand Chicken,739 -2208,Agreeable Apples,740 -2209,Testy Chicken,740 -2210,Tricky Fish,740 -2211,Ordinary Bread,740 -2212,Homeless Greens,741 -2213,Rotten Fruit,742 -2214,Ashamed Chicken,742 -2215,Squealing Burrito,742 -2216,Lazy Pretzel,742 -2217,Worried Honey,742 -2218,Handsome Mushrooms,743 -2219,Courageous Chicken,743 -2220,Tired Beef,744 -2221,Many Burrito,744 -2222,Fair Beef,745 -2223,Huge Mushrooms,745 -2224,Thundering Apples,745 -2225,Odd Greens,745 -2226,Nervous Beets,746 -2227,Delightful Beets,746 -2228,Boring Beets,746 -2229,Ordinary Fish,746 -2230,Gigantic Apples,747 -2231,Plastic Bread,747 -2232,Mighty Greens,747 -2233,Nom nom Pretzel,748 -2234,Envious Pretzel,748 -2235,Tender Bread,748 -2236,Mysterious Apples,749 -2237,Tiny Greens,749 -2238,Strange Beef,749 -2239,Average Carrots,749 -2240,Good Fruit,749 -2241,Filthy Carrots,750 -2242,Lonely Chicken,750 -2243,Scattered Bread,750 -2244,Brave Pretzel,750 -2245,Smiling Chicken,750 -2246,Tasty Bread,751 -2247,Smiling Burrito,751 -2248,Skinny Beets,751 -2249,Spotty Beef,751 -2250,Salty Beets,752 -2251,Bland Honey,752 -2252,Odd Beets,752 -2253,Eager Chicken,753 -2254,Soft Fish,753 -2255,Screeching Carrots,753 -2256,Homeless Carrots,754 -2257,Zany Apples,754 -2258,S Fruit,754 -2259,Long Fish,754 -2260,Deafening Apples,754 -2261,Quick Greens,755 -2262,Steady Bread,755 -2263,Prickly Beets,755 -2264,Ill Chicken,755 -2265,Husky Burrito,755 -2266,Pleasant Chicken,756 -2267,Orange Beef,756 -2268,Kind Fruit,756 -2269,Rainy Greens,756 -2270,Rapid Carrots,756 -2271,Juicy Fruit,757 -2272,Puny Carrots,757 -2273,Chilly Mushrooms,758 -2274,Spotty Beets,758 -2275,Empty Apples,758 -2276,Mute Fruit,758 -2277,R Bread,759 -2278,Brief Honey,760 -2279,Silky Honey,760 -2280,Nice Burrito,760 -2281,Chilly Honey,760 -2282,Troubled Apples,761 -2283,Tight Beets,761 -2284,Good Fish,761 -2285,Jittery Fish,761 -2286,Prickly Honey,762 -2287,Broad Pretzel,762 -2288,Jolly Greens,762 -2289,Smooth Carrots,763 -2290,Healthy Pretzel,764 -2291,Fantastic Fish,765 -2292,Exuberant Mushrooms,765 -2293,Naughty Apples,765 -2294,Sweet Honey,765 -2295,Tender Chicken,766 -2296,Terrible Honey,766 -2297,Scrawny Fruit,766 -2298,Ugliest Apples,766 -2299,New Beef,766 -2300,Empty Beef,767 -2301,Combative Beef,767 -2302,Encouraging Beets,768 -2303,Voiceless Beets,768 -2304,Slippery Mushrooms,768 -2305,Moaning Beef,768 -2306,Scrumptious Greens,769 -2307,Grand Bread,769 -2308,Colossal Beef,769 -2309,Bright Greens,769 -2310,Faint Apples,769 -2311,Grubby Mushrooms,770 -2312,Itchy Pretzel,770 -2313,Broad Chicken,770 -2314,Anxious Mushrooms,770 -2315,Cooperative Bread,770 -2316,Troubled Bread,771 -2317,Mysterious Honey,771 -2318,Immense Burrito,771 -2319,Stale Bread,772 -2320,Beautiful Mushrooms,772 -2321,Defeated Beets,772 -2322,Better Chicken,773 -2323,Lazy Burrito,773 -2324,Sweet Bread,773 -2325,Broken Beets,773 -2326,Rotten Beef,774 -2327,Thoughtful Carrots,774 -2328,Round Greens,774 -2329,Silky Greens,774 -2330,Dizzy Fruit,775 -2331,Raspy Fruit,775 -2332,Evil Beef,775 -2333,Orange Pretzel,775 -2334,Slippery Apples,776 -2335,Hot Honey,776 -2336,Faint Honey,776 -2337,Clumsy Beef,777 -2338,Dirty Beets,777 -2339,Quickest Honey,777 -2340,Greasy Beef,777 -2341,Tasteless Fruit,777 -2342,Narrow Fish,778 -2343,Lively Honey,779 -2344,Jumpin' Honey,779 -2345,Whispering Mushrooms,779 -2346,Righteous Pretzel,779 -2347,Ripe Greens,780 -2348,Breezy Beets,780 -2349,Quick Carrots,781 -2350,Hissing Pretzel,781 -2351,Pickled Fruit,781 -2352,Late Burrito,781 -2353,Embarrassed Carrots,782 -2354,Dusty Fruit,783 -2355,Homeless Beef,783 -2356,Perfect Pretzel,783 -2357,Hollow Bread,783 -2358,Hot Apples,784 -2359,Troubled Chicken,785 -2360,Thoughtless Fish,786 -2361,Heavy Honey,786 -2362,Round Greens,786 -2363,Fresh Mushrooms,786 -2364,Strange Bread,786 -2365,Yummy Carrots,787 -2366,Cheesy Burrito,787 -2367,Lovely Honey,787 -2368,Savory Carrots,787 -2369,Splendid Beef,787 -2370,Terrible Beets,788 -2371,Disturbed Fruit,788 -2372,Scary Apples,788 -2373,Kind Beets,789 -2374,Steep Bread,789 -2375,Thoughtful Chicken,789 -2376,Stale Chicken,790 -2377,Mammoth Carrots,790 -2378,Silky Beets,790 -2379,Curved Carrots,790 -2380,Frantic Carrots,791 -2381,Round Pretzel,791 -2382,Average Pretzel,791 -2383,Thoughtless Greens,791 -2384,Bad Mushrooms,791 -2385,Awful Chicken,792 -2386,Disturbed Burrito,792 -2387,Fresh Fish,792 -2388,Grand Beets,793 -2389,Gorgeous Burrito,793 -2390,Thoughtful Fruit,793 -2391,Grieving Honey,793 -2392,Clumsy Bread,793 -2393,Immense Beef,794 -2394,Robust Pretzel,794 -2395,Flat Chicken,794 -2396,Mammoth Beef,794 -2397,Fair Beets,794 -2398,Dangerous Beef,795 -2399,Good Fruit,795 -2400,Pickled Mushrooms,795 -2401,– Beets,795 -2402,Red Beets,795 -2403,Strong Beef,796 -2404,Crazy Burrito,796 -2405,Tough Carrots,796 -2406,Salty Carrots,796 -2407,Solid Mushrooms,796 -2408,Salty Fish,797 -2409,Brave Apples,797 -2410,R Bread,797 -2411,Healthy Honey,797 -2412,Repulsive Honey,797 -2413,Loose Beef,798 -2414,Comfortable Greens,798 -2415,Orange Greens,798 -2416,R Bread,798 -2417,Itchy Apples,799 -2418,Sad Apples,799 -2419,Hard Fish,799 -2420,Jumpin' Carrots,800 -2421,Roasted Beets,800 -2422,Immense Honey,800 -2423,Wide Chicken,800 -2424,Grumpy Apples,801 -2425,Moaning Carrots,801 -2426,Dry Bread,801 -2427,Clumsy Chicken,801 -2428,Whispering Chicken,801 -2429,Eager Mushrooms,802 -2430,Kickin' Bread,803 -2431,Sad Burrito,803 -2432,Slimy Fruit,804 -2433,Ashamed Fish,805 -2434,Depressed Beets,805 -2435,Magnificent Fish,805 -2436,Ugliest Honey,806 -2437,Nervous Chicken,806 -2438,Jealous Fish,806 -2439,Tiny Carrots,806 -2440,Tense Fruit,806 -2441,Sticky Chicken,807 -2442,Faint Burrito,807 -2443,Watery Fruit,807 -2444,Depressed Greens,807 -2445,R Fruit,807 -2446,Kickin' Fruit,808 -2447,Hard Fruit,808 -2448,Shaky Burrito,808 -2449,Plastic Greens,808 -2450,Strange Greens,809 -2451,Rotten Chicken,809 -2452,Successful Fish,809 -2453,Nasty Mushrooms,809 -2454,Long Pretzel,809 -2455,Wide-eyed Fish,810 -2456,Bad Pretzel,810 -2457,Broken Burrito,811 -2458,Hot Greens,811 -2459,Mute Burrito,811 -2460,Flaky Pretzel,812 -2461,Angry Honey,812 -2462,Silly Carrots,812 -2463,Tough Bread,812 -2464,Grumpy Fruit,812 -2465,Helpless Beef,813 -2466,Cuddly Beets,814 -2467,Mammoth Honey,814 -2468,Rotten Honey,814 -2469,Slow Burrito,815 -2470,Jumpin' Bread,815 -2471,Modern Greens,815 -2472,Robust Bread,815 -2473,Short Greens,816 -2474,Faithful Apples,816 -2475,Fluffy Burrito,816 -2476,Wooden Honey,817 -2477,Blue Pretzel,817 -2478,Depressed Pretzel,817 -2479,Flat Beets,818 -2480,Helpless Beef,818 -2481,Spotty Burrito,818 -2482,Large Carrots,819 -2483,Short Beets,819 -2484,Calm Chicken,819 -2485,Selfish Bread,819 -2486,Lovely Bread,820 -2487,Splendid Mushrooms,820 -2488,Quickest Beets,820 -2489,Mighty Fruit,820 -2490,Courageous Honey,820 -2491,Screeching Bread,821 -2492,Straight Mushrooms,822 -2493,Purple Chicken,823 -2494,Slimy Carrots,823 -2495,M Beets,824 -2496,Fine Greens,824 -2497,Savory Mushrooms,824 -2498,Long Apples,824 -2499,Yummy Fruit,824 -2500,Panicky Fruit,825 -2501,Exuberant Carrots,825 -2502,Damp Burrito,825 -2503,Skinny Honey,825 -2504,Resonant Chicken,826 -2505,Lovely Fish,826 -2506,Obedient Apples,826 -2507,Shaky Burrito,826 -2508,R Fruit,826 -2509,Fierce Honey,827 -2510,Jumpin' Chicken,827 -2511,Modern Chicken,827 -2512,Elated Chicken,828 -2513,Combative Beets,829 -2514,Loose Mushrooms,829 -2515,Great Greens,829 -2516,Scrawny Fruit,829 -2517,Weary Apples,830 -2518,Thundering Apples,830 -2519,Uneven Bread,830 -2520,Strong Chicken,830 -2521,Quick Fish,830 -2522,Repulsive Burrito,831 -2523,Nosy Mushrooms,832 -2524,Jealous Pretzel,832 -2525,Ashamed Fish,832 -2526,Shrill Apples,832 -2527,Heavy Mushrooms,832 -2528,Flaky Chicken,833 -2529,Mysterious Bread,833 -2530,Silly Burrito,833 -2531,Friendly Greens,834 -2532,Righteous Pretzel,834 -2533,Red Beets,834 -2534,Creepy Fruit,834 -2535,Cooperative Pretzel,835 -2536,Scattered Fish,836 -2537,Mammoth Beets,836 -2538,Tan Chicken,836 -2539,Arrogant Bread,836 -2540,Tight Greens,836 -2541,Few Burrito,837 -2542,Worried Apples,837 -2543,Raspy Burrito,837 -2544,Awful Beets,837 -2545,Frightened Pretzel,838 -2546,Silent Bread,838 -2547,Perfect Greens,838 -2548,Hurt Fruit,838 -2549,Melted Chicken,839 -2550,Bitter Pretzel,839 -2551,Courageous Burrito,840 -2552,Strong Bread,840 -2553,Plain Beef,841 -2554,Energetic Carrots,841 -2555,Tense Chicken,841 -2556,Calm Mushrooms,841 -2557,Sore Greens,842 -2558,Ripe Chicken,842 -2559,Boom-town Burrito,842 -2560,Ashamed Apples,843 -2561,Slimy Pretzel,843 -2562,Raspy Beets,843 -2563,Great Burrito,844 -2564,Quiet Carrots,844 -2565,Narrow Carrots,844 -2566,Cheerful Carrots,845 -2567,Raspy Burrito,845 -2568,Melodic Beets,845 -2569,Disturbed Fish,846 -2570,Hissing Carrots,847 -2571,Fresh Carrots,847 -2572,Arrogant Bread,848 -2573,Disgusted Fruit,848 -2574,Ugliest Beets,848 -2575,Stale Chicken,848 -2576,Jealous Beets,848 -2577,Mammoth Fish,849 -2578,Curved Mushrooms,849 -2579,Comfortable Mushrooms,849 -2580,Mammoth Chicken,849 -2581,Swift Greens,849 -2582,Quick Honey,850 -2583,Colossal Pretzel,851 -2584,Smiling Greens,851 -2585,Lively Fish,851 -2586,Homeless Beets,852 -2587,Grand Fish,852 -2588,Uptight Mushrooms,852 -2589,Dry Beef,852 -2590,Wide Honey,853 -2591,– Pretzel,854 -2592,Puny Burrito,855 -2593,Soft Fruit,855 -2594,Scattered Fish,856 -2595,Elated Carrots,856 -2596,Tan Bread,856 -2597,Bright Fruit,856 -2598,Tired Bread,857 -2599,Short Pretzel,857 -2600,Boiling Greens,857 -2601,Wide-eyed Burrito,858 -2602,Lazy Fruit,858 -2603,Rough Fruit,858 -2604,Afraid Greens,858 -2605,Tasteless Fruit,859 -2606,Afraid Beets,859 -2607,Shallow Carrots,859 -2608,Puny Burrito,859 -2609,Broken Greens,859 -2610,Fresh Apples,860 -2611,Salty Apples,860 -2612,Tense Beets,860 -2613,Mute Beets,860 -2614,Nervous Mushrooms,860 -2615,Weak Honey,861 -2616,Hushed Chicken,861 -2617,Horrible Burrito,861 -2618,Hot Beef,861 -2619,Scrawny Beef,861 -2620,Terrible Burrito,862 -2621,Stale Beef,862 -2622,Cool Honey,862 -2623,Scattered Chicken,862 -2624,Faint Carrots,862 -2625,Big Pretzel,863 -2626,Uneven Honey,863 -2627,Slimy Pretzel,863 -2628,Nosy Greens,864 -2629,Great Carrots,864 -2630,Frail Carrots,864 -2631,Angry Carrots,864 -2632,Brief Apples,865 -2633,Quiet Burrito,865 -2634,Obnoxious Beets,865 -2635,Tiny Greens,865 -2636,Low Chicken,865 -2637,Flat Greens,866 -2638,Evil Beef,866 -2639,Shaky Fruit,867 -2640,Dangerous Greens,867 -2641,Sweet Mushrooms,867 -2642,Cooing Bread,868 -2643,Rainy Greens,869 -2644,Smooth Carrots,869 -2645,Black Mushrooms,870 -2646,Lovely Bread,870 -2647,Ugly Carrots,871 -2648,Ashamed Chicken,871 -2649,Damp Beef,871 -2650,Loose Pretzel,871 -2651,Voiceless Pretzel,871 -2652,Modern Burrito,872 -2653,Happy Greens,872 -2654,Numerous Apples,872 -2655,Fuzzy Carrots,873 -2656,Ugly Pretzel,874 -2657,Curly Pretzel,874 -2658,Plastic Fruit,875 -2659,Tough Apples,876 -2660,Whispering Bread,876 -2661,Gigantic Honey,877 -2662,Greasy Fruit,877 -2663,Evil Beets,877 -2664,Rough Chicken,878 -2665,Lucky Fish,878 -2666,Stupendous Honey,878 -2667,Rare Fish,878 -2668,Harsh Bread,878 -2669,Tall Beets,879 -2670,Massive Fruit,879 -2671,Depressed Bread,880 -2672,Few Fish,880 -2673,Black Honey,880 -2674,Itchy Fish,880 -2675,Raspy Pretzel,880 -2676,Helpless Chicken,881 -2677,Screeching Beets,882 -2678,Husky Honey,882 -2679,Petite Mushrooms,882 -2680,Fluffy Pretzel,882 -2681,Melodic Fish,883 -2682,Shivering Burrito,883 -2683,Fuzzy Apples,883 -2684,Boring Apples,883 -2685,Righteous Beets,883 -2686,Victorious Beef,884 -2687,Uneven Fish,884 -2688,Purring Pretzel,884 -2689,Shivering Beef,884 -2690,Great Beef,884 -2691,Plain Apples,885 -2692,Helpful Apples,886 -2693,Confused Chicken,887 -2694,Straight Apples,888 -2695,Blue Fruit,889 -2696,Jolly Fish,889 -2697,Shaggy Apples,889 -2698,Scary Greens,890 -2699,Thoughtful Burrito,890 -2700,Fine Greens,890 -2701,Curly Chicken,890 -2702,Fuzzy Chicken,891 -2703,Outrageous Beets,891 -2704,Tired Burrito,892 -2705,– Burrito,892 -2706,Faithful Fruit,892 -2707,Creepy Greens,893 -2708,Tall Carrots,894 -2709,Moist Burrito,894 -2710,Combative Carrots,894 -2711,Tall Fish,894 -2712,Horrible Carrots,894 -2713,Puny Apples,895 -2714,Jolly Bread,895 -2715,Big Fruit,895 -2716,Happy Burrito,896 -2717,Loose Fish,896 -2718,Fair Beets,896 -2719,Straight Burrito,896 -2720,Miniature Burrito,897 -2721,Dusty Carrots,897 -2722,Uneven Burrito,897 -2723,Eager Honey,898 -2724,Bumpy Carrots,899 -2725,Incredible Greens,899 -2726,Floppy Carrots,899 -2727,Creepy Bread,899 -2728,Deep Apples,899 -2729,– Fish,900 -2730,Watery Greens,900 -2731,Incredible Greens,901 -2732,Bumpy Fruit,901 -2733,Loud Bread,901 -2734,Loose Apples,902 -2735,Rare Chicken,903 -2736,Jittery Beets,903 -2737,Miniature Apples,903 -2738,Combative Beets,903 -2739,Hissing Beef,904 -2740,Troubled Bread,904 -2741,Shaky Fish,904 -2742,Zany Chicken,904 -2743,Nosy Chicken,905 -2744,Mute Mushrooms,905 -2745,Colossal Greens,905 -2746,Long Greens,905 -2747,Late Pretzel,906 -2748,Ashamed Burrito,906 -2749,Watery Beets,906 -2750,Robust Burrito,907 -2751,Great Beef,907 -2752,Fair Beef,907 -2753,Scattered Burrito,908 -2754,Homeless Chicken,908 -2755,Healthy Beets,908 -2756,Eager Greens,908 -2757,Plain Chicken,908 -2758,Fine Bread,909 -2759,Modern Bread,909 -2760,Hissing Fruit,909 -2761,Nom nom Chicken,909 -2762,Ordinary Beets,909 -2763,Young Honey,910 -2764,Faint Fruit,910 -2765,Ill Pretzel,911 -2766,Enthusiastic Greens,911 -2767,Depressed Pretzel,911 -2768,Awful Fruit,911 -2769,Elated Beets,912 -2770,Hushed Carrots,912 -2771,Flat Beets,912 -2772,Cheerful Beef,913 -2773,– Mushrooms,913 -2774,Stingy Carrots,913 -2775,Lovely Pretzel,914 -2776,Perfect Beets,914 -2777,Stingy Apples,914 -2778,Shrill Beef,914 -2779,Loud Fruit,915 -2780,Rough Burrito,915 -2781,Awful Carrots,915 -2782,Nasty Fruit,915 -2783,Excited Apples,915 -2784,Harsh Pretzel,916 -2785,Wide Beef,916 -2786,Stupendous Honey,916 -2787,Scrumptious Bread,916 -2788,Lonely Chicken,916 -2789,Square Apples,917 -2790,Pretty Honey,917 -2791,Hurt Mushrooms,917 -2792,Magnificent Beets,918 -2793,Incredible Honey,918 -2794,Spicy Burrito,919 -2795,Yellow Apples,919 -2796,Chilly Fruit,919 -2797,Ill Apples,919 -2798,Nervous Beets,919 -2799,Witty Fruit,920 -2800,Strange Fish,921 -2801,Cuddly Chicken,921 -2802,Tan Fruit,921 -2803,R Bread,921 -2804,Deafening Honey,921 -2805,Relieved Greens,922 -2806,Ratty Burrito,922 -2807,Perfect Beets,922 -2808,Witty Apples,922 -2809,Solid Bread,922 -2810,Skinny Apples,923 -2811,Lovely Beets,923 -2812,Nosy Apples,924 -2813,Elated Chicken,924 -2814,Boiling Beets,924 -2815,Tough Greens,924 -2816,Fuzzy Greens,925 -2817,R Fish,925 -2818,Handsome Beets,925 -2819,Bad Beef,926 -2820,Faint Chicken,926 -2821,Lovely Fruit,926 -2822,Vast Bread,926 -2823,Better Carrots,927 -2824,Husky Burrito,927 -2825,Numerous Pretzel,927 -2826,Dizzy Greens,927 -2827,Juicy Greens,927 -2828,Strong Burrito,928 -2829,Mute Chicken,929 -2830,Icy Chicken,930 -2831,Amused Greens,930 -2832,Mighty Fruit,930 -2833,Tall Apples,931 -2834,Incredible Carrots,931 -2835,Breezy Fruit,931 -2836,Giant Apples,931 -2837,Ugly Bread,932 -2838,Greasy Mushrooms,932 -2839,Mighty Greens,933 -2840,Cruel Bread,933 -2841,Obnoxious Fish,934 -2842,High Greens,934 -2843,Friendly Honey,934 -2844,Puny Beets,935 -2845,Faint Beets,936 -2846,Relieved Mushrooms,936 -2847,Dizzy Greens,936 -2848,Scattered Beets,936 -2849,Raspy Mushrooms,937 -2850,Big Apples,937 -2851,Tiny Pretzel,938 -2852,Broken Pretzel,938 -2853,Itchy Beef,938 -2854,Cooperative Greens,939 -2855,Frail Burrito,940 -2856,Husky Apples,940 -2857,Ugly Burrito,940 -2858,Hollow Bread,940 -2859,Numerous Beef,941 -2860,Savory Mushrooms,941 -2861,Dangerous Mushrooms,941 -2862,Spicy Fruit,942 -2863,Stale Honey,942 -2864,Frightened Carrots,942 -2865,Pleasant Apples,942 -2866,Big Greens,943 -2867,Boiling Fruit,943 -2868,Encouraging Beets,943 -2869,Heavy Chicken,944 -2870,Dirty Beets,944 -2871,Cooperative Beef,945 -2872,Icy Beets,945 -2873,Screeching Mushrooms,946 -2874,Hushed Burrito,946 -2875,Silky Fish,946 -2876,Outrageous Chicken,946 -2877,Hot Honey,947 -2878,Young Fish,947 -2879,S Fruit,948 -2880,Quickest Fruit,948 -2881,Bland Burrito,948 -2882,Disgusted Honey,948 -2883,Thoughtful Honey,948 -2884,Fluffy Pretzel,949 -2885,Shaky Apples,950 -2886,Friendly Burrito,950 -2887,Mammoth Fruit,951 -2888,Victorious Chicken,951 -2889,Shallow Beef,951 -2890,Fresh Mushrooms,951 -2891,Purple Beets,952 -2892,Immense Fish,953 -2893,Lazy Greens,953 -2894,Lonely Chicken,953 -2895,Annoyed Carrots,954 -2896,Envious Bread,955 -2897,Faithful Beets,955 -2898,Foolish Mushrooms,955 -2899,Shivering Pretzel,955 -2900,Bright Bread,955 -2901,Greasy Fish,956 -2902,Chilly Beets,956 -2903,Rapid Burrito,957 -2904,M Fruit,957 -2905,Fast Honey,958 -2906,Salty Burrito,959 -2907,Jittery Fish,959 -2908,Small Pretzel,959 -2909,Comfortable Apples,960 -2910,Hushed Burrito,960 -2911,Depressed Beef,960 -2912,Grieving Bread,960 -2913,Icy Apples,961 -2914,Envious Chicken,961 -2915,Broad Burrito,962 -2916,Repulsive Apples,962 -2917,Faint Burrito,963 -2918,Dangerous Mushrooms,963 -2919,Brave Pretzel,963 -2920,Tough Beef,964 -2921,Tough Honey,964 -2922,Tense Fish,964 -2923,Rough Beets,964 -2924,Ancient Beets,965 -2925,Large Burrito,965 -2926,Creepy Fruit,965 -2927,Stale Mushrooms,965 -2928,Handsome Fish,966 -2929,Naughty Mushrooms,966 -2930,Tired Beef,966 -2931,Greasy Fish,967 -2932,Nice Fruit,967 -2933,Old Fruit,967 -2934,Uneven Pretzel,967 -2935,Green Burrito,968 -2936,Moist Chicken,968 -2937,Spotty Apples,969 -2938,Nosy Apples,969 -2939,Red Beets,970 -2940,Breezy Mushrooms,970 -2941,Pickled Honey,970 -2942,Colossal Fish,971 -2943,Energetic Pretzel,971 -2944,Salty Beets,971 -2945,M Apples,971 -2946,Nice Honey,971 -2947,Comfortable Pretzel,972 -2948,Foolish Fish,973 -2949,Whispering Mushrooms,973 -2950,Ordinary Burrito,973 -2951,Small Carrots,973 -2952,Spicy Mushrooms,974 -2953,Narrow Carrots,974 -2954,Petite Bread,974 -2955,Gorgeous Beets,974 -2956,Better Carrots,975 -2957,Obnoxious Pretzel,975 -2958,Great Chicken,975 -2959,Black Beef,975 -2960,Spotty Carrots,976 -2961,Watery Fruit,976 -2962,Tight Beef,977 -2963,Low Beets,977 -2964,High Beets,977 -2965,Calm Pretzel,977 -2966,Crazy Carrots,978 -2967,Nosy Bread,978 -2968,Numerous Carrots,978 -2969,Hilarious Beets,978 -2970,Agreeable Beef,978 -2971,Shallow Beef,979 -2972,Fair Bread,979 -2973,Smiling Beets,979 -2974,Elated Greens,979 -2975,Green Mushrooms,979 -2976,Odd Fruit,980 -2977,Obnoxious Burrito,980 -2978,Helpless Chicken,981 -2979,Breezy Fruit,981 -2980,Old Apples,981 -2981,Anxious Carrots,982 -2982,Bright Honey,983 -2983,Tame Chicken,983 -2984,Silly Honey,983 -2985,Miniature Beef,983 -2986,Obnoxious Fruit,983 -2987,Striped Mushrooms,984 -2988,Old Carrots,984 -2989,Shaggy Pretzel,984 -2990,Comfortable Apples,984 -2991,Tired Apples,985 -2992,– Burrito,985 -2993,Funny Fruit,986 -2994,Wide-eyed Greens,986 -2995,Itchy Burrito,986 -2996,Shaky Fish,987 -2997,Comfortable Honey,987 -2998,Sour Chicken,987 -2999,Chilly Beets,987 -3000,Successful Mushrooms,988 -3001,Calm Beef,988 -3002,Giant Honey,989 -3003,Low Pretzel,989 -3004,Sticky Fruit,989 -3005,Cold Apples,989 -3006,Zany Greens,990 -3007,Spotty Beef,990 -3008,Bright Burrito,990 -3009,Silent Carrots,990 -3010,Low Chicken,990 -3011,Handsome Greens,991 -3012,Fierce Greens,991 -3013,Confused Greens,991 -3014,Shaky Beef,991 -3015,Comfortable Apples,992 -3016,Creepy Burrito,992 -3017,Great Fish,992 -3018,Angry Beets,992 -3019,Juicy Burrito,993 -3020,Weak Greens,993 -3021,Big Carrots,993 -3022,Wide-eyed Carrots,993 -3023,Icy Fish,994 -3024,Average Mushrooms,994 -3025,Wide-eyed Fish,994 -3026,Fresh Burrito,994 -3027,– Mushrooms,994 -3028,Yummy Fruit,995 -3029,Cheesy Carrots,995 -3030,Resonant Fruit,996 -3031,Melted Fish,996 -3032,Afraid Pretzel,996 -3033,Nice Fruit,997 -3034,Rapid Mushrooms,997 -3035,Low Honey,997 -3036,Purring Beets,997 -3037,Ugliest Mushrooms,997 -3038,Cooperative Greens,998 -3039,Average Apples,998 -3040,Slow Carrots,998 -3041,Cooperative Carrots,998 -3042,Gorgeous Honey,998 -3043,Shrill Beets,999 -3044,– Bread,999 -3045,Better Carrots,999 -3046,Testy Fruit,999 -3047,Ill Bread,1000 -3048,Kind Beef,1000 -3049,Colossal Bread,1001 -3050,Shrill Pretzel,1001 -3051,Large Beets,1001 -3052,Tight Mushrooms,1002 -3053,Fair Fish,1002 -3054,Victorious Fish,1002 -3055,Spicy Fish,1003 -3056,Delicious Fish,1004 -3057,Puny Greens,1004 -3058,Grubby Beef,1004 -3059,Dirty Chicken,1005 -3060,Scrawny Carrots,1005 -3061,Scrumptious Greens,1006 -3062,Quiet Mushrooms,1006 -3063,Spotty Carrots,1006 -3064,Nutty Bread,1007 -3065,Curly Beef,1007 -3066,Cuddly Greens,1008 -3067,Cruel Burrito,1008 -3068,– Beef,1009 -3069,– Burrito,1009 -3070,Late Beef,1009 -3071,Huge Carrots,1010 -3072,Fluffy Burrito,1010 -3073,Spicy Beets,1010 -3074,Wonderful Honey,1010 -3075,Wonderful Beef,1010 -3076,Wooden Mushrooms,1011 -3077,Fluffy Pretzel,1011 -3078,Prickly Chicken,1011 -3079,Stupendous Burrito,1011 -3080,Brave Beets,1012 -3081,Elated Honey,1012 -3082,Thirsty Mushrooms,1012 -3083,Steady Bread,1012 -3084,Exuberant Mushrooms,1012 -3085,Cruel Pretzel,1013 -3086,Depressed Beef,1013 -3087,R Beets,1013 -3088,Agreeable Burrito,1013 -3089,Disgusted Beef,1014 -3090,Gigantic Honey,1014 -3091,Damp Mushrooms,1015 -3092,Plastic Bread,1015 -3093,Hilarious Beets,1015 -3094,Salty Beef,1015 -3095,Fluffy Pretzel,1015 -3096,Stingy Apples,1016 -3097,Thoughtless Honey,1017 -3098,Hard Burrito,1018 -3099,Tired Chicken,1019 -3100,Boom-town Chicken,1019 -3101,Moist Mushrooms,1019 -3102,Lively Pretzel,1019 -3103,Large Mushrooms,1019 -3104,– Bread,1020 -3105,Savory Chicken,1020 -3106,Worried Greens,1020 -3107,Stale Greens,1020 -3108,Perfect Beef,1021 -3109,Smooth Fruit,1022 -3110,Deep Beets,1022 -3111,Slow Mushrooms,1023 -3112,Black Fish,1023 -3113,Young Chicken,1023 -3114,Dangerous Bread,1024 -3115,Tan Beets,1024 -3116,Energetic Chicken,1024 -3117,Bright Fruit,1024 -3118,Prickly Greens,1025 -3119,Ripe Honey,1025 -3120,Purple Fish,1025 -3121,Skinny Pretzel,1025 -3122,Anxious Mushrooms,1025 -3123,Dry Mushrooms,1026 -3124,Broken Fish,1026 -3125,– Beef,1026 -3126,Old Carrots,1026 -3127,Moaning Greens,1027 -3128,Cooperative Honey,1027 -3129,Jittery Beets,1027 -3130,Icy Beef,1028 -3131,Wet Carrots,1028 -3132,Shrill Bread,1028 -3133,Ugly Chicken,1029 -3134,Rainy Pretzel,1029 -3135,Tight Honey,1029 -3136,Dizzy Mushrooms,1030 -3137,Obedient Honey,1030 -3138,Fluffy Apples,1030 -3139,Ugly Bread,1030 -3140,Hard Bread,1031 -3141,Deep Beets,1031 -3142,Evil Greens,1032 -3143,Annoyed Honey,1032 -3144,Calm Chicken,1033 -3145,Helpless Carrots,1033 -3146,Weary Apples,1034 -3147,Voiceless Burrito,1035 -3148,Loose Fish,1036 -3149,R Pretzel,1036 -3150,New Pretzel,1037 -3151,Broken Carrots,1037 -3152,Wet Apples,1037 -3153,Crazy Fruit,1038 -3154,Average Beef,1038 -3155,Nervous Beets,1038 -3156,Tasty Pretzel,1038 -3157,Empty Beef,1039 -3158,Average Greens,1039 -3159,Hissing Fish,1040 -3160,Panicky Honey,1040 -3161,Charming Mushrooms,1041 -3162,Thoughtless Honey,1041 -3163,Clumsy Apples,1041 -3164,Righteous Fish,1042 -3165,Dizzy Beef,1042 -3166,Outrageous Pretzel,1042 -3167,Plain Carrots,1043 -3168,Dry Chicken,1043 -3169,Hot Apples,1044 -3170,Fine Chicken,1045 -3171,Great Beets,1045 -3172,Melodic Mushrooms,1045 -3173,Defiant Beets,1046 -3174,Righteous Beef,1046 -3175,Comfortable Carrots,1046 -3176,Agreeable Chicken,1046 -3177,Tough Apples,1047 -3178,Cool Fruit,1047 -3179,Embarrassed Fruit,1047 -3180,Dull Carrots,1047 -3181,Plain Carrots,1047 -3182,M Greens,1048 -3183,Straight Fruit,1049 -3184,Light Carrots,1049 -3185,Fierce Honey,1049 -3186,Nutty Bread,1050 -3187,Tasty Apples,1050 -3188,Obedient Burrito,1050 -3189,Grumpy Apples,1050 -3190,Fuzzy Beef,1051 -3191,Savory Fish,1052 -3192,Outrageous Beets,1052 -3193,Rainy Pretzel,1052 -3194,Worried Bread,1052 -3195,Quickest Bread,1053 -3196,Testy Bread,1053 -3197,Bumpy Beets,1053 -3198,Lonely Carrots,1053 -3199,Hushed Beets,1053 -3200,Cruel Carrots,1054 -3201,Sharp Pretzel,1054 -3202,Chilly Beets,1054 -3203,Big Beef,1055 -3204,Thirsty Pretzel,1055 -3205,Helpless Pretzel,1055 -3206,Slimy Fruit,1055 -3207,Smiling Bread,1056 -3208,Exuberant Fish,1056 -3209,Nutty Apples,1056 -3210,Black Honey,1056 -3211,Plain Bread,1056 -3212,Slippery Beets,1057 -3213,Creepy Fish,1057 -3214,Thoughtful Burrito,1058 -3215,Melted Carrots,1058 -3216,Mighty Fruit,1058 -3217,Short Beef,1058 -3218,Straight Beef,1058 -3219,Tiny Beef,1059 -3220,Gorgeous Greens,1059 -3221,Weak Greens,1059 -3222,Faint Burrito,1059 -3223,Delicious Chicken,1060 -3224,Moist Carrots,1060 -3225,Melted Burrito,1060 -3226,Fine Apples,1061 -3227,Square Apples,1061 -3228,Voiceless Pretzel,1061 -3229,Short Honey,1061 -3230,Tired Burrito,1062 -3231,Lazy Bread,1062 -3232,Awful Fish,1063 -3233,Long Carrots,1064 -3234,Charming Honey,1064 -3235,Hissing Burrito,1064 -3236,Grand Burrito,1065 -3237,Wonderful Fish,1065 -3238,Nasty Mushrooms,1066 -3239,Hollow Honey,1066 -3240,Ripe Burrito,1067 -3241,Melted Bread,1067 -3242,Colossal Fish,1067 -3243,Tart Chicken,1067 -3244,Fluffy Honey,1068 -3245,Petite Greens,1068 -3246,Hungry Bread,1069 -3247,Righteous Chicken,1069 -3248,Small Burrito,1069 -3249,Kickin' Greens,1070 -3250,Skinny Pretzel,1070 -3251,Helpless Mushrooms,1070 -3252,Panicky Chicken,1070 -3253,Late Mushrooms,1070 -3254,Defiant Mushrooms,1071 -3255,Stale Honey,1072 -3256,Envious Pretzel,1072 -3257,Panicky Mushrooms,1073 -3258,Savory Carrots,1073 -3259,Hot Beef,1074 -3260,Odd Honey,1074 -3261,Selfish Carrots,1074 -3262,Spicy Carrots,1074 -3263,Tender Pretzel,1075 -3264,Rough Bread,1075 -3265,Evil Beef,1075 -3266,Slow Beets,1076 -3267,Perfect Fruit,1076 -3268,Bright Bread,1077 -3269,Rare Fruit,1078 -3270,Massive Burrito,1079 -3271,Tall Burrito,1079 -3272,Encouraging Bread,1079 -3273,Fantastic Beef,1079 -3274,Perfect Bread,1079 -3275,Sweet Beets,1080 -3276,Amused Beets,1080 -3277,Annoyed Mushrooms,1080 -3278,Silly Chicken,1080 -3279,Pleasant Bread,1081 -3280,Brief Burrito,1081 -3281,Hilarious Pretzel,1081 -3282,Smiling Mushrooms,1081 -3283,Energetic Burrito,1082 -3284,Helpless Carrots,1082 -3285,Purring Carrots,1082 -3286,Vivacious Apples,1082 -3287,Fat Apples,1083 -3288,Fluffy Carrots,1083 -3289,Tasteless Mushrooms,1083 -3290,Quick Beef,1083 -3291,Embarrassed Pretzel,1084 -3292,Loud Fish,1084 -3293,Short Beets,1085 -3294,Defiant Beets,1085 -3295,Blue Chicken,1085 -3296,Hissing Fruit,1085 -3297,Hard Fish,1085 -3298,Gentle Apples,1086 -3299,Late Pretzel,1086 -3300,Bland Fruit,1086 -3301,Fantastic Carrots,1086 -3302,Upset Pretzel,1087 -3303,Ugliest Fruit,1088 -3304,Hurt Mushrooms,1088 -3305,Icy Beef,1088 -3306,Deafening Greens,1089 -3307,Steady Bread,1089 -3308,Cheerful Apples,1090 -3309,Mighty Burrito,1090 -3310,Selfish Fruit,1090 -3311,Sweet Honey,1091 -3312,Annoyed Bread,1091 -3313,Odd Apples,1091 -3314,Tame Chicken,1092 -3315,Hard Pretzel,1092 -3316,Magnificent Bread,1092 -3317,Thirsty Greens,1093 -3318,Hungry Beef,1093 -3319,Stupendous Beets,1094 -3320,Shrill Burrito,1095 -3321,Sore Fruit,1095 -3322,Magnificent Bread,1095 -3323,Large Burrito,1095 -3324,Sweet Carrots,1096 -3325,Defiant Fruit,1096 -3326,Hot Chicken,1096 -3327,Upset Fish,1097 -3328,Fantastic Apples,1097 -3329,Narrow Burrito,1097 -3330,Filthy Greens,1097 -3331,Panicky Greens,1098 -3332,Wide Mushrooms,1098 -3333,Mute Greens,1099 -3334,Uptight Greens,1099 -3335,Grand Apples,1099 -3336,Tan Beef,1099 -3337,Righteous Pretzel,1100 -3338,Fierce Pretzel,1100 -3339,Wasteful Pretzel,1100 -3340,Helpless Fruit,1100 -3341,Thoughtful Greens,1101 -3342,Solid Honey,1101 -3343,Friendly Apples,1102 -3344,Light Chicken,1102 -3345,Vivacious Burrito,1102 -3346,Bland Burrito,1102 -3347,Skinny Fruit,1102 -3348,Plain Apples,1103 -3349,Charming Bread,1103 -3350,Curly Apples,1104 -3351,Nice Beef,1104 -3352,Light Pretzel,1104 -3353,Great Carrots,1105 -3354,Better Burrito,1105 -3355,Delicious Fruit,1105 -3356,Boiling Burrito,1106 -3357,Grumpy Carrots,1106 -3358,Plastic Greens,1106 -3359,Anxious Beets,1107 -3360,Tense Burrito,1107 -3361,Combative Carrots,1108 -3362,Purring Bread,1108 -3363,Tense Bread,1108 -3364,Grieving Beef,1109 -3365,Great Chicken,1109 -3366,Rotten Mushrooms,1110 -3367,Resonant Beef,1110 -3368,Wasteful Fish,1110 -3369,Stale Mushrooms,1111 -3370,Modern Beets,1111 -3371,Watery Chicken,1111 -3372,Sore Pretzel,1111 -3373,Bitter Beets,1111 -3374,Wonderful Carrots,1112 -3375,Pickled Bread,1112 -3376,Faithful Fish,1112 -3377,Mute Apples,1113 -3378,Hissing Apples,1113 -3379,New Chicken,1114 -3380,R Fish,1114 -3381,Broken Bread,1114 -3382,Dull Apples,1114 -3383,Screeching Pretzel,1114 -3384,Solid Beets,1115 -3385,Energetic Beets,1115 -3386,Hilarious Fruit,1115 -3387,Plain Apples,1115 -3388,Screeching Carrots,1115 -3389,Massive Mushrooms,1116 -3390,Testy Apples,1116 -3391,Old Greens,1116 -3392,Jittery Greens,1116 -3393,Shivering Burrito,1116 -3394,Quaint Beets,1117 -3395,Cold Honey,1117 -3396,Jealous Bread,1118 -3397,Hungry Honey,1118 -3398,Courageous Honey,1118 -3399,Hollow Fruit,1119 -3400,Courageous Chicken,1119 -3401,Wasteful Mushrooms,1119 -3402,Deafening Fish,1119 -3403,Wicked Bread,1119 -3404,Roasted Carrots,1120 -3405,Confused Greens,1120 -3406,Ordinary Greens,1120 -3407,Pickled Burrito,1121 -3408,Cuddly Beets,1121 -3409,Tart Beef,1121 -3410,Mute Carrots,1121 -3411,Quaint Burrito,1122 -3412,Melted Honey,1122 -3413,Cold Mushrooms,1123 -3414,Stale Beets,1123 -3415,Fuzzy Beets,1123 -3416,Excited Chicken,1123 -3417,Mute Mushrooms,1123 -3418,Faithful Carrots,1124 -3419,Wet Bread,1124 -3420,Salty Mushrooms,1124 -3421,Beautiful Chicken,1125 -3422,Agreeable Fish,1125 -3423,Fuzzy Burrito,1125 -3424,Lucky Beef,1126 -3425,Husky Burrito,1126 -3426,Fantastic Burrito,1127 -3427,Many Fish,1127 -3428,Zany Burrito,1127 -3429,Round Chicken,1127 -3430,Numerous Carrots,1128 -3431,Excited Burrito,1128 -3432,Rainy Greens,1128 -3433,Plastic Carrots,1128 -3434,Tricky Bread,1129 -3435,Raspy Burrito,1129 -3436,Sharp Fish,1129 -3437,Edible Chicken,1129 -3438,Modern Beef,1130 -3439,Rotten Apples,1131 -3440,Brief Mushrooms,1132 -3441,Fierce Fruit,1132 -3442,Ill Apples,1133 -3443,Spicy Chicken,1133 -3444,Harsh Mushrooms,1133 -3445,Lucky Greens,1133 -3446,Beautiful Bread,1134 -3447,Hot Fruit,1134 -3448,Juicy Mushrooms,1134 -3449,Tight Greens,1134 -3450,Yellow Apples,1134 -3451,Floppy Fruit,1135 -3452,Uptight Beets,1135 -3453,Scattered Pretzel,1136 -3454,Hushed Mushrooms,1137 -3455,Little Greens,1137 -3456,Funny Fruit,1138 -3457,Wide Honey,1139 -3458,Dangerous Greens,1140 -3459,Testy Beets,1140 -3460,Tight Apples,1140 -3461,Shrill Fish,1140 -3462,Odd Beef,1140 -3463,Young Carrots,1141 -3464,Grubby Beef,1141 -3465,Brief Burrito,1141 -3466,Cold Apples,1141 -3467,Hissing Fish,1141 -3468,Savory Chicken,1142 -3469,Robust Carrots,1142 -3470,Charming Carrots,1142 -3471,Afraid Apples,1143 -3472,Sore Beef,1143 -3473,Resonant Beets,1144 -3474,Greasy Carrots,1145 -3475,Awful Fruit,1145 -3476,Tender Bread,1145 -3477,Lovely Carrots,1145 -3478,Mammoth Beef,1146 -3479,Foolish Chicken,1146 -3480,Eager Greens,1147 -3481,Flat Honey,1147 -3482,Early Beef,1147 -3483,Envious Honey,1147 -3484,Frantic Bread,1147 -3485,Flaky Apples,1148 -3486,Mysterious Beef,1149 -3487,Sharp Carrots,1149 -3488,Prickly Greens,1149 -3489,Breezy Pretzel,1149 -3490,Shivering Beef,1150 -3491,Repulsive Greens,1151 -3492,Terrible Beets,1151 -3493,Naughty Greens,1152 -3494,Evil Pretzel,1152 -3495,Gentle Apples,1153 -3496,Striped Greens,1153 -3497,Terrible Greens,1153 -3498,Wonderful Fruit,1153 -3499,Nasty Fruit,1154 -3500,Tan Chicken,1154 -3501,Slow Apples,1154 -3502,Hard Bread,1154 -3503,Pretty Beets,1155 -3504,Sweet Greens,1155 -3505,Bumpy Beets,1156 -3506,Colossal Chicken,1156 -3507,Tight Bread,1156 -3508,Bumpy Bread,1157 -3509,Disturbed Greens,1157 -3510,Repulsive Chicken,1158 -3511,Raspy Carrots,1158 -3512,Fuzzy Apples,1158 -3513,Spotty Mushrooms,1158 -3514,Frantic Apples,1159 -3515,Damp Fruit,1159 -3516,Brave Chicken,1159 -3517,Faint Fish,1159 -3518,Afraid Mushrooms,1160 -3519,Anxious Carrots,1160 -3520,Cruel Burrito,1161 -3521,Swift Chicken,1161 -3522,Zany Apples,1161 -3523,High Fish,1161 -3524,Naughty Beets,1161 -3525,Ugly Bread,1162 -3526,Mysterious Beef,1162 -3527,Strange Mushrooms,1162 -3528,Melted Carrots,1163 -3529,Skinny Fruit,1163 -3530,Solid Bread,1163 -3531,Smiling Fish,1163 -3532,Evil Carrots,1164 -3533,Watery Beets,1164 -3534,Obnoxious Fish,1165 -3535,Wonderful Pretzel,1165 -3536,Relieved Mushrooms,1166 -3537,Wide Apples,1166 -3538,Fair Honey,1166 -3539,Good Apples,1166 -3540,Hushed Beef,1167 -3541,Defiant Fruit,1167 -3542,Dangerous Beef,1167 -3543,Sour Fruit,1167 -3544,Successful Bread,1167 -3545,Exuberant Burrito,1168 -3546,Odd Burrito,1168 -3547,Fine Fruit,1168 -3548,Raspy Fruit,1169 -3549,Floppy Beef,1169 -3550,Modern Beets,1169 -3551,Edible Bread,1169 -3552,Happy Fish,1169 -3553,Ugly Burrito,1170 -3554,– Carrots,1170 -3555,Energetic Carrots,1170 -3556,Fierce Beef,1170 -3557,Scrawny Carrots,1170 -3558,Cheerful Pretzel,1171 -3559,Perfect Fish,1171 -3560,Huge Bread,1171 -3561,Ashamed Beets,1171 -3562,Charming Greens,1172 -3563,Black Beets,1172 -3564,Moist Fruit,1173 -3565,Loose Beets,1173 -3566,Confused Mushrooms,1173 -3567,Blue Honey,1174 -3568,Low Pretzel,1174 -3569,– Greens,1174 -3570,Big Mushrooms,1174 -3571,Nutty Chicken,1174 -3572,Swift Beef,1175 -3573,Resonant Fish,1175 -3574,Straight Fruit,1175 -3575,Tiny Beets,1175 -3576,Modern Pretzel,1175 -3577,Petite Fish,1176 -3578,Fresh Burrito,1177 -3579,Chilly Apples,1178 -3580,Rainy Chicken,1178 -3581,Immense Apples,1178 -3582,Healthy Beets,1178 -3583,Purring Greens,1179 -3584,Vast Fruit,1179 -3585,Repulsive Bread,1179 -3586,Hurt Fish,1179 -3587,Rotten Chicken,1180 -3588,Fuzzy Bread,1180 -3589,Splendid Fruit,1180 -3590,Slow Apples,1180 -3591,Edible Apples,1180 -3592,Colossal Burrito,1181 -3593,Empty Honey,1181 -3594,Creepy Chicken,1181 -3595,Tight Beef,1181 -3596,Jolly Greens,1181 -3597,Cooing Burrito,1182 -3598,Narrow Beef,1182 -3599,Courageous Pretzel,1183 -3600,– Mushrooms,1183 -3601,Straight Fruit,1183 -3602,Sad Apples,1184 -3603,Good Beef,1185 -3604,Energetic Apples,1185 -3605,Stale Fish,1186 -3606,Scary Fish,1186 -3607,Brave Apples,1186 -3608,Pretty Fruit,1186 -3609,Slippery Beef,1186 -3610,Loose Burrito,1187 -3611,Tender Burrito,1188 -3612,Kickin' Beets,1189 -3613,Strong Chicken,1189 -3614,Magnificent Beets,1189 -3615,Quickest Pretzel,1189 -3616,Sore Fish,1190 -3617,Scary Apples,1190 -3618,Salty Beets,1190 -3619,Early Fruit,1190 -3620,Smooth Chicken,1191 -3621,R Pretzel,1191 -3622,Long Mushrooms,1191 -3623,Harsh Fruit,1192 -3624,Stingy Mushrooms,1192 -3625,Righteous Carrots,1193 -3626,Grumpy Beef,1193 -3627,Loose Beets,1193 -3628,Delicious Apples,1194 -3629,Wide-eyed Pretzel,1195 -3630,Terrible Beef,1196 -3631,Fantastic Beef,1196 -3632,Heavy Bread,1197 -3633,Giant Burrito,1197 -3634,Dull Honey,1198 -3635,Heavy Burrito,1198 -3636,Old Pretzel,1198 -3637,Hot Pretzel,1198 -3638,Small Bread,1198 -3639,Envious Beef,1199 -3640,Filthy Fruit,1199 -3641,Average Pretzel,1199 -3642,Courageous Pretzel,1200 -3643,Steep Beets,1200 -3644,Delightful Fish,1201 -3645,Average Beef,1201 -3646,Husky Beets,1201 -3647,Gorgeous Greens,1201 -3648,Cheesy Fruit,1202 -3649,Wide Carrots,1202 -3650,Excited Fish,1202 -3651,Naughty Mushrooms,1202 -3652,Evil Beets,1202 -3653,Precious Carrots,1203 -3654,High Mushrooms,1203 -3655,Tough Chicken,1203 -3656,Magnificent Fish,1203 -3657,Old Fruit,1204 -3658,Encouraging Apples,1204 -3659,Early Beets,1204 -3660,Loud Beef,1204 -3661,Robust Bread,1204 -3662,Whispering Chicken,1205 -3663,Annoyed Apples,1205 -3664,Whispering Pretzel,1205 -3665,Damp Mushrooms,1205 -3666,Wooden Beef,1206 -3667,Shallow Pretzel,1206 -3668,Square Apples,1206 -3669,Yummy Mushrooms,1207 -3670,Quaint Apples,1207 -3671,Excited Burrito,1207 -3672,Wide-eyed Beets,1207 -3673,Fuzzy Fruit,1207 -3674,Salty Fruit,1208 -3675,Shallow Honey,1209 -3676,Righteous Burrito,1209 -3677,Rapid Burrito,1209 -3678,Angry Beets,1209 -3679,Comfortable Greens,1210 -3680,Straight Greens,1210 -3681,Nice Greens,1211 -3682,Ugliest Apples,1211 -3683,Slippery Chicken,1211 -3684,Curly Greens,1211 -3685,Excited Honey,1212 -3686,Purple Bread,1212 -3687,Jumpin' Burrito,1212 -3688,Wide Honey,1213 -3689,Tiny Burrito,1214 -3690,Moaning Greens,1214 -3691,Beautiful Greens,1215 -3692,Swift Pretzel,1215 -3693,Dry Chicken,1215 -3694,Jittery Burrito,1216 -3695,Boiling Apples,1216 -3696,Sour Chicken,1216 -3697,Cuddly Chicken,1216 -3698,Squealing Carrots,1216 -3699,Friendly Fish,1217 -3700,Spicy Carrots,1217 -3701,Wicked Apples,1217 -3702,Hilarious Fish,1218 -3703,Enthusiastic Bread,1218 -3704,Gentle Mushrooms,1218 -3705,Elated Beets,1218 -3706,New Greens,1219 -3707,Flat Fish,1219 -3708,Black Fruit,1220 -3709,Smiling Pretzel,1220 -3710,Eager Apples,1220 -3711,Rainy Apples,1221 -3712,Perfect Apples,1221 -3713,Repulsive Fruit,1221 -3714,Old Burrito,1221 -3715,Nutty Fish,1222 -3716,Boring Beef,1222 -3717,Tender Beef,1222 -3718,Magnificent Beef,1222 -3719,Sharp Beets,1223 -3720,Old Carrots,1223 -3721,Flaky Apples,1223 -3722,Tight Beets,1223 -3723,Thirsty Carrots,1223 -3724,Dangerous Chicken,1224 -3725,Blue Chicken,1224 -3726,Perfect Bread,1225 -3727,Silent Mushrooms,1225 -3728,Grubby Bread,1226 -3729,Nosy Greens,1227 -3730,Excited Mushrooms,1227 -3731,Lovely Fish,1227 -3732,Uneven Carrots,1227 -3733,Bright Carrots,1228 -3734,Tricky Carrots,1228 -3735,Hot Beef,1229 -3736,Modern Chicken,1230 -3737,Encouraging Apples,1230 -3738,Many Fruit,1231 -3739,Round Greens,1231 -3740,Squealing Pretzel,1232 -3741,Ugly Pretzel,1233 -3742,Purring Chicken,1233 -3743,M Greens,1234 -3744,Nervous Carrots,1234 -3745,Successful Chicken,1235 -3746,Angry Chicken,1235 -3747,Foolish Bread,1235 -3748,Cuddly Fish,1235 -3749,Excited Honey,1235 -3750,Few Honey,1236 -3751,Kickin' Honey,1236 -3752,Chilly Bread,1236 -3753,Frantic Bread,1236 -3754,Hollow Beef,1237 -3755,Cheesy Apples,1237 -3756,Excited Bread,1237 -3757,Gorgeous Burrito,1237 -3758,Quaint Burrito,1238 -3759,Homeless Fruit,1238 -3760,Giant Beets,1239 -3761,Colossal Greens,1239 -3762,Lucky Fruit,1239 -3763,Dull Fish,1240 -3764,Beautiful Greens,1240 -3765,Rotten Apples,1240 -3766,Sore Honey,1240 -3767,Relieved Chicken,1241 -3768,Modern Bread,1241 -3769,Hilarious Chicken,1241 -3770,Zany Burrito,1241 -3771,Panicky Pretzel,1242 -3772,Melted Fruit,1242 -3773,Itchy Beets,1242 -3774,Fluffy Mushrooms,1242 -3775,Stale Burrito,1242 -3776,Stupendous Beef,1243 -3777,Delicious Beets,1243 -3778,Righteous Fish,1244 -3779,Mammoth Apples,1244 -3780,Strong Bread,1244 -3781,Magnificent Pretzel,1244 -3782,Shrill Apples,1244 -3783,Ashamed Bread,1245 -3784,Floppy Beets,1245 -3785,Breezy Fish,1245 -3786,Solid Honey,1245 -3787,Thoughtful Apples,1246 -3788,Bad Mushrooms,1247 -3789,Anxious Fruit,1247 -3790,Encouraging Honey,1247 -3791,Immense Carrots,1247 -3792,Hungry Fish,1248 -3793,Light Beets,1248 -3794,– Honey,1248 -3795,Ripe Fish,1248 -3796,Eager Fish,1248 -3797,Slimy Fish,1249 -3798,S Fruit,1249 -3799,Energetic Mushrooms,1249 -3800,Soft Mushrooms,1250 -3801,Black Mushrooms,1250 -3802,Stingy Mushrooms,1250 -3803,Helpless Burrito,1251 -3804,Splendid Beef,1252 -3805,Stale Chicken,1252 -3806,Lively Beef,1253 -3807,Loose Honey,1253 -3808,Ordinary Greens,1254 -3809,Tasty Chicken,1254 -3810,Shaky Fruit,1254 -3811,Afraid Mushrooms,1254 -3812,Nervous Mushrooms,1255 -3813,Shallow Carrots,1255 -3814,Dangerous Bread,1255 -3815,Miniature Apples,1255 -3816,Odd Fruit,1256 -3817,Smiling Pretzel,1256 -3818,Relieved Carrots,1256 -3819,Sad Beef,1257 -3820,High Burrito,1258 -3821,Lazy Beets,1258 -3822,Thoughtful Fruit,1258 -3823,Hilarious Mushrooms,1259 -3824,Shrill Pretzel,1260 -3825,Cuddly Mushrooms,1260 -3826,Troubled Apples,1260 -3827,Long Mushrooms,1260 -3828,Envious Burrito,1260 -3829,Moist Fish,1261 -3830,Charming Fish,1261 -3831,Square Chicken,1261 -3832,Perfect Mushrooms,1261 -3833,Hilarious Burrito,1261 -3834,Mysterious Bread,1262 -3835,Vivacious Bread,1262 -3836,Average Greens,1263 -3837,Tame Greens,1264 -3838,Vast Fish,1264 -3839,Petite Burrito,1264 -3840,Faithful Chicken,1264 -3841,Rapid Mushrooms,1265 -3842,Eager Beets,1266 -3843,Blue Fish,1267 -3844,Loose Pretzel,1267 -3845,Salty Bread,1268 -3846,Tough Honey,1268 -3847,Heavy Greens,1269 -3848,Tired Fruit,1269 -3849,Big Beets,1269 -3850,Depressed Greens,1269 -3851,Round Beets,1270 -3852,Righteous Fruit,1270 -3853,Sour Burrito,1270 -3854,Comfortable Greens,1271 -3855,Evil Fish,1271 -3856,Witty Beef,1271 -3857,Grieving Burrito,1271 -3858,Nutty Pretzel,1272 -3859,Voiceless Chicken,1272 -3860,Square Honey,1273 -3861,Combative Pretzel,1273 -3862,Pretty Beef,1273 -3863,Good Greens,1273 -3864,Slow Burrito,1273 -3865,Disturbed Mushrooms,1274 -3866,Successful Honey,1274 -3867,Kind Beef,1274 -3868,Sad Beef,1274 -3869,Horrible Mushrooms,1275 -3870,Scary Bread,1275 -3871,Wicked Mushrooms,1275 -3872,Great Pretzel,1275 -3873,Few Honey,1276 -3874,Nutty Beef,1276 -3875,Faithful Chicken,1277 -3876,Pleasant Apples,1277 -3877,Fluffy Mushrooms,1277 -3878,Cool Chicken,1277 -3879,Prickly Bread,1278 -3880,Cool Fish,1278 -3881,Itchy Greens,1278 -3882,Light Apples,1278 -3883,Elated Burrito,1278 -3884,Jealous Greens,1279 -3885,Nosy Fish,1279 -3886,Bitter Honey,1279 -3887,Long Carrots,1279 -3888,Light Carrots,1279 -3889,Uneven Carrots,1280 -3890,Big Beets,1281 -3891,Sharp Beets,1281 -3892,Straight Beets,1281 -3893,Icy Honey,1281 -3894,Boiling Honey,1281 -3895,Edible Burrito,1282 -3896,New Beef,1282 -3897,Rare Mushrooms,1283 -3898,Small Mushrooms,1283 -3899,Incredible Pretzel,1283 -3900,Filthy Mushrooms,1284 -3901,Great Pretzel,1284 -3902,Wooden Mushrooms,1284 -3903,Dizzy Chicken,1285 -3904,Perfect Pretzel,1285 -3905,Heavy Carrots,1286 -3906,Testy Carrots,1287 -3907,Yummy Bread,1287 -3908,Hushed Beets,1288 -3909,Upset Apples,1288 -3910,Weary Beets,1288 -3911,Icy Mushrooms,1289 -3912,Quiet Beets,1289 -3913,Delightful Apples,1289 -3914,Terrible Bread,1290 -3915,Precious Pretzel,1290 -3916,Jealous Pretzel,1291 -3917,Pretty Honey,1292 -3918,Chilly Beef,1292 -3919,Thundering Pretzel,1292 -3920,Sticky Fruit,1292 -3921,Jealous Carrots,1292 -3922,Rapid Apples,1293 -3923,Great Apples,1293 -3924,Incredible Fish,1293 -3925,Boring Fruit,1293 -3926,Sour Bread,1293 -3927,Quiet Burrito,1294 -3928,Boom-town Apples,1294 -3929,Relieved Mushrooms,1294 -3930,Low Fruit,1294 -3931,Agreeable Chicken,1294 -3932,Courageous Carrots,1295 -3933,Thoughtless Carrots,1295 -3934,Grieving Apples,1295 -3935,Fluffy Carrots,1295 -3936,Dangerous Greens,1295 -3937,Vivacious Mushrooms,1296 -3938,Faint Chicken,1296 -3939,Cool Bread,1296 -3940,Healthy Carrots,1296 -3941,Brief Mushrooms,1296 -3942,Loud Honey,1297 -3943,Dangerous Bread,1297 -3944,Ugliest Beef,1298 -3945,Vivacious Honey,1298 -3946,Panicky Bread,1298 -3947,Salty Apples,1298 -3948,Early Beets,1299 -3949,Mysterious Beets,1299 -3950,Pickled Fruit,1299 -3951,Raspy Beef,1299 -3952,Calm Greens,1300 -3953,Strong Chicken,1300 -3954,Courageous Mushrooms,1300 -3955,Successful Burrito,1301 -3956,Narrow Pretzel,1302 -3957,Little Beef,1302 -3958,Fat Beets,1302 -3959,Greasy Bread,1303 -3960,Mysterious Carrots,1303 -3961,Incredible Honey,1303 -3962,Shaggy Mushrooms,1303 -3963,Cool Fruit,1304 -3964,Depressed Fish,1305 -3965,Grand Honey,1305 -3966,Encouraging Burrito,1305 -3967,Steady Bread,1306 -3968,Faithful Beef,1306 -3969,Stale Bread,1306 -3970,Vivacious Bread,1306 -3971,Loose Apples,1307 -3972,Early Pretzel,1307 -3973,Wide Apples,1307 -3974,Cuddly Mushrooms,1307 -3975,Itchy Beets,1308 -3976,Black Bread,1308 -3977,Rapid Chicken,1308 -3978,Low Pretzel,1308 -3979,Tasty Pretzel,1309 -3980,Grubby Beef,1310 -3981,Bright Honey,1310 -3982,Grumpy Bread,1310 -3983,Nervous Honey,1310 -3984,Fair Apples,1310 -3985,Tasty Carrots,1311 -3986,Loose Honey,1311 -3987,Great Beef,1311 -3988,Nutty Fruit,1312 -3989,Stupendous Apples,1312 -3990,Witty Fruit,1312 -3991,Pleasant Burrito,1312 -3992,Better Fruit,1313 -3993,Big Carrots,1313 -3994,Enthusiastic Honey,1313 -3995,Robust Mushrooms,1313 -3996,Fast Beef,1313 -3997,– Beets,1314 -3998,Weak Carrots,1314 -3999,Loud Beets,1314 -4000,Curved Beef,1314 -4001,Solid Mushrooms,1315 -4002,Amused Bread,1315 -4003,Screeching Apples,1315 -4004,Weak Apples,1315 -4005,Bright Bread,1316 -4006,Numerous Fish,1316 -4007,Empty Honey,1316 -4008,Salty Apples,1316 -4009,Awful Burrito,1317 -4010,Fair Bread,1317 -4011,Helpless Bread,1317 -4012,Defiant Beets,1317 -4013,Fat Fish,1318 -4014,Funny Bread,1318 -4015,Tense Burrito,1319 -4016,Filthy Chicken,1320 -4017,Curved Greens,1320 -4018,Curly Bread,1321 -4019,Brave Beets,1321 -4020,R Pretzel,1321 -4021,Fine Beets,1322 -4022,Greasy Beef,1323 -4023,Long Mushrooms,1323 -4024,Orange Beef,1324 -4025,Delightful Honey,1324 -4026,Roasted Apples,1324 -4027,Greasy Burrito,1324 -4028,Kickin' Mushrooms,1324 -4029,Bright Mushrooms,1325 -4030,Harsh Fish,1325 -4031,Ancient Burrito,1326 -4032,Dizzy Apples,1326 -4033,Bad Greens,1326 -4034,Fast Pretzel,1327 -4035,Screeching Chicken,1328 -4036,Greasy Fish,1328 -4037,Wide-eyed Greens,1328 -4038,Huge Carrots,1328 -4039,Testy Pretzel,1329 -4040,Vast Carrots,1329 -4041,Many Bread,1329 -4042,Cold Chicken,1329 -4043,Boom-town Beef,1330 -4044,Helpless Beets,1331 -4045,Frantic Mushrooms,1331 -4046,Sour Beets,1331 -4047,Gigantic Carrots,1331 -4048,Relieved Fruit,1332 -4049,Miniature Fish,1332 -4050,Fair Beef,1333 -4051,Witty Beef,1333 -4052,Testy Honey,1334 -4053,Better Pretzel,1334 -4054,Swift Bread,1334 -4055,Nice Fruit,1335 -4056,Whispering Beets,1336 -4057,Cuddly Bread,1336 -4058,Fine Fish,1336 -4059,Uptight Burrito,1336 -4060,Quaint Beets,1337 -4061,Jolly Mushrooms,1337 -4062,Handsome Apples,1337 -4063,Grubby Pretzel,1337 -4064,Blue Apples,1338 -4065,Tight Beef,1338 -4066,Ordinary Beef,1338 -4067,Lazy Burrito,1338 -4068,Many Beets,1338 -4069,R Beef,1339 -4070,Nom nom Greens,1340 -4071,Icy Apples,1340 -4072,Relieved Chicken,1340 -4073,Dangerous Apples,1340 -4074,Watery Fish,1340 -4075,Lovely Fruit,1341 -4076,Pleasant Beef,1341 -4077,Thundering Greens,1342 -4078,Roasted Beef,1343 -4079,Breezy Mushrooms,1343 -4080,Hurt Mushrooms,1344 -4081,Modern Greens,1344 -4082,Mysterious Carrots,1345 -4083,Victorious Carrots,1346 -4084,Orange Honey,1346 -4085,Nutty Beef,1347 -4086,Perfect Greens,1347 -4087,Mighty Pretzel,1347 -4088,Frantic Carrots,1347 -4089,Silky Carrots,1348 -4090,Lonely Apples,1349 -4091,Jealous Carrots,1349 -4092,Slimy Burrito,1350 -4093,Creepy Beets,1350 -4094,Scattered Chicken,1350 -4095,Victorious Pretzel,1350 -4096,Enthusiastic Beef,1351 -4097,Faint Honey,1351 -4098,Lucky Burrito,1351 -4099,Purring Apples,1351 -4100,Skinny Fish,1351 -4101,Funny Beets,1352 -4102,Salty Chicken,1352 -4103,Depressed Burrito,1353 -4104,Grumpy Beef,1353 -4105,Smooth Honey,1353 -4106,Shaggy Burrito,1354 -4107,Fine Fish,1354 -4108,Eager Greens,1355 -4109,Wasteful Beef,1355 -4110,Nutty Burrito,1356 -4111,Boom-town Mushrooms,1356 -4112,Skinny Bread,1356 -4113,Dangerous Greens,1356 -4114,Charming Burrito,1357 -4115,Pretty Honey,1357 -4116,Ugly Beets,1358 -4117,Skinny Pretzel,1358 -4118,Smooth Fish,1358 -4119,Whispering Apples,1358 -4120,Horrible Mushrooms,1359 -4121,Mute Beets,1359 -4122,Rapid Pretzel,1359 -4123,Black Greens,1359 -4124,Mute Beets,1359 -4125,Spicy Carrots,1360 -4126,Ancient Fish,1360 -4127,Skinny Mushrooms,1360 -4128,Sore Apples,1360 -4129,Uptight Honey,1361 -4130,Cruel Burrito,1361 -4131,Grieving Beef,1361 -4132,Tricky Honey,1361 -4133,Screeching Bread,1361 -4134,Swift Apples,1362 -4135,Determined Mushrooms,1362 -4136,Disgusted Fish,1363 -4137,Healthy Mushrooms,1363 -4138,Yellow Burrito,1364 -4139,Cruel Greens,1365 -4140,Defiant Honey,1365 -4141,Perfect Greens,1365 -4142,Broad Fruit,1365 -4143,Smooth Fish,1365 -4144,Comfortable Pretzel,1366 -4145,Blue Honey,1366 -4146,Wide Honey,1366 -4147,Selfish Apples,1367 -4148,Brief Greens,1367 -4149,Tense Honey,1367 -4150,Colossal Burrito,1367 -4151,Tight Carrots,1368 -4152,Nosy Mushrooms,1368 -4153,Big Beets,1369 -4154,Fantastic Honey,1369 -4155,– Beef,1369 -4156,Fuzzy Mushrooms,1370 -4157,Fresh Greens,1370 -4158,Shivering Fruit,1370 -4159,Cool Honey,1371 -4160,Prickly Beef,1371 -4161,Energetic Chicken,1371 -4162,Healthy Fish,1371 -4163,Loud Fish,1371 -4164,Fluffy Burrito,1372 -4165,Thoughtful Pretzel,1372 -4166,Mammoth Beets,1372 -4167,Many Pretzel,1372 -4168,Helpless Fruit,1372 -4169,Ashamed Beets,1373 -4170,Arrogant Fish,1373 -4171,Nosy Apples,1373 -4172,Fuzzy Honey,1373 -4173,Scrawny Greens,1373 -4174,Tame Mushrooms,1374 -4175,Average Fish,1374 -4176,Spotty Pretzel,1374 -4177,Obedient Apples,1374 -4178,Successful Carrots,1375 -4179,Frail Greens,1375 -4180,Energetic Carrots,1376 -4181,Grumpy Chicken,1376 -4182,Sour Beets,1376 -4183,Rare Pretzel,1377 -4184,Kind Apples,1377 -4185,Relieved Chicken,1377 -4186,Envious Greens,1377 -4187,Green Apples,1377 -4188,Wicked Fish,1378 -4189,Mysterious Greens,1378 -4190,Slow Fruit,1378 -4191,Quickest Carrots,1379 -4192,Wasteful Burrito,1380 -4193,Spotty Pretzel,1380 -4194,Homeless Mushrooms,1380 -4195,Tasty Burrito,1381 -4196,Defiant Honey,1382 -4197,Magnificent Greens,1382 -4198,High Beef,1383 -4199,Depressed Fish,1383 -4200,Sour Fruit,1384 -4201,Splendid Beets,1384 -4202,Mammoth Beef,1384 -4203,Arrogant Greens,1384 -4204,Cooing Burrito,1384 -4205,Boring Beets,1385 -4206,Solid Apples,1386 -4207,Round Fish,1386 -4208,Purple Beets,1386 -4209,Annoyed Beets,1386 -4210,Flaky Fruit,1386 -4211,Jealous Honey,1387 -4212,Embarrassed Fish,1387 -4213,Friendly Beef,1387 -4214,Rare Bread,1387 -4215,Curly Beets,1388 -4216,Obedient Burrito,1388 -4217,Uptight Beets,1388 -4218,Tasteless Mushrooms,1389 -4219,Scary Pretzel,1389 -4220,Helpful Beef,1389 -4221,Rare Burrito,1390 -4222,Magnificent Fish,1391 -4223,Jittery Mushrooms,1391 -4224,Large Apples,1392 -4225,Round Greens,1392 -4226,Green Greens,1392 -4227,Panicky Pretzel,1392 -4228,Weak Beef,1393 -4229,Great Fish,1393 -4230,Immense Greens,1393 -4231,Hot Pretzel,1393 -4232,Spicy Fruit,1394 -4233,Boom-town Pretzel,1394 -4234,Sad Fruit,1394 -4235,Cheesy Greens,1394 -4236,Kind Mushrooms,1394 -4237,Lovely Honey,1395 -4238,Tame Chicken,1395 -4239,Wasteful Mushrooms,1395 -4240,Shrill Bread,1395 -4241,Fat Apples,1395 -4242,Tasty Mushrooms,1396 -4243,Hot Fruit,1396 -4244,Giant Greens,1396 -4245,Sweet Apples,1397 -4246,Weak Fish,1397 -4247,Hard Fish,1398 -4248,Ugliest Beef,1398 -4249,Tasty Apples,1398 -4250,Steady Greens,1399 -4251,Huge Chicken,1399 -4252,Beautiful Beef,1399 -4253,Resonant Fruit,1399 -4254,Sad Beets,1399 -4255,Tiny Chicken,1400 -4256,Nice Honey,1400 -4257,Damp Honey,1400 -4258,Plastic Fruit,1400 -4259,Melodic Honey,1401 -4260,Outrageous Burrito,1401 -4261,Itchy Greens,1401 -4262,Odd Apples,1401 -4263,Moist Carrots,1402 -4264,Robust Fruit,1402 -4265,Smiling Beets,1402 -4266,Huge Mushrooms,1402 -4267,Tender Burrito,1403 -4268,Whispering Honey,1403 -4269,Nosy Pretzel,1403 -4270,Frightened Greens,1403 -4271,Petite Beets,1404 -4272,Flaky Apples,1404 -4273,Obedient Honey,1404 -4274,Screeching Beets,1405 -4275,Wet Carrots,1405 -4276,Boring Honey,1405 -4277,Roasted Beef,1405 -4278,Steady Bread,1405 -4279,Straight Mushrooms,1406 -4280,Determined Carrots,1407 -4281,Fuzzy Bread,1407 -4282,Worried Burrito,1407 -4283,Colossal Mushrooms,1408 -4284,Tasteless Pretzel,1408 -4285,Young Honey,1409 -4286,Combative Honey,1410 -4287,Thirsty Chicken,1410 -4288,Curved Greens,1410 -4289,Old Honey,1410 -4290,Puny Fish,1410 -4291,Nice Fish,1411 -4292,Great Pretzel,1411 -4293,Stingy Chicken,1411 -4294,Brief Beef,1411 -4295,Mighty Honey,1411 -4296,Obedient Apples,1412 -4297,Steady Pretzel,1413 -4298,Rare Mushrooms,1413 -4299,Precious Fruit,1414 -4300,Sweet Fish,1414 -4301,Rotten Fish,1414 -4302,Dull Fish,1415 -4303,Spicy Mushrooms,1415 -4304,Silky Chicken,1416 -4305,Melodic Burrito,1417 -4306,Crazy Mushrooms,1417 -4307,Thundering Burrito,1418 -4308,Juicy Fish,1418 -4309,Flaky Chicken,1419 -4310,Spicy Fruit,1419 -4311,Empty Beef,1419 -4312,Hot Beets,1420 -4313,Prickly Carrots,1420 -4314,Envious Chicken,1420 -4315,Dirty Bread,1421 -4316,Flat Chicken,1422 -4317,Brief Carrots,1422 -4318,Ill Carrots,1422 -4319,Sad Carrots,1423 -4320,Silent Carrots,1423 -4321,Soft Fish,1424 -4322,Dirty Apples,1424 -4323,Chilly Fruit,1424 -4324,Scrawny Carrots,1424 -4325,Jolly Pretzel,1424 -4326,Tiny Chicken,1425 -4327,Red Greens,1425 -4328,Moaning Burrito,1426 -4329,Pretty Beef,1426 -4330,Numerous Fish,1426 -4331,Arrogant Beef,1426 -4332,Clumsy Fish,1426 -4333,Pickled Greens,1427 -4334,Defiant Mushrooms,1427 -4335,Helpful Apples,1427 -4336,Precious Greens,1427 -4337,Straight Beets,1427 -4338,Funny Fish,1428 -4339,Witty Fruit,1428 -4340,Frail Greens,1429 -4341,Frail Fish,1429 -4342,Plain Bread,1430 -4343,Gorgeous Honey,1430 -4344,Thirsty Beets,1431 -4345,Whispering Carrots,1431 -4346,S Burrito,1432 -4347,Clumsy Carrots,1433 -4348,Savory Carrots,1433 -4349,Floppy Beef,1434 -4350,Grieving Carrots,1434 -4351,Lazy Apples,1435 -4352,Fine Apples,1435 -4353,Ancient Apples,1435 -4354,Bad Chicken,1435 -4355,Awful Honey,1436 -4356,Sad Beef,1436 -4357,Immense Apples,1436 -4358,Jittery Greens,1436 -4359,Boom-town Beef,1436 -4360,Zany Beef,1437 -4361,Lazy Fish,1437 -4362,Weak Beets,1438 -4363,Brave Carrots,1439 -4364,Many Mushrooms,1439 -4365,Tame Apples,1439 -4366,Giant Apples,1439 -4367,Shrill Pretzel,1440 -4368,Huge Fruit,1440 -4369,Boom-town Pretzel,1440 -4370,Tart Greens,1440 -4371,Numerous Honey,1440 -4372,Steep Beets,1441 -4373,Eager Burrito,1441 -4374,Grand Burrito,1441 -4375,Slow Apples,1441 -4376,Nervous Bread,1441 -4377,Faint Pretzel,1442 -4378,Ordinary Honey,1442 -4379,Victorious Greens,1442 -4380,Slippery Pretzel,1442 -4381,Average Greens,1443 -4382,Thundering Burrito,1443 -4383,Hissing Carrots,1443 -4384,Shivering Apples,1443 -4385,Mammoth Beef,1443 -4386,Wonderful Pretzel,1444 -4387,Relieved Pretzel,1444 -4388,Silky Beets,1444 -4389,Happy Fruit,1444 -4390,Curved Mushrooms,1444 -4391,Slimy Apples,1445 -4392,Dirty Fish,1445 -4393,Miniature Honey,1445 -4394,Charming Honey,1445 -4395,Clumsy Apples,1446 -4396,Savory Honey,1446 -4397,Cruel Chicken,1447 -4398,Lazy Beets,1447 -4399,Righteous Bread,1448 -4400,Strong Honey,1448 -4401,Straight Chicken,1448 -4402,Hurt Fruit,1448 -4403,Moaning Fruit,1448 -4404,Loud Pretzel,1449 -4405,Sad Greens,1449 -4406,Quick Fish,1449 -4407,Nosy Carrots,1449 -4408,Nasty Bread,1450 -4409,Fat Greens,1451 -4410,Lively Apples,1451 -4411,Worried Mushrooms,1452 -4412,R Carrots,1452 -4413,Jumpin' Pretzel,1452 -4414,Hard Chicken,1452 -4415,Late Apples,1453 -4416,Confused Bread,1454 -4417,Tall Burrito,1454 -4418,Ill Chicken,1454 -4419,Vivacious Beef,1454 -4420,Shaky Apples,1454 -4421,Nosy Fruit,1455 -4422,Fair Chicken,1455 -4423,Great Honey,1455 -4424,Raspy Bread,1455 -4425,Nice Fish,1455 -4426,Fine Bread,1456 -4427,Nervous Beef,1456 -4428,– Mushrooms,1456 -4429,Pretty Honey,1456 -4430,Heavy Fish,1457 -4431,Evil Apples,1457 -4432,Damp Carrots,1458 -4433,Broad Burrito,1458 -4434,Dull Beef,1458 -4435,Enthusiastic Fruit,1458 -4436,Foolish Fish,1459 -4437,Silent Chicken,1459 -4438,Silent Beef,1459 -4439,Old Chicken,1460 -4440,Blue Chicken,1461 -4441,Silly Pretzel,1461 -4442,Colossal Fruit,1461 -4443,Husky Greens,1461 -4444,Mysterious Chicken,1462 -4445,Quick Beef,1462 -4446,Mute Greens,1462 -4447,Filthy Mushrooms,1462 -4448,Savory Carrots,1463 -4449,Stingy Fruit,1464 -4450,Annoyed Mushrooms,1465 -4451,Greasy Burrito,1465 -4452,Tame Apples,1465 -4453,Confused Fruit,1466 -4454,Healthy Pretzel,1466 -4455,Stale Fruit,1467 -4456,Combative Fish,1467 -4457,Hard Mushrooms,1467 -4458,Nom nom Bread,1467 -4459,Thirsty Greens,1467 -4460,– Mushrooms,1468 -4461,Combative Chicken,1469 -4462,Proud Fruit,1469 -4463,Petite Beets,1470 -4464,Stingy Pretzel,1470 -4465,Anxious Fish,1471 -4466,Mysterious Burrito,1471 -4467,Greasy Burrito,1471 -4468,Striped Mushrooms,1472 -4469,Delicious Fruit,1472 -4470,Tan Carrots,1472 -4471,Delightful Honey,1472 -4472,Odd Pretzel,1473 -4473,Cuddly Fish,1474 -4474,Melted Beef,1474 -4475,New Chicken,1474 -4476,Shaky Bread,1474 -4477,Thundering Chicken,1474 -4478,Gentle Greens,1475 -4479,Robust Greens,1475 -4480,Uptight Burrito,1476 -4481,Arrogant Carrots,1476 -4482,Sweet Carrots,1476 -4483,Giant Mushrooms,1477 -4484,Envious Beets,1477 -4485,Depressed Carrots,1477 -4486,Savory Mushrooms,1477 -4487,Dry Beets,1478 -4488,Damp Chicken,1478 -4489,Long Chicken,1479 -4490,High Apples,1479 -4491,Fine Fish,1480 -4492,Splendid Mushrooms,1480 -4493,Straight Apples,1480 -4494,Helpless Pretzel,1480 -4495,Fierce Mushrooms,1481 -4496,Confused Mushrooms,1481 -4497,Comfortable Honey,1481 -4498,Better Pretzel,1481 -4499,Quick Fish,1482 -4500,Comfortable Fish,1482 -4501,New Chicken,1482 -4502,Small Fruit,1483 -4503,Helpless Honey,1483 -4504,Floppy Chicken,1484 -4505,Healthy Beef,1485 -4506,Combative Chicken,1485 -4507,Tense Fish,1485 -4508,Nasty Pretzel,1486 -4509,Terrible Bread,1486 -4510,Tricky Burrito,1486 -4511,Whispering Burrito,1486 -4512,Weary Beets,1487 -4513,Evil Honey,1488 -4514,Big Apples,1488 -4515,Cruel Mushrooms,1488 -4516,Vivacious Carrots,1488 -4517,Uneven Beef,1489 -4518,Frail Carrots,1490 -4519,Quaint Pretzel,1490 -4520,Frightened Beets,1490 -4521,Giant Apples,1490 -4522,Fantastic Mushrooms,1490 -4523,Repulsive Chicken,1491 -4524,Husky Fish,1491 -4525,Breezy Honey,1491 -4526,Hilarious Burrito,1491 -4527,Silky Fruit,1492 -4528,Harsh Fruit,1492 -4529,Thoughtful Burrito,1492 -4530,Boring Pretzel,1492 -4531,Fierce Beets,1493 -4532,Lazy Fruit,1493 -4533,Dizzy Fish,1493 -4534,Calm Mushrooms,1493 -4535,Nom nom Apples,1493 -4536,Heavy Greens,1494 -4537,Curved Beets,1494 -4538,Scrumptious Mushrooms,1495 -4539,Frail Fish,1496 -4540,Tender Beef,1496 -4541,Healthy Burrito,1496 -4542,Obnoxious Mushrooms,1496 -4543,Modern Bread,1497 -4544,M Burrito,1498 -4545,Harsh Fish,1498 -4546,Disturbed Honey,1498 -4547,Grand Beef,1498 -4548,Angry Greens,1498 -4549,Mighty Beef,1499 -4550,Whispering Fish,1499 -4551,Strong Honey,1500 -4552,Tasteless Fruit,1501 -4553,Jolly Apples,1502 -4554,Ugliest Fruit,1503 -4555,Delightful Beef,1503 -4556,Witty Bread,1503 -4557,Yellow Fruit,1503 -4558,Flaky Bread,1504 -4559,Funny Beef,1505 -4560,Harsh Greens,1505 -4561,Big Fish,1505 -4562,Nutty Mushrooms,1505 -4563,Late Beef,1505 -4564,Troubled Chicken,1506 -4565,Deep Chicken,1507 -4566,Stupendous Pretzel,1507 -4567,Scary Bread,1507 -4568,Scattered Beets,1508 -4569,Outrageous Bread,1508 -4570,Plastic Pretzel,1509 -4571,Little Beef,1509 -4572,Anxious Greens,1510 -4573,Gigantic Pretzel,1511 -4574,Swift Honey,1511 -4575,Bright Honey,1511 -4576,Narrow Pretzel,1511 -4577,Bumpy Fruit,1511 -4578,Cuddly Chicken,1512 -4579,Outrageous Apples,1512 -4580,Tiny Honey,1512 -4581,Spotty Burrito,1512 -4582,M Honey,1512 -4583,Late Fish,1513 -4584,Icy Greens,1514 -4585,Dry Mushrooms,1514 -4586,Many Apples,1514 -4587,Average Beets,1515 -4588,Broad Beef,1515 -4589,Clumsy Beets,1515 -4590,Selfish Beef,1516 -4591,Straight Fruit,1516 -4592,Vivacious Mushrooms,1516 -4593,Ratty Chicken,1516 -4594,Fuzzy Apples,1517 -4595,Ashamed Beef,1517 -4596,Massive Honey,1517 -4597,Delightful Greens,1517 -4598,Greasy Beets,1518 -4599,Many Burrito,1518 -4600,Scattered Pretzel,1518 -4601,Striped Beets,1518 -4602,Ordinary Fish,1519 -4603,Broad Chicken,1520 -4604,Faithful Chicken,1520 -4605,Small Fish,1520 -4606,Nasty Apples,1521 -4607,Swift Bread,1521 -4608,Evil Pretzel,1522 -4609,S Burrito,1522 -4610,Stale Mushrooms,1522 -4611,Great Beef,1523 -4612,Incredible Fish,1524 -4613,Melodic Burrito,1525 -4614,Quiet Fish,1525 -4615,Salty Carrots,1526 -4616,Robust Beets,1527 -4617,Dirty Bread,1527 -4618,Hungry Carrots,1528 -4619,R Beets,1528 -4620,Good Fish,1529 -4621,Elated Fruit,1529 -4622,Mysterious Burrito,1529 -4623,Round Fish,1530 -4624,Crazy Mushrooms,1530 -4625,Tasteless Beets,1530 -4626,Faint Burrito,1530 -4627,Ratty Carrots,1530 -4628,Round Greens,1531 -4629,Raspy Apples,1531 -4630,Spotty Apples,1531 -4631,Spicy Fruit,1532 -4632,Confused Beef,1532 -4633,Ashamed Beets,1532 -4634,Damp Fruit,1533 -4635,Square Fish,1533 -4636,Shrill Apples,1533 -4637,Smooth Chicken,1533 -4638,Kind Mushrooms,1533 -4639,Fat Fish,1534 -4640,Great Apples,1534 -4641,Determined Fruit,1534 -4642,Kickin' Honey,1534 -4643,Rainy Pretzel,1534 -4644,Immense Fruit,1535 -4645,Steep Mushrooms,1535 -4646,Broken Pretzel,1535 -4647,Rare Carrots,1535 -4648,Arrogant Beets,1536 -4649,Striped Fish,1537 -4650,Uptight Burrito,1537 -4651,Frightened Chicken,1537 -4652,Beautiful Chicken,1537 -4653,Dull Apples,1537 -4654,Scrawny Chicken,1538 -4655,Wide Beef,1538 -4656,Quick Mushrooms,1538 -4657,Ugly Beef,1538 -4658,Helpful Mushrooms,1539 -4659,Cold Chicken,1539 -4660,Prickly Apples,1539 -4661,Juicy Fish,1539 -4662,Obedient Honey,1539 -4663,Confused Greens,1540 -4664,Cheerful Fruit,1540 -4665,Puny Chicken,1540 -4666,Spotty Mushrooms,1540 -4667,Scrumptious Carrots,1540 -4668,Weak Fruit,1541 -4669,Many Honey,1541 -4670,Edible Greens,1541 -4671,Scary Beets,1542 -4672,Loose Mushrooms,1543 -4673,Amused Carrots,1544 -4674,Righteous Fruit,1544 -4675,– Burrito,1545 -4676,Plastic Apples,1545 -4677,Lucky Fish,1545 -4678,Energetic Honey,1545 -4679,Arrogant Greens,1546 -4680,Tiny Beef,1546 -4681,Weak Burrito,1546 -4682,Fierce Pretzel,1546 -4683,Happy Burrito,1547 -4684,Scary Bread,1547 -4685,Cool Apples,1547 -4686,Strong Beef,1548 -4687,Scattered Mushrooms,1548 -4688,Smiling Honey,1548 -4689,Handsome Beef,1548 -4690,Prickly Beets,1549 -4691,Sticky Beef,1549 -4692,Massive Beets,1549 -4693,Steep Mushrooms,1550 -4694,Average Pretzel,1550 -4695,Long Carrots,1551 -4696,Enthusiastic Apples,1551 -4697,Boiling Pretzel,1551 -4698,Shrill Greens,1551 -4699,Flaky Greens,1552 -4700,S Burrito,1552 -4701,Hot Bread,1552 -4702,Steady Beets,1553 -4703,Ugliest Greens,1553 -4704,Sore Burrito,1554 -4705,Cooperative Fish,1554 -4706,Juicy Pretzel,1555 -4707,Creepy Burrito,1555 -4708,Greasy Fruit,1555 -4709,Plain Beets,1555 -4710,Nervous Burrito,1556 -4711,Angry Burrito,1556 -4712,Floppy Burrito,1557 -4713,Scrawny Carrots,1558 -4714,Early Fruit,1558 -4715,Fuzzy Mushrooms,1558 -4716,Troubled Beets,1559 -4717,Resonant Chicken,1560 -4718,Tan Beets,1561 -4719,Tough Apples,1561 -4720,Itchy Burrito,1562 -4721,Funny Bread,1562 -4722,Tired Greens,1562 -4723,R Mushrooms,1563 -4724,Vivacious Pretzel,1563 -4725,Many Burrito,1564 -4726,Slow Honey,1564 -4727,Short Fruit,1565 -4728,Rotten Beets,1565 -4729,Jumpin' Burrito,1566 -4730,Happy Pretzel,1566 -4731,Juicy Carrots,1566 -4732,Calm Carrots,1566 -4733,Kickin' Burrito,1567 -4734,Repulsive Apples,1567 -4735,Tasty Beef,1567 -4736,Tired Fruit,1567 -4737,Wet Bread,1567 -4738,Red Burrito,1568 -4739,Grand Beef,1568 -4740,Combative Fruit,1568 -4741,Early Bread,1568 -4742,Stupendous Bread,1569 -4743,Wooden Greens,1569 -4744,New Greens,1569 -4745,Tan Burrito,1569 -4746,Wicked Carrots,1569 -4747,Upset Honey,1570 -4748,Ill Mushrooms,1570 -4749,Grumpy Fruit,1571 -4750,Kickin' Greens,1571 -4751,Incredible Chicken,1571 -4752,Shallow Bread,1572 -4753,Giant Bread,1572 -4754,Silly Chicken,1573 -4755,Puny Beets,1573 -4756,Arrogant Bread,1573 -4757,Smiling Bread,1573 -4758,Friendly Beef,1574 -4759,Icy Carrots,1574 -4760,Confused Fish,1574 -4761,Funny Burrito,1574 -4762,Straight Honey,1575 -4763,Naughty Beets,1576 -4764,Edible Chicken,1576 -4765,Boring Chicken,1576 -4766,Deafening Greens,1577 -4767,Delicious Mushrooms,1577 -4768,Ratty Burrito,1577 -4769,Spotty Beets,1578 -4770,Cool Beets,1578 -4771,Voiceless Pretzel,1578 -4772,Hungry Fruit,1579 -4773,Moaning Fish,1580 -4774,Dull Carrots,1580 -4775,Agreeable Fruit,1580 -4776,Sad Beets,1580 -4777,Hushed Beets,1581 -4778,Nom nom Burrito,1581 -4779,Old Beef,1581 -4780,Vivacious Bread,1582 -4781,Uneven Greens,1582 -4782,Flaky Greens,1582 -4783,Tasty Beets,1582 -4784,Mammoth Burrito,1582 -4785,Shrill Beef,1583 -4786,Dizzy Bread,1583 -4787,Tight Chicken,1583 -4788,Uneven Beef,1583 -4789,Mammoth Apples,1584 -4790,Purring Chicken,1584 -4791,Enthusiastic Carrots,1585 -4792,Ratty Pretzel,1585 -4793,Awful Beef,1585 -4794,Shaky Burrito,1586 -4795,Striped Apples,1587 -4796,Squealing Chicken,1587 -4797,Tame Honey,1587 -4798,Jolly Honey,1587 -4799,Swift Beets,1588 -4800,Dry Fruit,1588 -4801,Envious Mushrooms,1588 -4802,Tart Pretzel,1588 -4803,Handsome Pretzel,1589 -4804,Afraid Chicken,1589 -4805,Whispering Burrito,1589 -4806,Good Bread,1589 -4807,Disgusted Honey,1589 -4808,Uptight Bread,1590 -4809,Defiant Fruit,1590 -4810,Good Chicken,1591 -4811,Icy Apples,1592 -4812,Fuzzy Bread,1592 -4813,Bumpy Chicken,1593 -4814,Faint Mushrooms,1593 -4815,Gorgeous Fish,1593 -4816,Gigantic Burrito,1594 -4817,Weak Beef,1594 -4818,Testy Carrots,1594 -4819,Curved Greens,1595 -4820,Solid Chicken,1595 -4821,Pickled Bread,1595 -4822,Rainy Burrito,1596 -4823,Comfortable Carrots,1596 -4824,Giant Pretzel,1596 -4825,High Apples,1596 -4826,R Fish,1597 -4827,– Greens,1598 -4828,Uneven Carrots,1598 -4829,Red Greens,1598 -4830,Curved Carrots,1599 -4831,Salty Fruit,1599 -4832,Melted Greens,1599 -4833,Energetic Beets,1599 -4834,Fresh Pretzel,1599 -4835,Yummy Pretzel,1600 -4836,Worried Carrots,1600 -4837,Frail Greens,1600 -4838,Silly Bread,1600 -4839,Miniature Greens,1600 -4840,Mute Honey,1601 -4841,Sharp Beef,1601 -4842,R Apples,1602 -4843,Brief Chicken,1603 -4844,Flat Greens,1604 -4845,Tense Mushrooms,1604 -4846,Tiny Honey,1604 -4847,Horrible Mushrooms,1604 -4848,Magnificent Bread,1605 -4849,Plain Burrito,1605 -4850,Wooden Apples,1605 -4851,Tense Fish,1605 -4852,Brief Mushrooms,1606 -4853,Hurt Chicken,1606 -4854,Ashamed Carrots,1606 -4855,Relieved Greens,1606 -4856,Robust Beef,1606 -4857,Faithful Greens,1607 -4858,Slippery Beets,1607 -4859,Precious Carrots,1607 -4860,Bad Pretzel,1607 -4861,Striped Fruit,1607 -4862,Spicy Bread,1608 -4863,Hissing Burrito,1608 -4864,Frantic Bread,1608 -4865,Faithful Greens,1608 -4866,Gentle Burrito,1608 -4867,Victorious Fruit,1609 -4868,Comfortable Beets,1609 -4869,Delightful Mushrooms,1609 -4870,Hot Apples,1610 -4871,Relieved Beets,1610 -4872,Moaning Greens,1610 -4873,Soft Carrots,1610 -4874,Modern Carrots,1610 -4875,Shallow Greens,1611 -4876,Breezy Pretzel,1611 -4877,Obnoxious Apples,1611 -4878,Anxious Mushrooms,1611 -4879,Nervous Mushrooms,1612 -4880,Short Fruit,1612 -4881,Faint Greens,1612 -4882,Tight Honey,1612 -4883,Grumpy Bread,1613 -4884,Petite Fruit,1613 -4885,Nervous Mushrooms,1614 -4886,Scrumptious Fish,1614 -4887,Roasted Bread,1614 -4888,Depressed Greens,1614 -4889,Juicy Beef,1614 -4890,Lively Honey,1615 -4891,Deep Beef,1615 -4892,Tiny Mushrooms,1615 -4893,Salty Fruit,1616 -4894,Righteous Honey,1617 -4895,Swift Carrots,1618 -4896,Shivering Mushrooms,1618 -4897,Broken Beets,1618 -4898,Cruel Mushrooms,1618 -4899,Vast Fruit,1618 -4900,Small Burrito,1619 -4901,Friendly Beef,1619 -4902,Great Bread,1619 -4903,Yellow Greens,1620 -4904,Whispering Fruit,1621 -4905,Evil Chicken,1621 -4906,Gorgeous Bread,1621 -4907,Disgusted Pretzel,1622 -4908,Boring Mushrooms,1622 -4909,Frail Burrito,1622 -4910,Outrageous Mushrooms,1622 -4911,Jealous Bread,1622 -4912,Mysterious Mushrooms,1623 -4913,Fuzzy Bread,1623 -4914,Cooperative Honey,1623 -4915,Wet Fruit,1623 -4916,Whispering Apples,1624 -4917,Harsh Honey,1624 -4918,Spotty Fruit,1624 -4919,Dangerous Beef,1624 -4920,Odd Carrots,1624 -4921,Savory Burrito,1625 -4922,Purple Beef,1625 -4923,Evil Honey,1626 -4924,Spicy Fruit,1626 -4925,Bright Beets,1627 -4926,Flaky Apples,1627 -4927,Whispering Fish,1627 -4928,Energetic Mushrooms,1627 -4929,Fresh Carrots,1628 -4930,Jealous Fish,1628 -4931,Nervous Beef,1628 -4932,Bad Carrots,1629 -4933,Panicky Beets,1629 -4934,Foolish Fish,1630 -4935,Gigantic Chicken,1631 -4936,Strong Chicken,1631 -4937,Homeless Mushrooms,1631 -4938,Brave Carrots,1631 -4939,Helpful Beef,1631 -4940,Spicy Chicken,1632 -4941,R Mushrooms,1632 -4942,Jittery Mushrooms,1632 -4943,Purple Fruit,1632 -4944,Big Greens,1632 -4945,Straight Chicken,1633 -4946,Handsome Mushrooms,1633 -4947,Mute Bread,1634 -4948,Righteous Beef,1634 -4949,Plastic Beets,1634 -4950,Colossal Beets,1635 -4951,Fuzzy Chicken,1635 -4952,Strange Chicken,1635 -4953,Cheesy Bread,1636 -4954,Plastic Burrito,1636 -4955,Naughty Burrito,1636 -4956,Edible Beets,1636 -4957,Loud Chicken,1637 -4958,Hissing Burrito,1637 -4959,Friendly Fruit,1638 -4960,Cheerful Honey,1638 -4961,Fluffy Fruit,1638 -4962,Fluffy Greens,1638 -4963,Husky Greens,1638 -4964,Raspy Pretzel,1639 -4965,Eager Bread,1639 -4966,Enthusiastic Bread,1640 -4967,Few Fruit,1640 -4968,Husky Chicken,1641 -4969,Odd Pretzel,1641 -4970,Ratty Fish,1642 -4971,Watery Burrito,1642 -4972,Brief Beets,1642 -4973,Dirty Bread,1642 -4974,Tiny Greens,1642 -4975,Hushed Bread,1643 -4976,Loose Fish,1643 -4977,Weak Chicken,1644 -4978,Magnificent Fish,1644 -4979,Greasy Fish,1644 -4980,Silent Apples,1644 -4981,Watery Fish,1644 -4982,Silky Carrots,1645 -4983,Plain Bread,1645 -4984,Perfect Apples,1645 -4985,Delightful Fruit,1645 -4986,Silent Beets,1646 -4987,Quiet Chicken,1646 -4988,Hilarious Bread,1646 -4989,Fantastic Fruit,1646 -4990,Fierce Chicken,1646 -4991,Uneven Fruit,1647 -4992,Hot Greens,1648 -4993,Long Beets,1648 -4994,Funny Apples,1648 -4995,Thirsty Chicken,1648 -4996,Miniature Beef,1649 -4997,Young Fruit,1649 -4998,Swift Pretzel,1649 -4999,Ripe Fish,1649 -5000,Uneven Apples,1650 -5001,Spotty Mushrooms,1650 -5002,Sharp Pretzel,1650 -5003,Hard Greens,1650 -5004,Hot Pretzel,1650 -5005,Ugly Bread,1651 -5006,Fluffy Chicken,1651 -5007,Skinny Honey,1652 -5008,Cheesy Greens,1652 -5009,Flaky Burrito,1652 -5010,Arrogant Beets,1652 -5011,Defeated Honey,1652 -5012,Nutty Fruit,1653 -5013,Good Pretzel,1653 -5014,Icy Mushrooms,1654 -5015,Red Fish,1654 -5016,Afraid Fruit,1654 -5017,Breezy Fruit,1654 -5018,Enthusiastic Mushrooms,1654 -5019,Tough Fish,1655 -5020,Grubby Burrito,1655 -5021,Strange Pretzel,1655 -5022,Thirsty Fruit,1655 -5023,Wide-eyed Apples,1656 -5024,Kickin' Burrito,1657 -5025,Spotty Honey,1657 -5026,Hot Pretzel,1658 -5027,Worried Chicken,1658 -5028,Gentle Bread,1659 -5029,Fast Greens,1659 -5030,Afraid Fish,1659 -5031,Curly Fish,1660 -5032,Embarrassed Beets,1660 -5033,Bad Pretzel,1660 -5034,Silly Fruit,1661 -5035,Loud Bread,1662 -5036,Sore Carrots,1663 -5037,Nutty Fish,1663 -5038,Harsh Burrito,1663 -5039,Rainy Carrots,1663 -5040,Striped Burrito,1664 -5041,Energetic Burrito,1664 -5042,Cheesy Carrots,1665 -5043,Amused Fish,1665 -5044,Curved Pretzel,1665 -5045,Big Carrots,1665 -5046,Confused Fish,1666 -5047,Sad Pretzel,1666 -5048,Wide-eyed Greens,1666 -5049,Fantastic Burrito,1666 -5050,Envious Fish,1667 -5051,Wet Fruit,1667 -5052,Fluffy Pretzel,1667 -5053,Enthusiastic Fish,1667 -5054,Square Burrito,1668 -5055,Silent Apples,1669 -5056,– Bread,1669 -5057,Moist Fruit,1669 -5058,Outrageous Beets,1669 -5059,Silly Mushrooms,1669 -5060,Black Fruit,1670 -5061,Savory Burrito,1671 -5062,Zany Fruit,1671 -5063,Embarrassed Beets,1671 -5064,Ugly Bread,1672 -5065,Horrible Bread,1672 -5066,Handsome Burrito,1672 -5067,Hungry Beets,1672 -5068,Cruel Fish,1673 -5069,Victorious Chicken,1674 -5070,Tart Greens,1674 -5071,Quaint Carrots,1674 -5072,Afraid Greens,1675 -5073,Wasteful Chicken,1675 -5074,Perfect Beef,1676 -5075,Nasty Greens,1676 -5076,Cooing Beef,1676 -5077,Green Beef,1676 -5078,Slippery Pretzel,1676 -5079,Hollow Fruit,1677 -5080,Testy Chicken,1677 -5081,Nasty Fish,1677 -5082,Bitter Greens,1677 -5083,Edible Fruit,1677 -5084,Modern Fish,1678 -5085,Vast Bread,1678 -5086,Outrageous Pretzel,1678 -5087,Calm Beef,1678 -5088,Tiny Greens,1678 -5089,Puny Bread,1679 -5090,Dizzy Apples,1679 -5091,Disgusted Greens,1680 -5092,Grumpy Honey,1680 -5093,Agreeable Carrots,1681 -5094,Fantastic Beef,1681 -5095,Hollow Carrots,1681 -5096,Wet Bread,1681 -5097,Clumsy Apples,1681 -5098,Proud Beets,1682 -5099,Jealous Carrots,1683 -5100,Itchy Beef,1683 -5101,Dry Carrots,1683 -5102,Grieving Fruit,1683 -5103,Melodic Carrots,1683 -5104,Quickest Beets,1684 -5105,Mammoth Burrito,1684 -5106,Combative Pretzel,1685 -5107,Cooperative Pretzel,1685 -5108,Flaky Apples,1685 -5109,Broad Mushrooms,1685 -5110,Deafening Greens,1686 -5111,S Honey,1686 -5112,Envious Apples,1686 -5113,Energetic Honey,1686 -5114,Awful Fruit,1686 -5115,Curved Fruit,1687 -5116,Tiny Honey,1687 -5117,Numerous Burrito,1687 -5118,Funny Apples,1687 -5119,Scrawny Fish,1688 -5120,Skinny Pretzel,1688 -5121,Pleasant Honey,1688 -5122,Robust Fruit,1689 -5123,Squealing Bread,1689 -5124,Scrumptious Fish,1690 -5125,Creepy Apples,1691 -5126,Witty Mushrooms,1692 -5127,Thoughtless Beef,1692 -5128,M Mushrooms,1693 -5129,Repulsive Pretzel,1694 -5130,Breezy Beets,1694 -5131,Tame Chicken,1694 -5132,Floppy Bread,1695 -5133,Tight Chicken,1695 -5134,Hungry Fish,1695 -5135,Rapid Fish,1696 -5136,Round Honey,1696 -5137,Bland Burrito,1696 -5138,Worried Beef,1696 -5139,Quaint Apples,1697 -5140,Thoughtful Apples,1698 -5141,Worried Greens,1698 -5142,Flaky Fruit,1698 -5143,Quickest Bread,1699 -5144,Good Beets,1700 -5145,Jealous Carrots,1700 -5146,Gentle Chicken,1701 -5147,Horrible Chicken,1701 -5148,Straight Carrots,1701 -5149,Shallow Chicken,1701 -5150,Old Bread,1701 -5151,Raspy Greens,1702 -5152,Spicy Chicken,1702 -5153,Elated Burrito,1702 -5154,Worried Carrots,1702 -5155,Rainy Mushrooms,1702 -5156,Successful Chicken,1703 -5157,Clumsy Fruit,1703 -5158,Big Apples,1703 -5159,Encouraging Greens,1703 -5160,Nosy Pretzel,1703 -5161,Nom nom Apples,1704 -5162,Melodic Fish,1704 -5163,Enthusiastic Carrots,1704 -5164,Naughty Apples,1704 -5165,Ancient Bread,1704 -5166,Faithful Honey,1705 -5167,Orange Mushrooms,1705 -5168,Harsh Mushrooms,1706 -5169,Elated Burrito,1706 -5170,Slow Chicken,1706 -5171,Scary Burrito,1706 -5172,Giant Mushrooms,1707 -5173,Silly Fruit,1707 -5174,Tasty Carrots,1707 -5175,Excited Pretzel,1707 -5176,Grubby Greens,1707 -5177,Jittery Pretzel,1708 -5178,Weary Pretzel,1708 -5179,Whispering Beef,1708 -5180,Fantastic Greens,1708 -5181,Early Mushrooms,1709 -5182,Immense Apples,1710 -5183,Tame Pretzel,1710 -5184,Greasy Burrito,1710 -5185,Nervous Mushrooms,1710 -5186,Low Chicken,1711 -5187,Prickly Honey,1711 -5188,Scrumptious Greens,1711 -5189,Narrow Greens,1711 -5190,Jealous Fruit,1711 -5191,Wonderful Honey,1712 -5192,Nosy Honey,1712 -5193,Calm Beef,1712 -5194,Fast Mushrooms,1712 -5195,Cruel Fruit,1713 -5196,Repulsive Beets,1713 -5197,Skinny Fruit,1713 -5198,Ill Mushrooms,1713 -5199,Splendid Chicken,1713 -5200,Embarrassed Beef,1714 -5201,Better Fish,1714 -5202,Bright Burrito,1715 -5203,Sweet Apples,1715 -5204,Stale Beef,1715 -5205,Nervous Beef,1715 -5206,Flat Mushrooms,1716 -5207,Frightened Burrito,1716 -5208,Square Honey,1716 -5209,Funny Beets,1716 -5210,Fat Burrito,1716 -5211,Boiling Pretzel,1717 -5212,High Carrots,1717 -5213,Encouraging Bread,1717 -5214,Thoughtless Burrito,1717 -5215,Hurt Beets,1718 -5216,Obnoxious Chicken,1718 -5217,Energetic Beets,1718 -5218,Puny Beets,1718 -5219,Annoyed Greens,1718 -5220,Fuzzy Carrots,1719 -5221,Jittery Carrots,1719 -5222,Ancient Honey,1719 -5223,Perfect Beets,1719 -5224,Calm Carrots,1719 -5225,Dry Beets,1720 -5226,Melodic Chicken,1720 -5227,Pickled Apples,1720 -5228,Resonant Carrots,1720 -5229,Eager Honey,1721 -5230,Successful Fish,1722 -5231,Quickest Bread,1723 -5232,Scary Mushrooms,1724 -5233,Combative Bread,1724 -5234,Ill Apples,1724 -5235,Dirty Mushrooms,1724 -5236,Ripe Bread,1724 -5237,Mysterious Mushrooms,1725 -5238,Healthy Bread,1726 -5239,Wicked Chicken,1726 -5240,Smooth Carrots,1726 -5241,Harsh Fish,1726 -5242,Puny Apples,1727 -5243,Mute Apples,1727 -5244,Dry Fruit,1727 -5245,Quiet Chicken,1727 -5246,Spicy Honey,1727 -5247,Tall Apples,1728 -5248,Wonderful Honey,1729 -5249,Roasted Carrots,1730 -5250,Pleasant Fruit,1730 -5251,Wicked Mushrooms,1730 -5252,Hurt Carrots,1731 -5253,Salty Greens,1732 -5254,Outrageous Apples,1732 -5255,Pretty Carrots,1732 -5256,Sad Mushrooms,1732 -5257,Evil Fish,1732 -5258,Awful Mushrooms,1733 -5259,Weary Beef,1733 -5260,Robust Carrots,1733 -5261,Fierce Honey,1733 -5262,Small Burrito,1733 -5263,Horrible Beets,1734 -5264,Better Fruit,1735 -5265,Healthy Chicken,1735 -5266,Ill Honey,1735 -5267,Jealous Burrito,1735 -5268,Healthy Mushrooms,1736 -5269,Bright Burrito,1736 -5270,Huge Apples,1736 -5271,Tense Fish,1736 -5272,Repulsive Apples,1737 -5273,– Fruit,1737 -5274,Deafening Burrito,1737 -5275,Squealing Greens,1738 -5276,Nice Bread,1738 -5277,Precious Chicken,1738 -5278,Exuberant Bread,1738 -5279,Cheerful Greens,1739 -5280,Beautiful Bread,1739 -5281,Uptight Chicken,1740 -5282,Crazy Mushrooms,1740 -5283,Floppy Beef,1740 -5284,Handsome Apples,1740 -5285,Shaggy Greens,1741 -5286,Curved Fish,1741 -5287,Few Greens,1742 -5288,Melted Bread,1742 -5289,Spicy Burrito,1742 -5290,Steep Apples,1742 -5291,Calm Beets,1743 -5292,Sour Pretzel,1743 -5293,Handsome Beef,1743 -5294,Tricky Pretzel,1744 -5295,Late Greens,1745 -5296,Late Pretzel,1745 -5297,Tense Beef,1745 -5298,Frightened Mushrooms,1745 -5299,Silly Greens,1745 -5300,Nutty Carrots,1746 -5301,Soft Carrots,1746 -5302,Magnificent Chicken,1747 -5303,Swift Mushrooms,1748 -5304,Cheerful Fish,1749 -5305,Tall Fruit,1750 -5306,Naughty Mushrooms,1750 -5307,Odd Fish,1751 -5308,Scattered Apples,1751 -5309,Blue Apples,1751 -5310,Anxious Bread,1752 -5311,Boiling Pretzel,1752 -5312,Tasteless Honey,1752 -5313,Funny Beets,1753 -5314,Incredible Mushrooms,1753 -5315,Hushed Fruit,1753 -5316,Courageous Mushrooms,1754 -5317,Dizzy Fruit,1754 -5318,Tough Burrito,1754 -5319,Funny Greens,1754 -5320,Tender Greens,1754 -5321,Juicy Honey,1755 -5322,Funny Beef,1755 -5323,Embarrassed Pretzel,1755 -5324,Flaky Fish,1756 -5325,Miniature Greens,1756 -5326,Ashamed Apples,1756 -5327,Great Mushrooms,1757 -5328,Silky Beef,1757 -5329,Rough Burrito,1757 -5330,Square Greens,1757 -5331,Spicy Carrots,1757 -5332,Bitter Chicken,1758 -5333,Shrill Honey,1759 -5334,Cold Beef,1759 -5335,Tasty Fruit,1759 -5336,Red Fish,1759 -5337,Cuddly Greens,1760 -5338,Moaning Beets,1760 -5339,Odd Bread,1761 -5340,Raspy Chicken,1762 -5341,Dry Chicken,1762 -5342,Brief Pretzel,1762 -5343,Smooth Honey,1762 -5344,Stupendous Greens,1762 -5345,Orange Fish,1763 -5346,Brave Honey,1764 -5347,Boring Mushrooms,1764 -5348,Shivering Pretzel,1764 -5349,Hilarious Fruit,1765 -5350,Rotten Burrito,1765 -5351,Lazy Greens,1765 -5352,Ancient Fruit,1766 -5353,R Fish,1766 -5354,Splendid Burrito,1766 -5355,Fast Fruit,1767 -5356,Green Beets,1767 -5357,Silent Pretzel,1767 -5358,Pickled Beets,1767 -5359,Embarrassed Honey,1767 -5360,– Greens,1768 -5361,Moaning Mushrooms,1769 -5362,Encouraging Mushrooms,1769 -5363,Encouraging Honey,1769 -5364,Fresh Carrots,1769 -5365,Tasteless Honey,1769 -5366,Hollow Fish,1770 -5367,Empty Fish,1770 -5368,Spotty Fruit,1770 -5369,Yummy Fish,1770 -5370,Upset Burrito,1771 -5371,Tense Beef,1771 -5372,Scary Honey,1772 -5373,Salty Fish,1773 -5374,Obnoxious Bread,1773 -5375,Rapid Bread,1773 -5376,Nom nom Pretzel,1774 -5377,Chilly Carrots,1775 -5378,Agreeable Greens,1775 -5379,Delicious Carrots,1775 -5380,Bland Bread,1775 -5381,Incredible Beets,1775 -5382,Rotten Bread,1776 -5383,Greasy Greens,1776 -5384,Better Bread,1776 -5385,Tough Greens,1776 -5386,Energetic Honey,1777 -5387,Delicious Fruit,1778 -5388,Ugliest Fruit,1778 -5389,Prickly Mushrooms,1778 -5390,Little Fish,1778 -5391,Perfect Fruit,1778 -5392,Large Greens,1779 -5393,Gorgeous Bread,1779 -5394,Tricky Fruit,1779 -5395,Spotty Carrots,1779 -5396,Magnificent Fish,1780 -5397,Victorious Bread,1780 -5398,Encouraging Mushrooms,1780 -5399,Ratty Apples,1780 -5400,Slippery Mushrooms,1781 -5401,Moist Greens,1781 -5402,Hot Fruit,1781 -5403,Great Greens,1782 -5404,Jittery Fruit,1782 -5405,Filthy Fish,1782 -5406,Damp Carrots,1782 -5407,Late Bread,1783 -5408,Dull Beets,1783 -5409,Horrible Mushrooms,1783 -5410,Selfish Beef,1783 -5411,Handsome Mushrooms,1783 -5412,Witty Bread,1784 -5413,Moist Mushrooms,1785 -5414,Righteous Fruit,1785 -5415,Bright Beets,1786 -5416,Eager Burrito,1786 -5417,Foolish Beef,1786 -5418,Lovely Carrots,1787 -5419,Puny Greens,1787 -5420,Better Apples,1787 -5421,Upset Burrito,1787 -5422,Hungry Beets,1788 -5423,Confused Burrito,1788 -5424,Foolish Bread,1788 -5425,Jumpin' Carrots,1788 -5426,Thoughtful Pretzel,1789 -5427,Awful Beef,1789 -5428,Giant Fruit,1789 -5429,Nervous Apples,1789 -5430,Hungry Honey,1789 -5431,Wooden Carrots,1790 -5432,Upset Pretzel,1791 -5433,Tall Pretzel,1791 -5434,Bland Pretzel,1791 -5435,Excited Bread,1791 -5436,Friendly Chicken,1791 -5437,Hard Burrito,1792 -5438,Fast Beets,1792 -5439,Blue Apples,1793 -5440,Agreeable Bread,1793 -5441,Short Chicken,1793 -5442,Green Honey,1793 -5443,Flat Greens,1793 -5444,Creepy Burrito,1794 -5445,Mammoth Beef,1794 -5446,Deafening Fish,1795 -5447,Handsome Carrots,1796 -5448,Nice Beef,1796 -5449,Sore Honey,1796 -5450,Smiling Beets,1796 -5451,Happy Apples,1797 -5452,Mighty Fish,1797 -5453,Empty Chicken,1798 -5454,Crazy Pretzel,1799 -5455,Mysterious Pretzel,1800 -5456,Scrumptious Greens,1800 -5457,Watery Mushrooms,1800 -5458,Great Apples,1800 -5459,Greasy Beets,1800 -5460,Uneven Chicken,1801 -5461,Stale Fish,1802 -5462,Wasteful Bread,1803 -5463,Incredible Pretzel,1803 -5464,Young Pretzel,1804 -5465,Roasted Burrito,1804 -5466,M Pretzel,1805 -5467,Terrible Bread,1805 -5468,Prickly Beets,1805 -5469,Relieved Fish,1806 -5470,Chilly Pretzel,1806 -5471,Odd Greens,1806 -5472,Loud Bread,1806 -5473,Broken Apples,1806 -5474,Hilarious Pretzel,1807 -5475,Disturbed Mushrooms,1808 -5476,Melted Greens,1808 -5477,Ratty Beets,1808 -5478,Ashamed Honey,1808 -5479,Hard Mushrooms,1808 -5480,Eager Beef,1809 -5481,Plain Mushrooms,1809 -5482,Solid Fish,1809 -5483,Tasty Chicken,1809 -5484,Disturbed Honey,1810 -5485,Solid Chicken,1810 -5486,Ordinary Pretzel,1810 -5487,Rare Bread,1811 -5488,Tan Bread,1811 -5489,Squealing Honey,1811 -5490,Tasteless Fruit,1811 -5491,Agreeable Apples,1812 -5492,Delicious Greens,1812 -5493,Calm Carrots,1812 -5494,Lazy Burrito,1812 -5495,Naughty Fruit,1812 -5496,Whispering Fruit,1813 -5497,Short Pretzel,1814 -5498,Large Mushrooms,1815 -5499,Tired Chicken,1815 -5500,Hard Chicken,1815 -5501,Combative Fish,1815 -5502,Foolish Burrito,1816 -5503,Faint Bread,1816 -5504,Stingy Greens,1817 -5505,Jittery Pretzel,1817 -5506,Long Bread,1818 -5507,Odd Beef,1818 -5508,Floppy Mushrooms,1818 -5509,Beautiful Pretzel,1818 -5510,Encouraging Mushrooms,1818 -5511,Salty Beets,1819 -5512,Jolly Honey,1819 -5513,Yellow Mushrooms,1819 -5514,Depressed Fruit,1819 -5515,R Beets,1820 -5516,Hushed Carrots,1820 -5517,Quiet Bread,1820 -5518,Cool Fish,1820 -5519,Melodic Fruit,1820 -5520,Gigantic Beets,1821 -5521,Edible Greens,1822 -5522,Disturbed Bread,1822 -5523,Mighty Beef,1823 -5524,Creepy Pretzel,1823 -5525,Testy Carrots,1823 -5526,Creepy Fish,1823 -5527,Crazy Beef,1824 -5528,Fair Pretzel,1824 -5529,Harsh Fish,1825 -5530,Salty Mushrooms,1825 -5531,Solid Chicken,1826 -5532,Quick Beets,1826 -5533,Silky Bread,1826 -5534,Shrill Beets,1826 -5535,Helpful Honey,1827 -5536,Greasy Greens,1828 -5537,Screeching Greens,1828 -5538,Fat Burrito,1828 -5539,Fantastic Greens,1828 -5540,Squealing Beets,1828 -5541,Better Honey,1829 -5542,High Greens,1829 -5543,Ugly Honey,1829 -5544,Defiant Mushrooms,1829 -5545,Massive Carrots,1830 -5546,Vast Fruit,1830 -5547,Roasted Honey,1831 -5548,Mighty Beef,1831 -5549,Blue Pretzel,1832 -5550,Excited Beef,1832 -5551,Rainy Carrots,1832 -5552,Shaky Honey,1832 -5553,Bitter Apples,1832 -5554,Lovely Pretzel,1833 -5555,Bitter Beef,1833 -5556,Beautiful Burrito,1834 -5557,Tan Honey,1834 -5558,Whispering Chicken,1834 -5559,Cuddly Bread,1834 -5560,Handsome Pretzel,1835 -5561,Tender Beets,1835 -5562,Green Chicken,1835 -5563,Selfish Pretzel,1835 -5564,Nutty Honey,1835 -5565,Tasty Fish,1836 -5566,Fat Greens,1836 -5567,Tart Apples,1836 -5568,Juicy Pretzel,1836 -5569,Large Chicken,1836 -5570,Few Beef,1837 -5571,Tan Fruit,1837 -5572,Hushed Carrots,1837 -5573,Terrible Honey,1837 -5574,Precious Mushrooms,1837 -5575,Elated Mushrooms,1838 -5576,Naughty Fruit,1839 -5577,Solid Pretzel,1839 -5578,Heavy Mushrooms,1839 -5579,Disturbed Burrito,1839 -5580,Blue Apples,1839 -5581,High Greens,1840 -5582,Silky Beets,1840 -5583,Jittery Mushrooms,1840 -5584,Envious Chicken,1840 -5585,Disturbed Pretzel,1840 -5586,Greasy Greens,1841 -5587,Perfect Chicken,1841 -5588,Frail Burrito,1841 -5589,Scrumptious Beets,1842 -5590,Horrible Beets,1842 -5591,Sticky Chicken,1843 -5592,Cooperative Bread,1843 -5593,R Greens,1843 -5594,Terrible Apples,1844 -5595,Wasteful Fish,1844 -5596,Sharp Fruit,1844 -5597,Spicy Carrots,1844 -5598,Weary Burrito,1845 -5599,Curly Chicken,1846 -5600,Huge Beets,1846 -5601,– Honey,1847 -5602,Obnoxious Carrots,1848 -5603,Spotty Carrots,1848 -5604,Clumsy Greens,1849 -5605,Pleasant Pretzel,1850 -5606,Fluffy Apples,1850 -5607,Sore Apples,1850 -5608,Sweet Pretzel,1850 -5609,Cooing Burrito,1850 -5610,Jumpin' Fish,1851 -5611,Yellow Pretzel,1851 -5612,Broken Bread,1852 -5613,Confused Greens,1852 -5614,Arrogant Fish,1853 -5615,Juicy Carrots,1854 -5616,Yellow Burrito,1854 -5617,Smooth Honey,1854 -5618,Fluffy Chicken,1854 -5619,Eager Fruit,1854 -5620,Pretty Greens,1855 -5621,Broad Beets,1855 -5622,High Chicken,1856 -5623,Afraid Fish,1856 -5624,Great Chicken,1856 -5625,Crazy Carrots,1856 -5626,Shrill Beets,1856 -5627,Robust Chicken,1857 -5628,Scary Pretzel,1857 -5629,Slippery Mushrooms,1857 -5630,Tart Fish,1857 -5631,Grieving Honey,1857 -5632,Thundering Burrito,1858 -5633,Wicked Honey,1858 -5634,Fierce Carrots,1858 -5635,Prickly Apples,1858 -5636,Strange Fish,1858 -5637,Depressed Burrito,1859 -5638,Nice Mushrooms,1859 -5639,Friendly Fruit,1859 -5640,Nervous Burrito,1859 -5641,Silky Mushrooms,1859 -5642,Pretty Fish,1860 -5643,Hot Apples,1860 -5644,Cuddly Fish,1861 -5645,Boiling Honey,1861 -5646,Righteous Fruit,1862 -5647,R Greens,1863 -5648,Smiling Beef,1863 -5649,Fierce Beets,1863 -5650,High Beets,1863 -5651,Repulsive Burrito,1864 -5652,Amused Carrots,1864 -5653,Purring Bread,1864 -5654,Few Honey,1865 -5655,Jolly Burrito,1865 -5656,Many Chicken,1865 -5657,Splendid Pretzel,1865 -5658,Juicy Burrito,1865 -5659,Lucky Bread,1866 -5660,Bland Beets,1866 -5661,Tight Honey,1866 -5662,Angry Greens,1866 -5663,Melodic Mushrooms,1867 -5664,Angry Bread,1867 -5665,Hissing Burrito,1867 -5666,Jittery Bread,1867 -5667,Homeless Pretzel,1867 -5668,Tense Bread,1868 -5669,Better Apples,1868 -5670,Wet Beef,1869 -5671,Rapid Chicken,1870 -5672,Frightened Apples,1871 -5673,Troubled Fruit,1872 -5674,Deep Burrito,1872 -5675,Spotty Pretzel,1872 -5676,Cooing Burrito,1873 -5677,Thirsty Burrito,1874 -5678,Grubby Greens,1874 -5679,Moist Honey,1874 -5680,Nosy Beef,1874 -5681,Wide Mushrooms,1875 -5682,Nutty Beets,1875 -5683,Quickest Fruit,1875 -5684,Ordinary Mushrooms,1875 -5685,Funny Mushrooms,1876 -5686,Shaggy Burrito,1876 -5687,Slippery Pretzel,1877 -5688,Skinny Honey,1878 -5689,Scrumptious Bread,1879 -5690,Jealous Bread,1879 -5691,Short Carrots,1879 -5692,Uptight Apples,1879 -5693,Dirty Burrito,1880 -5694,Chilly Beets,1880 -5695,Dangerous Beef,1880 -5696,Tired Mushrooms,1880 -5697,Stingy Greens,1881 -5698,Fast Apples,1881 -5699,Weary Chicken,1881 -5700,Cool Mushrooms,1882 -5701,Mammoth Fish,1882 -5702,Ill Fish,1882 -5703,Quickest Pretzel,1882 -5704,Selfish Fruit,1883 -5705,Sour Beets,1884 -5706,Envious Carrots,1884 -5707,Combative Fruit,1884 -5708,Dull Fish,1884 -5709,Itchy Apples,1884 -5710,Grieving Burrito,1885 -5711,Happy Bread,1885 -5712,Tiny Fish,1885 -5713,Ripe Beef,1885 -5714,Plastic Beef,1885 -5715,Annoyed Chicken,1886 -5716,Horrible Fish,1886 -5717,Envious Beets,1886 -5718,Nom nom Beets,1886 -5719,Nervous Beef,1886 -5720,Magnificent Fruit,1887 -5721,Bumpy Honey,1887 -5722,Orange Fish,1887 -5723,Wasteful Apples,1887 -5724,Funny Carrots,1888 -5725,Fair Carrots,1888 -5726,Thoughtful Burrito,1888 -5727,Dull Apples,1888 -5728,Shrill Pretzel,1889 -5729,Elated Apples,1889 -5730,Shallow Apples,1889 -5731,Chilly Honey,1889 -5732,Robust Mushrooms,1890 -5733,Agreeable Fish,1890 -5734,– Fish,1890 -5735,Troubled Carrots,1890 -5736,Victorious Honey,1890 -5737,Ripe Fish,1891 -5738,Terrible Mushrooms,1892 -5739,M Greens,1892 -5740,Grand Greens,1893 -5741,Righteous Fruit,1893 -5742,Jittery Burrito,1893 -5743,Great Mushrooms,1893 -5744,Modern Bread,1894 -5745,Weak Chicken,1894 -5746,Round Greens,1894 -5747,Tall Burrito,1895 -5748,New Beef,1895 -5749,Mighty Greens,1895 -5750,Cool Pretzel,1896 -5751,Floppy Burrito,1896 -5752,Arrogant Burrito,1896 -5753,Cuddly Beef,1896 -5754,Large Honey,1896 -5755,Bland Carrots,1897 -5756,Nosy Beets,1897 -5757,Mute Fish,1898 -5758,Screeching Fish,1898 -5759,Arrogant Apples,1898 -5760,Nutty Beef,1898 -5761,Envious Greens,1899 -5762,Victorious Bread,1899 -5763,Nervous Beef,1899 -5764,Blue Bread,1899 -5765,Fresh Carrots,1899 -5766,Silent Chicken,1900 -5767,Great Beef,1901 -5768,Numerous Fish,1902 -5769,Rainy Fish,1902 -5770,Sharp Fruit,1902 -5771,Brief Chicken,1903 -5772,Few Carrots,1904 -5773,Disgusted Mushrooms,1904 -5774,Ratty Apples,1905 -5775,Nutty Greens,1905 -5776,Ashamed Fruit,1905 -5777,Relieved Chicken,1905 -5778,High Beef,1906 -5779,Melodic Apples,1906 -5780,Lonely Burrito,1906 -5781,Tasteless Burrito,1906 -5782,Quiet Bread,1907 -5783,Evil Apples,1908 -5784,Cooing Burrito,1909 -5785,Proud Fish,1909 -5786,Calm Pretzel,1909 -5787,Stale Honey,1910 -5788,Uneven Greens,1910 -5789,Brave Pretzel,1911 -5790,Loud Fruit,1911 -5791,Ill Greens,1911 -5792,Green Carrots,1912 -5793,Relieved Beets,1913 -5794,Juicy Apples,1913 -5795,Relieved Greens,1913 -5796,Cuddly Apples,1913 -5797,Obedient Fish,1914 -5798,Arrogant Beef,1914 -5799,Incredible Fish,1914 -5800,Ripe Chicken,1915 -5801,Swift Chicken,1915 -5802,Small Apples,1915 -5803,Resonant Mushrooms,1916 -5804,Fierce Fish,1916 -5805,Breezy Carrots,1916 -5806,Purple Beef,1916 -5807,Resonant Beef,1916 -5808,Moaning Beets,1917 -5809,Rainy Beets,1918 -5810,Nutty Pretzel,1918 -5811,Vast Apples,1918 -5812,Rapid Honey,1918 -5813,Robust Burrito,1919 -5814,Mammoth Beets,1919 -5815,Outrageous Chicken,1919 -5816,Jittery Mushrooms,1919 -5817,Scrawny Chicken,1919 -5818,Ugly Beef,1920 -5819,Sore Pretzel,1920 -5820,Silly Apples,1921 -5821,Juicy Honey,1921 -5822,Deafening Apples,1921 -5823,Brave Greens,1921 -5824,Melodic Fish,1922 -5825,Silly Fruit,1922 -5826,Large Greens,1923 -5827,Light Beets,1924 -5828,Uptight Fruit,1925 -5829,Small Fish,1925 -5830,Angry Pretzel,1925 -5831,Boiling Pretzel,1925 -5832,Rotten Chicken,1925 -5833,Ancient Honey,1926 -5834,Gentle Chicken,1926 -5835,Energetic Honey,1927 -5836,Jolly Chicken,1927 -5837,Fantastic Fish,1928 -5838,Agreeable Greens,1928 -5839,Jumpin' Honey,1928 -5840,Energetic Burrito,1928 -5841,Crazy Chicken,1929 -5842,Energetic Beef,1929 -5843,Defeated Beets,1930 -5844,Broad Mushrooms,1930 -5845,Proud Beef,1930 -5846,Hollow Burrito,1930 -5847,Dangerous Beef,1931 -5848,Moaning Apples,1931 -5849,Charming Honey,1931 -5850,Loose Beef,1931 -5851,Horrible Honey,1932 -5852,Slippery Beets,1932 -5853,Green Fruit,1932 -5854,Salty Fruit,1933 -5855,Yellow Honey,1933 -5856,Bitter Beets,1933 -5857,Successful Fruit,1933 -5858,Handsome Beets,1934 -5859,Magnificent Honey,1935 -5860,Empty Honey,1935 -5861,Wet Greens,1935 -5862,Testy Carrots,1936 -5863,Rough Pretzel,1936 -5864,Charming Apples,1936 -5865,Flat Apples,1936 -5866,Immense Fish,1936 -5867,Fast Fish,1937 -5868,Tender Fish,1937 -5869,Low Burrito,1937 -5870,Lazy Apples,1937 -5871,Scattered Greens,1937 -5872,Roasted Honey,1938 -5873,Strange Bread,1938 -5874,Empty Honey,1939 -5875,Red Pretzel,1939 -5876,Enthusiastic Beets,1939 -5877,Energetic Pretzel,1939 -5878,Huge Beef,1940 -5879,Cheerful Burrito,1940 -5880,Roasted Fruit,1940 -5881,Testy Apples,1940 -5882,Fine Mushrooms,1941 -5883,Spicy Beets,1942 -5884,Big Mushrooms,1942 -5885,Smooth Pretzel,1943 -5886,Itchy Chicken,1943 -5887,Funny Chicken,1944 -5888,Short Carrots,1944 -5889,Delicious Chicken,1944 -5890,Ancient Burrito,1944 -5891,Flat Greens,1945 -5892,Roasted Honey,1945 -5893,Upset Chicken,1945 -5894,Cool Beets,1945 -5895,Frail Pretzel,1946 -5896,Cooperative Greens,1946 -5897,Beautiful Mushrooms,1946 -5898,Shivering Bread,1946 -5899,Stingy Pretzel,1946 -5900,Spicy Chicken,1947 -5901,Fresh Pretzel,1947 -5902,Wet Honey,1948 -5903,Worried Honey,1948 -5904,Scrawny Mushrooms,1948 -5905,Rotten Pretzel,1948 -5906,Broken Greens,1949 -5907,Nom nom Bread,1949 -5908,Magnificent Fish,1949 -5909,Prickly Beets,1949 -5910,Tame Bread,1950 -5911,Cheesy Honey,1950 -5912,Thoughtless Apples,1950 -5913,Little Burrito,1951 -5914,Stingy Fish,1951 -5915,Uptight Mushrooms,1951 -5916,Frantic Pretzel,1952 -5917,Wonderful Fruit,1952 -5918,Colossal Beef,1952 -5919,Lovely Greens,1952 -5920,Evil Fish,1952 -5921,Delightful Mushrooms,1953 -5922,Black Honey,1953 -5923,Naughty Greens,1953 -5924,Boom-town Greens,1953 -5925,Wide Apples,1954 -5926,Awful Beets,1954 -5927,Husky Chicken,1954 -5928,Slow Fruit,1954 -5929,Pleasant Fruit,1955 -5930,Slippery Pretzel,1955 -5931,Friendly Fruit,1955 -5932,Spicy Pretzel,1955 -5933,Depressed Chicken,1956 -5934,Fresh Beef,1956 -5935,Arrogant Beets,1956 -5936,Wide Burrito,1956 -5937,Straight Apples,1956 -5938,Ancient Beef,1957 -5939,Great Beets,1957 -5940,Enthusiastic Greens,1957 -5941,Stale Apples,1957 -5942,Anxious Fish,1958 -5943,Afraid Apples,1958 -5944,Tiny Chicken,1958 -5945,Moaning Pretzel,1959 -5946,Smooth Carrots,1959 -5947,Naughty Pretzel,1959 -5948,Happy Beef,1960 -5949,Fresh Fish,1960 -5950,Nom nom Greens,1961 -5951,High Carrots,1961 -5952,Broken Burrito,1961 -5953,R Beef,1962 -5954,Dry Beets,1962 -5955,Lazy Greens,1962 -5956,Grumpy Fruit,1962 -5957,Moist Apples,1962 -5958,Shivering Pretzel,1963 -5959,Afraid Beets,1963 -5960,Scrumptious Bread,1963 -5961,Ugly Honey,1964 -5962,Black Fruit,1964 -5963,Fair Honey,1965 -5964,Scary Chicken,1965 -5965,Homeless Beets,1965 -5966,Salty Pretzel,1965 -5967,Soft Beef,1965 -5968,Gigantic Beef,1966 -5969,Breezy Mushrooms,1966 -5970,Envious Apples,1966 -5971,Chilly Honey,1966 -5972,R Bread,1966 -5973,Voiceless Honey,1967 -5974,Whispering Fruit,1967 -5975,Wide Fruit,1967 -5976,Modern Honey,1967 -5977,Nutty Burrito,1967 -5978,Steep Carrots,1968 -5979,Old Burrito,1968 -5980,Pretty Pretzel,1969 -5981,Vast Burrito,1969 -5982,Chilly Bread,1969 -5983,Tricky Beets,1969 -5984,Strange Greens,1969 -5985,Mammoth Greens,1970 -5986,Great Beef,1970 -5987,Scary Greens,1971 -5988,Cheesy Beets,1971 -5989,Great Pretzel,1972 -5990,Tired Beets,1972 -5991,Annoyed Burrito,1972 -5992,Rough Fruit,1972 -5993,Boring Honey,1973 -5994,Healthy Fish,1974 -5995,Shivering Beets,1974 -5996,Pleasant Beef,1974 -5997,Fluffy Mushrooms,1975 -5998,Sticky Honey,1976 -5999,Breezy Greens,1977 -6000,Jumpin' Pretzel,1977 -6001,Vast Mushrooms,1977 -6002,Colossal Beets,1978 -6003,Boiling Fish,1978 -6004,Obedient Fruit,1979 -6005,S Bread,1979 -6006,Wet Honey,1979 -6007,Tame Mushrooms,1979 -6008,Moaning Beets,1979 -6009,Splendid Apples,1980 -6010,Rotten Burrito,1980 -6011,Nosy Mushrooms,1980 -6012,Tight Fruit,1980 -6013,Wide-eyed Apples,1981 -6014,Yummy Apples,1981 -6015,Selfish Pretzel,1981 -6016,Stale Fruit,1982 -6017,Tender Beets,1982 -6018,Quick Burrito,1983 -6019,Fat Apples,1983 -6020,Calm Carrots,1983 -6021,Silent Fruit,1983 -6022,Purple Bread,1983 -6023,Pleasant Bread,1984 -6024,Huge Chicken,1984 -6025,Vast Burrito,1985 -6026,Hot Carrots,1985 -6027,Damp Honey,1986 -6028,Magnificent Honey,1986 -6029,Watery Beets,1986 -6030,Skinny Fruit,1986 -6031,Numerous Chicken,1986 -6032,Naughty Fish,1987 -6033,Bright Beets,1987 -6034,Watery Fish,1987 -6035,Defeated Chicken,1987 -6036,Melodic Fruit,1988 -6037,Greasy Fruit,1988 -6038,Jumpin' Burrito,1988 -6039,Nice Pretzel,1988 -6040,Short Fish,1989 -6041,Pretty Mushrooms,1989 -6042,Orange Pretzel,1990 -6043,Narrow Mushrooms,1990 -6044,Hilarious Burrito,1990 -6045,Wasteful Chicken,1991 -6046,Wet Honey,1991 -6047,Ripe Bread,1991 -6048,Heavy Greens,1992 -6049,Uptight Fruit,1993 -6050,Quiet Burrito,1993 -6051,Broad Mushrooms,1993 -6052,Bland Beef,1993 -6053,Terrible Beef,1993 -6054,Immense Pretzel,1994 -6055,Jolly Pretzel,1994 -6056,Slow Beef,1995 -6057,Boiling Pretzel,1995 -6058,Thoughtful Pretzel,1995 -6059,Square Beets,1995 -6060,Robust Beef,1996 -6061,Pleasant Fish,1996 -6062,Afraid Apples,1996 -6063,Handsome Honey,1997 -6064,Obnoxious Bread,1997 -6065,Arrogant Beets,1997 -6066,Immense Apples,1998 -6067,Tight Apples,1998 -6068,Dry Honey,1998 -6069,Flaky Beets,1998 -6070,Puny Greens,1998 -6071,Stingy Chicken,1999 -6072,Dirty Burrito,1999 -6073,Thoughtful Fruit,1999 -6074,Skinny Chicken,1999 -6075,Squealing Pretzel,1999 -6076,Petite Chicken,2000 -6077,Strange Beef,2001 -6078,Jittery Apples,2001 -6079,Young Apples,2001 -6080,Tender Pretzel,2002 -6081,Sharp Apples,2002 -6082,Orange Carrots,2002 -6083,Nosy Fruit,2002 -6084,Shaky Apples,2002 -6085,Massive Burrito,2003 -6086,Jittery Honey,2004 -6087,Steep Chicken,2004 -6088,Old Beets,2004 -6089,Spicy Chicken,2004 -6090,Watery Bread,2005 -6091,Strange Honey,2005 -6092,Boring Fish,2006 -6093,Rotten Beets,2006 -6094,Awful Burrito,2006 -6095,Miniature Mushrooms,2006 -6096,Cheerful Greens,2006 -6097,Great Honey,2007 -6098,Annoyed Beef,2007 -6099,Moist Beets,2007 -6100,Tasty Chicken,2007 -6101,Wide Bread,2007 -6102,Savory Beef,2008 -6103,Rare Fish,2008 -6104,Deep Fish,2008 -6105,Silky Apples,2009 -6106,Frightened Bread,2009 -6107,Nosy Mushrooms,2009 -6108,Colossal Bread,2010 -6109,Curly Mushrooms,2010 -6110,Moist Fruit,2010 -6111,Testy Pretzel,2010 -6112,Flat Greens,2011 -6113,Combative Beef,2011 -6114,Bumpy Greens,2011 -6115,Thundering Apples,2012 -6116,Plain Chicken,2012 -6117,Dry Honey,2012 -6118,Great Pretzel,2013 -6119,Slimy Bread,2013 -6120,Clumsy Pretzel,2013 -6121,Great Beets,2013 -6122,Roasted Fruit,2013 -6123,Tender Beef,2014 -6124,Funny Greens,2014 -6125,Floppy Mushrooms,2014 -6126,Obedient Chicken,2014 -6127,Long Fruit,2015 -6128,Fuzzy Chicken,2015 -6129,Happy Greens,2016 -6130,Curved Beef,2016 -6131,– Greens,2016 -6132,Disgusted Fruit,2016 -6133,Great Mushrooms,2016 -6134,Ordinary Fruit,2017 -6135,Roasted Beef,2017 -6136,Scrawny Greens,2018 -6137,Dirty Apples,2018 -6138,Jealous Bread,2018 -6139,Fierce Beets,2019 -6140,Squealing Beef,2020 -6141,Gigantic Apples,2020 -6142,Ordinary Mushrooms,2020 -6143,Encouraging Apples,2020 -6144,Worried Greens,2020 -6145,Tense Apples,2021 -6146,Grubby Mushrooms,2021 -6147,Rough Mushrooms,2021 -6148,Melodic Apples,2021 -6149,Worried Burrito,2021 -6150,Raspy Bread,2022 -6151,– Fruit,2022 -6152,Damp Beets,2022 -6153,Purple Fruit,2023 -6154,Blue Beets,2023 -6155,Cuddly Bread,2024 -6156,Light Pretzel,2024 -6157,Uptight Honey,2025 -6158,Dusty Honey,2025 -6159,Gentle Fish,2025 -6160,Ugliest Burrito,2025 -6161,Good Honey,2026 -6162,Creepy Carrots,2026 -6163,Depressed Honey,2026 -6164,Shaky Beef,2026 -6165,Shrill Fish,2027 -6166,Hollow Carrots,2028 -6167,Lucky Beets,2028 -6168,Cheerful Honey,2028 -6169,Wasteful Bread,2029 -6170,Pickled Honey,2030 -6171,Good Fish,2030 -6172,Green Beets,2030 -6173,Yummy Mushrooms,2031 -6174,Plain Apples,2032 -6175,Great Chicken,2032 -6176,Fluffy Bread,2032 -6177,Ugly Mushrooms,2033 -6178,Dry Greens,2033 -6179,Quiet Carrots,2033 -6180,Heavy Bread,2034 -6181,Relieved Greens,2034 -6182,Enthusiastic Greens,2035 -6183,Jumpin' Pretzel,2036 -6184,Puny Fruit,2036 -6185,Ugliest Burrito,2037 -6186,Excited Apples,2038 -6187,Strange Carrots,2038 -6188,Worried Honey,2038 -6189,Cuddly Greens,2039 -6190,Few Carrots,2039 -6191,Exuberant Bread,2039 -6192,Deafening Carrots,2039 -6193,Ancient Greens,2039 -6194,Average Beets,2040 -6195,Amused Honey,2040 -6196,Fast Bread,2041 -6197,Damp Burrito,2041 -6198,Juicy Beef,2041 -6199,Annoyed Beef,2041 -6200,Bad Beef,2042 -6201,Boiling Chicken,2042 -6202,Kickin' Pretzel,2042 -6203,Magnificent Beets,2042 -6204,Rare Chicken,2043 -6205,Cooperative Fruit,2044 -6206,Exuberant Fish,2045 -6207,Puny Fruit,2045 -6208,Mammoth Burrito,2045 -6209,Late Fruit,2045 -6210,Cooing Burrito,2045 -6211,Defiant Beets,2046 -6212,Fresh Greens,2046 -6213,Dizzy Apples,2046 -6214,Pleasant Beets,2047 -6215,Rapid Burrito,2047 -6216,Boring Burrito,2047 -6217,Angry Greens,2047 -6218,Testy Fruit,2047 -6219,Tired Bread,2048 -6220,Tense Beef,2048 -6221,Grieving Burrito,2049 -6222,Curly Bread,2049 -6223,Lucky Bread,2049 -6224,Broad Burrito,2049 -6225,Wicked Beef,2049 -6226,Wonderful Beets,2050 -6227,Vast Fish,2050 -6228,Robust Fish,2050 -6229,Colossal Apples,2051 -6230,Quiet Beets,2051 -6231,Yellow Fish,2051 -6232,Disgusted Fish,2051 -6233,Quickest Pretzel,2051 -6234,Big Apples,2052 -6235,Fierce Greens,2052 -6236,Vast Bread,2053 -6237,Zany Burrito,2053 -6238,Gigantic Beef,2053 -6239,Ugliest Beef,2053 -6240,Disgusted Carrots,2054 -6241,Melodic Honey,2054 -6242,Red Carrots,2055 -6243,Silent Chicken,2055 -6244,Empty Beef,2056 -6245,Boom-town Chicken,2056 -6246,Watery Bread,2056 -6247,Broad Mushrooms,2056 -6248,Jumpin' Greens,2056 -6249,Purring Chicken,2057 -6250,Fluffy Chicken,2058 -6251,Upset Apples,2058 -6252,Fantastic Chicken,2058 -6253,Harsh Bread,2058 -6254,Stale Mushrooms,2058 -6255,Magnificent Chicken,2059 -6256,Steady Chicken,2059 -6257,Proud Beets,2060 -6258,Shaky Beef,2060 -6259,Prickly Bread,2061 -6260,Terrible Bread,2061 -6261,Fluffy Chicken,2061 -6262,Outrageous Fruit,2061 -6263,Husky Honey,2061 -6264,Colossal Beets,2062 -6265,Quickest Apples,2062 -6266,Greasy Greens,2063 -6267,Stale Chicken,2063 -6268,Horrible Beef,2063 -6269,Chilly Honey,2063 -6270,Watery Beets,2064 -6271,Petite Burrito,2065 -6272,Small Burrito,2065 -6273,Strange Pretzel,2066 -6274,Sticky Chicken,2066 -6275,Precious Greens,2066 -6276,Angry Greens,2067 -6277,Arrogant Chicken,2067 -6278,Nom nom Beets,2067 -6279,Shivering Pretzel,2067 -6280,Quickest Pretzel,2068 -6281,Puny Pretzel,2068 -6282,Large Beef,2068 -6283,Crazy Apples,2068 -6284,Tender Burrito,2068 -6285,Arrogant Chicken,2069 -6286,Nice Beef,2069 -6287,Late Beets,2070 -6288,Strong Honey,2070 -6289,Few Honey,2071 -6290,Thirsty Pretzel,2072 -6291,High Fish,2072 -6292,Tricky Chicken,2072 -6293,Zany Beets,2072 -6294,Bitter Fruit,2072 -6295,Savory Honey,2073 -6296,Black Burrito,2073 -6297,Uptight Apples,2074 -6298,Wicked Honey,2075 -6299,Thoughtless Fruit,2075 -6300,Comfortable Greens,2075 -6301,Troubled Burrito,2075 -6302,Quiet Mushrooms,2076 -6303,Scattered Burrito,2076 -6304,Healthy Bread,2076 -6305,Damp Honey,2076 -6306,Tasteless Beef,2077 -6307,Grumpy Carrots,2077 -6308,Huge Fish,2077 -6309,Ugliest Carrots,2077 -6310,Clumsy Chicken,2078 -6311,Wasteful Fruit,2078 -6312,Precious Fish,2078 -6313,Fast Beef,2079 -6314,Squealing Apples,2080 -6315,Tall Honey,2080 -6316,Sharp Fish,2081 -6317,Creepy Beef,2081 -6318,Defiant Greens,2081 -6319,Tall Pretzel,2081 -6320,Huge Chicken,2081 -6321,Defeated Chicken,2082 -6322,Pickled Carrots,2082 -6323,Rainy Beef,2083 -6324,Frantic Bread,2083 -6325,Damp Mushrooms,2083 -6326,Gorgeous Fish,2084 -6327,Sad Mushrooms,2084 -6328,Embarrassed Fruit,2084 -6329,Little Honey,2085 -6330,Jumpin' Carrots,2085 -6331,Frightened Apples,2085 -6332,Confused Greens,2086 -6333,Troubled Apples,2086 -6334,High Fruit,2086 -6335,Round Apples,2086 -6336,Sharp Greens,2086 -6337,Angry Bread,2087 -6338,Weary Beef,2087 -6339,Itchy Pretzel,2088 -6340,Encouraging Bread,2088 -6341,Vast Beef,2088 -6342,Annoyed Fruit,2088 -6343,Silky Burrito,2088 -6344,Testy Beef,2089 -6345,Annoyed Apples,2089 -6346,Tense Carrots,2089 -6347,Salty Beets,2089 -6348,Thirsty Carrots,2089 -6349,Nasty Chicken,2090 -6350,Victorious Fish,2090 -6351,Happy Beets,2090 -6352,Old Burrito,2091 -6353,Happy Mushrooms,2091 -6354,Charming Greens,2091 -6355,Delicious Beef,2091 -6356,Flaky Beef,2091 -6357,Cooperative Beets,2092 -6358,Determined Beets,2092 -6359,Loose Bread,2093 -6360,Precious Apples,2093 -6361,Bitter Carrots,2094 -6362,M Greens,2094 -6363,Annoyed Beets,2095 -6364,Tricky Chicken,2095 -6365,Ordinary Bread,2095 -6366,Scattered Fruit,2095 -6367,Tan Chicken,2096 -6368,Perfect Mushrooms,2096 -6369,Fuzzy Beef,2096 -6370,Low Burrito,2097 -6371,Curved Beets,2097 -6372,Selfish Greens,2097 -6373,Helpful Honey,2097 -6374,Savory Carrots,2097 -6375,Smiling Apples,2098 -6376,Sour Carrots,2098 -6377,Splendid Chicken,2098 -6378,Hurt Apples,2098 -6379,Kind Fish,2098 -6380,Broken Beets,2099 -6381,Petite Burrito,2099 -6382,Rough Pretzel,2099 -6383,Hushed Apples,2099 -6384,Fine Chicken,2099 -6385,Curved Pretzel,2100 -6386,Ugly Pretzel,2100 -6387,Crazy Fish,2100 -6388,Rapid Chicken,2100 -6389,Stale Beef,2100 -6390,Quickest Mushrooms,2101 -6391,Big Beets,2102 -6392,Combative Beets,2103 -6393,Ripe Apples,2103 -6394,Curly Chicken,2103 -6395,Soft Beets,2104 -6396,Scattered Beets,2104 -6397,Slow Fruit,2104 -6398,Magnificent Chicken,2105 -6399,Dusty Fruit,2105 -6400,Massive Greens,2105 -6401,Dry Greens,2106 -6402,Curved Beets,2106 -6403,Fuzzy Greens,2106 -6404,Hurt Carrots,2107 -6405,Strange Chicken,2107 -6406,Skinny Chicken,2108 -6407,Stale Honey,2108 -6408,Envious Apples,2108 -6409,Sad Carrots,2108 -6410,Quaint Beets,2108 -6411,Faithful Bread,2109 -6412,Plain Bread,2109 -6413,Thundering Greens,2109 -6414,Dull Pretzel,2109 -6415,Hungry Bread,2110 -6416,Comfortable Beef,2110 -6417,Dizzy Apples,2110 -6418,Broken Mushrooms,2110 -6419,Numerous Beets,2111 -6420,Immense Bread,2111 -6421,Brief Apples,2112 -6422,Fierce Beef,2113 -6423,Wonderful Carrots,2113 -6424,Annoyed Honey,2113 -6425,Great Mushrooms,2113 -6426,Grand Apples,2113 -6427,Deep Apples,2114 -6428,Outrageous Carrots,2114 -6429,Embarrassed Beets,2114 -6430,Dull Honey,2115 -6431,Quickest Chicken,2115 -6432,– Greens,2116 -6433,Prickly Beets,2116 -6434,Grieving Apples,2116 -6435,Tender Pretzel,2116 -6436,Incredible Mushrooms,2116 -6437,Ordinary Beets,2117 -6438,Narrow Apples,2117 -6439,Helpless Honey,2118 -6440,Tart Carrots,2118 -6441,Deep Carrots,2118 -6442,Strange Greens,2118 -6443,Bright Burrito,2119 -6444,Icy Chicken,2119 -6445,Cuddly Carrots,2120 -6446,Little Greens,2120 -6447,Courageous Fruit,2120 -6448,Exuberant Fish,2120 -6449,Strange Beets,2120 -6450,Cuddly Honey,2121 -6451,S Burrito,2121 -6452,Arrogant Fruit,2121 -6453,Thoughtless Greens,2122 -6454,Sore Greens,2123 -6455,Brave Mushrooms,2123 -6456,Annoyed Mushrooms,2123 -6457,Curly Fish,2123 -6458,Happy Burrito,2124 -6459,Thoughtful Chicken,2124 -6460,Elated Chicken,2124 -6461,Smiling Greens,2124 -6462,Smiling Apples,2124 -6463,Precious Fruit,2125 -6464,– Pretzel,2125 -6465,Tricky Bread,2125 -6466,Juicy Chicken,2125 -6467,High Mushrooms,2126 -6468,Tender Greens,2126 -6469,Thundering Carrots,2126 -6470,Wasteful Chicken,2127 -6471,Stale Beets,2127 -6472,Upset Pretzel,2127 -6473,Colossal Burrito,2127 -6474,Fluffy Apples,2127 -6475,Kind Mushrooms,2128 -6476,Wide Beets,2128 -6477,High Pretzel,2128 -6478,Little Beets,2128 -6479,Eager Chicken,2128 -6480,Thoughtful Greens,2129 -6481,Early Honey,2129 -6482,Tart Burrito,2129 -6483,Old Fruit,2130 -6484,Jealous Fruit,2130 -6485,Agreeable Fruit,2130 -6486,Boring Mushrooms,2130 -6487,R Mushrooms,2131 -6488,Upset Carrots,2131 -6489,Wooden Mushrooms,2131 -6490,Soft Honey,2131 -6491,Foolish Mushrooms,2132 -6492,Fantastic Apples,2132 -6493,Obnoxious Bread,2132 -6494,Sour Fish,2132 -6495,Prickly Burrito,2132 -6496,Floppy Beef,2133 -6497,Salty Apples,2133 -6498,Sweet Beef,2133 -6499,Anxious Carrots,2133 -6500,Incredible Chicken,2133 -6501,Relieved Beef,2134 -6502,Wide-eyed Greens,2134 -6503,Perfect Chicken,2134 -6504,Empty Chicken,2134 -6505,Late Fish,2134 -6506,Friendly Beets,2135 -6507,Tricky Chicken,2135 -6508,Greasy Beets,2136 -6509,Colossal Burrito,2136 -6510,Smooth Bread,2136 -6511,Tasteless Fruit,2137 -6512,Quaint Honey,2137 -6513,Disgusted Burrito,2137 -6514,Weak Mushrooms,2137 -6515,Stale Mushrooms,2138 -6516,Friendly Fish,2138 -6517,Jittery Carrots,2139 -6518,Splendid Fish,2139 -6519,Rainy Beef,2139 -6520,Pleasant Bread,2140 -6521,Testy Beets,2140 -6522,Hurt Apples,2141 -6523,Defiant Apples,2141 -6524,R Mushrooms,2141 -6525,Purring Greens,2141 -6526,Lonely Bread,2142 -6527,Scrumptious Apples,2143 -6528,Fat Burrito,2143 -6529,Robust Pretzel,2144 -6530,Skinny Carrots,2144 -6531,Fresh Fish,2145 -6532,Amused Burrito,2146 -6533,Curved Apples,2147 -6534,Breezy Burrito,2148 -6535,Witty Honey,2148 -6536,Purring Apples,2148 -6537,Flaky Apples,2149 -6538,Smiling Pretzel,2149 -6539,Pretty Pretzel,2150 -6540,Flaky Burrito,2150 -6541,Melodic Mushrooms,2150 -6542,Incredible Greens,2150 -6543,Great Carrots,2150 -6544,Melodic Carrots,2151 -6545,Lovely Apples,2151 -6546,Big Beets,2151 -6547,Yummy Chicken,2152 -6548,Wicked Beef,2152 -6549,Jumpin' Carrots,2152 -6550,Sharp Burrito,2152 -6551,Quick Carrots,2152 -6552,Huge Apples,2153 -6553,Greasy Pretzel,2153 -6554,Stingy Apples,2153 -6555,Faithful Greens,2154 -6556,Loud Fruit,2154 -6557,Handsome Carrots,2154 -6558,Splendid Carrots,2154 -6559,Dangerous Fruit,2154 -6560,Righteous Apples,2155 -6561,M Fruit,2155 -6562,Weak Greens,2155 -6563,Fierce Honey,2155 -6564,Many Honey,2156 -6565,Upset Greens,2156 -6566,Healthy Beef,2156 -6567,Defiant Pretzel,2156 -6568,Frightened Beef,2157 -6569,Elated Beets,2157 -6570,Combative Burrito,2157 -6571,Smooth Greens,2157 -6572,Thundering Bread,2157 -6573,Obnoxious Mushrooms,2158 -6574,Agreeable Fruit,2158 -6575,Round Greens,2158 -6576,Plain Chicken,2158 -6577,Harsh Carrots,2159 -6578,Exuberant Beef,2160 -6579,Silent Beef,2160 -6580,Thoughtful Bread,2160 -6581,Fuzzy Beef,2161 -6582,Petite Honey,2161 -6583,Troubled Fruit,2161 -6584,Homeless Burrito,2161 -6585,Juicy Beef,2162 -6586,Jealous Beef,2162 -6587,Troubled Burrito,2162 -6588,Better Apples,2162 -6589,Lucky Greens,2163 -6590,Spicy Apples,2164 -6591,Tricky Beef,2164 -6592,Hilarious Beef,2164 -6593,Yellow Beets,2164 -6594,Cruel Pretzel,2164 -6595,Spicy Greens,2165 -6596,Spotty Carrots,2165 -6597,Perfect Fruit,2165 -6598,Mysterious Fruit,2165 -6599,Fresh Apples,2166 -6600,New Beets,2167 -6601,Icy Beef,2167 -6602,Tough Chicken,2168 -6603,Quickest Chicken,2169 -6604,Proud Fish,2169 -6605,Large Burrito,2169 -6606,Repulsive Greens,2169 -6607,Ordinary Fruit,2169 -6608,Narrow Apples,2170 -6609,M Apples,2170 -6610,Husky Mushrooms,2171 -6611,Nervous Pretzel,2171 -6612,Frightened Fruit,2171 -6613,Uneven Bread,2172 -6614,Pretty Beets,2172 -6615,R Greens,2173 -6616,Hungry Carrots,2173 -6617,Disturbed Carrots,2173 -6618,Scrumptious Bread,2173 -6619,Rare Honey,2173 -6620,Low Apples,2174 -6621,Righteous Burrito,2174 -6622,Evil Chicken,2174 -6623,Tender Beets,2174 -6624,Late Pretzel,2174 -6625,Thundering Greens,2175 -6626,Greasy Burrito,2175 -6627,Nasty Honey,2176 -6628,Huge Mushrooms,2176 -6629,Large Mushrooms,2176 -6630,Steep Beets,2177 -6631,Early Pretzel,2178 -6632,Tall Apples,2178 -6633,Foolish Burrito,2179 -6634,Moist Beef,2180 -6635,Black Apples,2180 -6636,Encouraging Honey,2181 -6637,Shaky Honey,2181 -6638,Fuzzy Greens,2181 -6639,Ugliest Burrito,2181 -6640,Spicy Mushrooms,2182 -6641,Bumpy Carrots,2183 -6642,– Burrito,2184 -6643,Grieving Beets,2185 -6644,Slippery Carrots,2186 -6645,Dry Burrito,2186 -6646,Plain Fish,2187 -6647,Flat Pretzel,2187 -6648,Combative Beets,2187 -6649,Fuzzy Bread,2188 -6650,Scattered Apples,2188 -6651,Strange Fish,2189 -6652,Tired Burrito,2189 -6653,Green Chicken,2189 -6654,Mysterious Fish,2189 -6655,Ill Burrito,2189 -6656,Jolly Fruit,2190 -6657,Stale Fish,2190 -6658,Repulsive Fruit,2190 -6659,Better Honey,2190 -6660,Hungry Pretzel,2191 -6661,Black Chicken,2191 -6662,Hollow Honey,2191 -6663,Foolish Bread,2191 -6664,Shrill Fish,2191 -6665,Selfish Beets,2192 -6666,Fluffy Beets,2192 -6667,Terrible Carrots,2192 -6668,Courageous Chicken,2193 -6669,Few Mushrooms,2193 -6670,Breezy Beets,2193 -6671,Smiling Greens,2193 -6672,Nice Carrots,2193 -6673,Troubled Apples,2194 -6674,Fuzzy Fish,2195 -6675,Raspy Apples,2195 -6676,Agreeable Beef,2195 -6677,Tall Apples,2195 -6678,Petite Pretzel,2195 -6679,Pickled Bread,2196 -6680,Proud Chicken,2196 -6681,Horrible Carrots,2196 -6682,Faithful Chicken,2197 -6683,Harsh Fruit,2197 -6684,Heavy Honey,2197 -6685,Numerous Beef,2197 -6686,Icy Honey,2197 -6687,Dizzy Beets,2198 -6688,R Mushrooms,2198 -6689,Eager Pretzel,2198 -6690,Many Fruit,2198 -6691,Silly Pretzel,2199 -6692,Great Beef,2199 -6693,Melodic Greens,2200 -6694,Colossal Burrito,2200 -6695,Fierce Carrots,2200 -6696,Gigantic Carrots,2200 -6697,Awful Beef,2200 -6698,Wicked Greens,2201 -6699,Ordinary Carrots,2201 -6700,Terrible Mushrooms,2201 -6701,Yellow Apples,2202 -6702,Colossal Mushrooms,2202 -6703,Zany Honey,2202 -6704,Boom-town Burrito,2202 -6705,Eager Greens,2202 -6706,Rotten Beets,2203 -6707,Ripe Bread,2203 -6708,Lovely Bread,2204 -6709,Nutty Mushrooms,2204 -6710,Floppy Mushrooms,2204 -6711,Combative Apples,2204 -6712,Brave Honey,2205 -6713,M Apples,2205 -6714,Melted Pretzel,2206 -6715,Lonely Pretzel,2206 -6716,Mammoth Apples,2206 -6717,Roasted Pretzel,2207 -6718,Frightened Burrito,2207 -6719,Foolish Pretzel,2208 -6720,Delicious Beef,2208 -6721,Stale Greens,2208 -6722,Annoyed Honey,2208 -6723,Uptight Mushrooms,2208 -6724,Perfect Chicken,2209 -6725,Ordinary Apples,2209 -6726,Lonely Greens,2209 -6727,Boiling Pretzel,2210 -6728,Eager Beets,2211 -6729,Good Beets,2212 -6730,Long Mushrooms,2212 -6731,Watery Greens,2212 -6732,Wicked Burrito,2213 -6733,Wooden Beets,2214 -6734,Dry Carrots,2214 -6735,Testy Chicken,2214 -6736,Ill Apples,2214 -6737,Panicky Carrots,2215 -6738,Fat Fish,2215 -6739,Quaint Honey,2216 -6740,S Burrito,2216 -6741,Fluffy Burrito,2216 -6742,Screeching Apples,2216 -6743,Fat Honey,2216 -6744,Moaning Mushrooms,2217 -6745,Voiceless Fruit,2217 -6746,Big Chicken,2217 -6747,Gorgeous Greens,2217 -6748,Frightened Fish,2218 -6749,Faint Greens,2219 -6750,Disturbed Greens,2219 -6751,Exuberant Carrots,2219 -6752,Squealing Burrito,2219 -6753,R Carrots,2220 -6754,Striped Honey,2220 -6755,Quaint Beef,2220 -6756,Vivacious Fruit,2220 -6757,Perfect Carrots,2220 -6758,Annoyed Carrots,2221 -6759,Steady Apples,2221 -6760,Loose Fish,2221 -6761,Big Bread,2222 -6762,Frightened Fruit,2222 -6763,High Beets,2222 -6764,Tart Chicken,2223 -6765,Resonant Burrito,2223 -6766,Incredible Greens,2223 -6767,Fast Mushrooms,2223 -6768,– Burrito,2224 -6769,Ugliest Pretzel,2224 -6770,Flaky Carrots,2225 -6771,Faint Apples,2226 -6772,Jolly Greens,2226 -6773,Vivacious Greens,2226 -6774,Fluffy Beets,2226 -6775,Damp Honey,2227 -6776,Fluffy Carrots,2227 -6777,Comfortable Mushrooms,2228 -6778,Brief Bread,2228 -6779,Rough Fish,2228 -6780,Light Fish,2228 -6781,Savory Burrito,2228 -6782,Thoughtful Fish,2229 -6783,Spotty Beets,2229 -6784,Ripe Carrots,2230 -6785,Sore Beef,2231 -6786,Jolly Fish,2231 -6787,Courageous Fish,2231 -6788,Colossal Apples,2232 -6789,Angry Apples,2233 -6790,Weary Bread,2233 -6791,Cheesy Carrots,2234 -6792,Determined Fish,2234 -6793,Determined Beef,2235 -6794,Envious Chicken,2235 -6795,Screeching Mushrooms,2235 -6796,Thoughtless Beef,2236 -6797,Slow Fish,2237 -6798,Vivacious Bread,2237 -6799,Proud Honey,2237 -6800,Lonely Bread,2238 -6801,Big Fish,2238 -6802,Happy Carrots,2239 -6803,Lively Apples,2239 -6804,Gigantic Apples,2239 -6805,Greasy Beets,2239 -6806,Tender Beef,2240 -6807,Quaint Fruit,2240 -6808,Energetic Beets,2240 -6809,Spicy Beets,2241 -6810,Shaky Fruit,2241 -6811,Raspy Honey,2242 -6812,Rough Bread,2242 -6813,Sad Pretzel,2242 -6814,Selfish Fish,2242 -6815,Watery Carrots,2243 -6816,Cold Beef,2244 -6817,Quiet Fish,2244 -6818,Agreeable Pretzel,2245 -6819,Hard Carrots,2245 -6820,Large Fruit,2246 -6821,Plain Fish,2246 -6822,Hot Bread,2246 -6823,Jumpin' Apples,2246 -6824,Agreeable Chicken,2246 -6825,Wide Carrots,2247 -6826,Selfish Apples,2247 -6827,Heavy Carrots,2247 -6828,Uptight Fruit,2248 -6829,Tasteless Chicken,2248 -6830,Selfish Chicken,2249 -6831,Hollow Beets,2249 -6832,Clumsy Carrots,2249 -6833,Green Beef,2249 -6834,Scary Carrots,2249 -6835,Melted Chicken,2250 -6836,Magnificent Pretzel,2250 -6837,Obedient Bread,2250 -6838,Testy Beets,2250 -6839,Sad Carrots,2250 -6840,Straight Mushrooms,2251 -6841,Courageous Beef,2251 -6842,Huge Mushrooms,2251 -6843,S Chicken,2251 -6844,Pretty Carrots,2251 -6845,Quickest Honey,2252 -6846,Scary Beets,2252 -6847,Edible Greens,2253 -6848,Odd Pretzel,2254 -6849,Enthusiastic Pretzel,2254 -6850,Lonely Burrito,2254 -6851,Yellow Burrito,2254 -6852,Miniature Burrito,2254 -6853,Embarrassed Honey,2255 -6854,Blue Greens,2256 -6855,Defiant Honey,2257 -6856,– Carrots,2258 -6857,Sticky Burrito,2258 -6858,Grumpy Honey,2258 -6859,– Fruit,2258 -6860,Testy Beef,2259 -6861,Lazy Greens,2259 -6862,Uneven Mushrooms,2259 -6863,Sour Fish,2259 -6864,Tart Fruit,2259 -6865,Voiceless Chicken,2260 -6866,Helpless Mushrooms,2260 -6867,Blue Fish,2261 -6868,Dull Carrots,2261 -6869,Fuzzy Burrito,2261 -6870,Fuzzy Pretzel,2261 -6871,Watery Chicken,2261 -6872,New Pretzel,2262 -6873,Wasteful Fruit,2262 -6874,Prickly Carrots,2262 -6875,Itchy Fruit,2263 -6876,Squealing Bread,2263 -6877,Incredible Bread,2263 -6878,Crazy Apples,2263 -6879,Disturbed Chicken,2263 -6880,Calm Beets,2264 -6881,Ugliest Mushrooms,2264 -6882,Happy Carrots,2264 -6883,R Beef,2264 -6884,Resonant Apples,2265 -6885,Gorgeous Beef,2265 -6886,Tight Burrito,2266 -6887,Defeated Fruit,2266 -6888,Melted Fruit,2266 -6889,Enthusiastic Honey,2266 -6890,Tan Honey,2267 -6891,Brave Apples,2268 -6892,Shallow Apples,2268 -6893,Flat Beets,2268 -6894,Faint Fish,2269 -6895,Curly Beets,2269 -6896,Crazy Bread,2270 -6897,Quiet Bread,2271 -6898,Mute Mushrooms,2271 -6899,Narrow Apples,2271 -6900,Moist Carrots,2272 -6901,Tight Mushrooms,2272 -6902,Mammoth Honey,2272 -6903,Angry Pretzel,2272 -6904,Tricky Beets,2273 -6905,Stale Mushrooms,2273 -6906,Fluffy Pretzel,2273 -6907,Cooing Carrots,2273 -6908,Round Fruit,2273 -6909,Immense Greens,2274 -6910,Soft Bread,2275 -6911,Greasy Beets,2275 -6912,Harsh Fish,2275 -6913,Ancient Fish,2276 -6914,Charming Fish,2277 -6915,Successful Fish,2277 -6916,Eager Fish,2277 -6917,Kickin' Chicken,2277 -6918,Dull Bread,2277 -6919,Steep Chicken,2278 -6920,Salty Burrito,2278 -6921,Little Honey,2278 -6922,Purring Honey,2278 -6923,Evil Honey,2278 -6924,R Fish,2279 -6925,Exuberant Pretzel,2279 -6926,Tricky Beets,2279 -6927,Old Greens,2279 -6928,Narrow Apples,2280 -6929,Stale Chicken,2280 -6930,Lucky Pretzel,2280 -6931,Fantastic Chicken,2281 -6932,Long Carrots,2281 -6933,Wicked Chicken,2282 -6934,Ashamed Burrito,2282 -6935,Precious Chicken,2282 -6936,Chilly Apples,2282 -6937,Loud Fruit,2283 -6938,Selfish Carrots,2284 -6939,Determined Apples,2284 -6940,Boom-town Chicken,2285 -6941,Defeated Beets,2285 -6942,Shrill Beets,2285 -6943,Dirty Fruit,2286 -6944,Grand Honey,2286 -6945,Massive Pretzel,2286 -6946,Stupendous Burrito,2286 -6947,Cheerful Apples,2287 -6948,Tart Beef,2287 -6949,Disturbed Bread,2287 -6950,Broad Burrito,2288 -6951,Pretty Chicken,2288 -6952,Righteous Honey,2288 -6953,Annoyed Beets,2289 -6954,M Beef,2289 -6955,Awful Honey,2289 -6956,Odd Mushrooms,2289 -6957,Massive Fruit,2290 -6958,Fast Pretzel,2290 -6959,Silent Beef,2290 -6960,Grieving Apples,2291 -6961,Loud Chicken,2291 -6962,Selfish Greens,2291 -6963,Quiet Greens,2292 -6964,Massive Mushrooms,2292 -6965,Low Apples,2292 -6966,Selfish Greens,2292 -6967,Colossal Carrots,2293 -6968,Brave Beef,2294 -6969,Defeated Greens,2294 -6970,Rough Greens,2295 -6971,Hilarious Apples,2295 -6972,Ashamed Greens,2296 -6973,Combative Beef,2296 -6974,Quick Apples,2296 -6975,Enthusiastic Apples,2297 -6976,Harsh Fish,2297 -6977,Breezy Fish,2298 -6978,Striped Beets,2298 -6979,Empty Apples,2298 -6980,Wet Bread,2298 -6981,Slippery Fish,2298 -6982,Nervous Honey,2299 -6983,Fluffy Chicken,2300 -6984,Hollow Apples,2300 -6985,Arrogant Beef,2300 -6986,Cruel Fish,2300 -6987,Loose Burrito,2300 -6988,Awful Bread,2301 -6989,Average Pretzel,2301 -6990,Precious Bread,2301 -6991,Hissing Honey,2301 -6992,Incredible Burrito,2302 -6993,Grieving Fish,2302 -6994,Flat Apples,2302 -6995,Robust Greens,2302 -6996,Little Greens,2303 -6997,Great Beef,2303 -6998,Mighty Mushrooms,2304 -6999,Solid Fish,2304 -7000,Thirsty Carrots,2304 -7001,Empty Chicken,2305 -7002,Stale Fruit,2305 -7003,Better Beets,2305 -7004,Ugliest Apples,2306 -7005,Panicky Beets,2307 -7006,Lively Fish,2307 -7007,Anxious Fruit,2307 -7008,Stupendous Fish,2308 -7009,Tight Chicken,2308 -7010,Determined Chicken,2308 -7011,– Fruit,2308 -7012,Miniature Bread,2308 -7013,Smooth Chicken,2309 -7014,Uptight Beef,2309 -7015,Ripe Beets,2309 -7016,Wicked Apples,2309 -7017,Dangerous Mushrooms,2310 -7018,Obnoxious Fruit,2310 -7019,Icy Mushrooms,2310 -7020,Moaning Mushrooms,2310 -7021,Silly Bread,2310 -7022,Lonely Burrito,2311 -7023,Slimy Beef,2311 -7024,Hot Honey,2312 -7025,Cold Bread,2312 -7026,Purple Bread,2312 -7027,Hollow Mushrooms,2312 -7028,Moaning Mushrooms,2313 -7029,Purple Carrots,2313 -7030,Nom nom Apples,2313 -7031,Silly Mushrooms,2313 -7032,Thirsty Burrito,2314 -7033,Bumpy Beets,2315 -7034,Boring Beef,2315 -7035,Plastic Carrots,2315 -7036,Dusty Fruit,2315 -7037,Defiant Pretzel,2316 -7038,Elated Beets,2316 -7039,Stale Beef,2317 -7040,Mammoth Apples,2317 -7041,Good Pretzel,2317 -7042,Raspy Bread,2317 -7043,Cheerful Fish,2318 -7044,Mammoth Carrots,2318 -7045,Numerous Bread,2318 -7046,Early Chicken,2319 -7047,Quickest Greens,2319 -7048,Combative Fish,2319 -7049,Soft Apples,2319 -7050,Exuberant Beets,2320 -7051,Wide-eyed Burrito,2320 -7052,Cheerful Honey,2320 -7053,Giant Chicken,2320 -7054,Jittery Fish,2321 -7055,Lovely Chicken,2321 -7056,Curly Fish,2321 -7057,Empty Carrots,2321 -7058,Brave Carrots,2321 -7059,S Pretzel,2322 -7060,Square Beef,2322 -7061,Hilarious Burrito,2322 -7062,Shaggy Burrito,2322 -7063,Nervous Apples,2323 -7064,Sharp Chicken,2323 -7065,Purple Bread,2323 -7066,Hollow Pretzel,2323 -7067,Miniature Pretzel,2323 -7068,Robust Bread,2324 -7069,Annoyed Mushrooms,2324 -7070,Brief Burrito,2324 -7071,Awful Mushrooms,2324 -7072,Greasy Fruit,2325 -7073,Worried Bread,2326 -7074,Smooth Chicken,2326 -7075,Angry Burrito,2326 -7076,Loud Pretzel,2327 -7077,Whispering Fruit,2327 -7078,Lonely Fruit,2327 -7079,Shallow Beef,2328 -7080,Thirsty Apples,2328 -7081,Frightened Bread,2329 -7082,Fat Beef,2329 -7083,Tired Mushrooms,2330 -7084,Jolly Mushrooms,2330 -7085,Terrible Beef,2330 -7086,Exuberant Apples,2330 -7087,Defiant Apples,2330 -7088,Long Fruit,2331 -7089,Curved Bread,2331 -7090,Faithful Beef,2331 -7091,Weak Beef,2331 -7092,Shrill Greens,2331 -7093,Zany Greens,2332 -7094,Terrible Fish,2332 -7095,Narrow Greens,2332 -7096,Exuberant Beets,2333 -7097,Jittery Carrots,2333 -7098,Fluffy Pretzel,2333 -7099,Tender Burrito,2333 -7100,Wonderful Beef,2333 -7101,Testy Chicken,2334 -7102,Vast Carrots,2334 -7103,Itchy Honey,2334 -7104,Nasty Apples,2334 -7105,Jealous Honey,2335 -7106,Striped Pretzel,2335 -7107,Wet Fruit,2335 -7108,Outrageous Apples,2335 -7109,Tasty Beets,2335 -7110,Rare Apples,2336 -7111,Naughty Beets,2336 -7112,Breezy Beets,2337 -7113,Brave Pretzel,2337 -7114,Hollow Carrots,2338 -7115,Deafening Beets,2338 -7116,Depressed Beets,2338 -7117,Fierce Beef,2339 -7118,Stupendous Bread,2340 -7119,Red Greens,2340 -7120,Stingy Carrots,2340 -7121,Huge Carrots,2341 -7122,Obnoxious Fruit,2342 -7123,Gorgeous Pretzel,2342 -7124,Cooperative Chicken,2342 -7125,Smooth Fruit,2343 -7126,Tender Bread,2343 -7127,Worried Beef,2343 -7128,Filthy Honey,2344 -7129,Successful Greens,2344 -7130,Thoughtless Fish,2344 -7131,Amused Bread,2344 -7132,Skinny Beef,2345 -7133,Obnoxious Beef,2345 -7134,Salty Chicken,2345 -7135,Itchy Pretzel,2345 -7136,Tart Carrots,2345 -7137,Selfish Bread,2346 -7138,Calm Fish,2346 -7139,Perfect Carrots,2346 -7140,Nasty Bread,2347 -7141,Rough Beets,2348 -7142,Comfortable Fruit,2348 -7143,Prickly Fish,2348 -7144,Colossal Beets,2348 -7145,Scrawny Pretzel,2349 -7146,Green Beef,2349 -7147,Slow Pretzel,2350 -7148,Solid Beef,2350 -7149,Savory Honey,2350 -7150,Courageous Fish,2350 -7151,Lazy Mushrooms,2350 -7152,Round Fruit,2351 -7153,Proud Apples,2351 -7154,Steady Beef,2351 -7155,Gorgeous Fish,2351 -7156,Lovely Pretzel,2351 -7157,Colossal Chicken,2352 -7158,Lucky Pretzel,2352 -7159,Jumpin' Burrito,2352 -7160,Vivacious Pretzel,2353 -7161,Tan Pretzel,2354 -7162,Quaint Apples,2354 -7163,Defeated Fruit,2354 -7164,Tiny Apples,2354 -7165,Gorgeous Fish,2355 -7166,Striped Greens,2355 -7167,Steady Honey,2355 -7168,Rainy Burrito,2356 -7169,Perfect Greens,2356 -7170,Dull Greens,2356 -7171,Friendly Carrots,2357 -7172,Plain Honey,2357 -7173,Bitter Greens,2357 -7174,Fine Apples,2357 -7175,Charming Greens,2357 -7176,Rare Burrito,2358 -7177,Lucky Bread,2358 -7178,Colossal Carrots,2358 -7179,Vivacious Carrots,2358 -7180,Slimy Greens,2359 -7181,– Honey,2359 -7182,Nutty Beef,2359 -7183,Silly Mushrooms,2359 -7184,Selfish Bread,2359 -7185,Jealous Carrots,2360 -7186,Green Apples,2361 -7187,Shrill Apples,2361 -7188,Tough Beets,2361 -7189,R Apples,2362 -7190,Fluffy Honey,2362 -7191,Round Bread,2362 -7192,Nervous Greens,2362 -7193,Fresh Carrots,2362 -7194,Tasty Apples,2363 -7195,Edible Chicken,2363 -7196,Tame Pretzel,2363 -7197,Melted Chicken,2363 -7198,Tame Greens,2363 -7199,Square Chicken,2364 -7200,Lazy Beets,2364 -7201,Curly Mushrooms,2364 -7202,Tired Carrots,2364 -7203,Gorgeous Honey,2364 -7204,Helpful Greens,2365 -7205,Delightful Carrots,2366 -7206,Quickest Beets,2366 -7207,Hollow Fish,2366 -7208,Flat Greens,2366 -7209,Silent Beets,2367 -7210,Defeated Pretzel,2367 -7211,Scary Carrots,2367 -7212,Steep Fish,2367 -7213,Worried Fish,2368 -7214,Melodic Mushrooms,2368 -7215,Savory Carrots,2368 -7216,Square Fish,2368 -7217,Silent Mushrooms,2368 -7218,Husky Carrots,2369 -7219,Small Pretzel,2370 -7220,Naughty Beets,2370 -7221,Grubby Bread,2371 -7222,Whispering Chicken,2371 -7223,Massive Pretzel,2371 -7224,Wooden Bread,2371 -7225,Splendid Beef,2371 -7226,Fine Chicken,2372 -7227,Combative Fruit,2372 -7228,Bitter Honey,2372 -7229,Spicy Beef,2373 -7230,Hollow Pretzel,2374 -7231,Dirty Carrots,2374 -7232,Stale Beef,2374 -7233,Icy Mushrooms,2374 -7234,Nosy Fruit,2374 -7235,Narrow Beef,2375 -7236,Wasteful Carrots,2376 -7237,Hissing Pretzel,2376 -7238,Breezy Carrots,2377 -7239,Crazy Mushrooms,2378 -7240,Fresh Greens,2378 -7241,Witty Carrots,2379 -7242,Hilarious Fruit,2380 -7243,Skinny Carrots,2380 -7244,Dry Burrito,2381 -7245,Hilarious Carrots,2381 -7246,Thundering Mushrooms,2381 -7247,Sad Apples,2382 -7248,Nice Beets,2383 -7249,Ugliest Chicken,2383 -7250,Thoughtless Fruit,2384 -7251,Evil Mushrooms,2385 -7252,Frantic Fish,2385 -7253,Uneven Pretzel,2385 -7254,Frantic Burrito,2386 -7255,Dizzy Carrots,2386 -7256,Depressed Chicken,2386 -7257,Bad Carrots,2386 -7258,High Chicken,2386 -7259,Boom-town Fruit,2387 -7260,Good Greens,2387 -7261,Hissing Greens,2387 -7262,Helpful Pretzel,2387 -7263,Ashamed Greens,2387 -7264,Cruel Fish,2388 -7265,Boring Fruit,2388 -7266,Silent Fruit,2388 -7267,Dirty Chicken,2388 -7268,Obedient Pretzel,2388 -7269,Delicious Carrots,2389 -7270,Witty Honey,2389 -7271,Crazy Carrots,2389 -7272,Beautiful Fish,2390 -7273,Immense Pretzel,2390 -7274,Shaggy Beets,2390 -7275,Mute Mushrooms,2391 -7276,Whispering Apples,2391 -7277,Juicy Carrots,2392 -7278,Solid Beets,2392 -7279,Chilly Beets,2392 -7280,Deep Greens,2392 -7281,Swift Beets,2392 -7282,Cruel Greens,2393 -7283,Moaning Greens,2393 -7284,Confused Greens,2393 -7285,Numerous Beef,2394 -7286,Thundering Beef,2395 -7287,Salty Bread,2395 -7288,Resonant Apples,2395 -7289,Worried Honey,2396 -7290,Dry Fruit,2396 -7291,Weak Fish,2396 -7292,Heavy Fruit,2396 -7293,Pickled Honey,2397 -7294,Greasy Chicken,2397 -7295,Ill Bread,2398 -7296,S Greens,2398 -7297,Precious Mushrooms,2398 -7298,Immense Greens,2398 -7299,Lazy Mushrooms,2398 -7300,Angry Mushrooms,2399 -7301,Nosy Mushrooms,2399 -7302,Fat Carrots,2400 -7303,Moaning Apples,2400 -7304,Amused Bread,2400 -7305,Zany Honey,2400 -7306,Salty Fruit,2400 -7307,Perfect Beets,2401 -7308,Healthy Beef,2401 -7309,Mysterious Apples,2401 -7310,Quiet Pretzel,2401 -7311,Brief Apples,2402 -7312,Bright Bread,2402 -7313,Tender Carrots,2403 -7314,Average Bread,2403 -7315,Annoyed Burrito,2403 -7316,Smooth Honey,2403 -7317,Hot Burrito,2404 -7318,Massive Chicken,2404 -7319,Uptight Bread,2405 -7320,Wooden Greens,2405 -7321,Screeching Fruit,2405 -7322,Salty Honey,2406 -7323,Shallow Greens,2406 -7324,Tan Apples,2407 -7325,Many Chicken,2407 -7326,Confused Beets,2408 -7327,Cool Fish,2409 -7328,Deafening Mushrooms,2409 -7329,Raspy Apples,2409 -7330,Good Carrots,2409 -7331,Eager Beets,2410 -7332,Salty Carrots,2411 -7333,Old Bread,2411 -7334,Rapid Apples,2411 -7335,Melted Fish,2411 -7336,Resonant Beef,2412 -7337,Grand Beets,2412 -7338,Green Honey,2413 -7339,Purple Honey,2413 -7340,Massive Carrots,2413 -7341,Resonant Greens,2413 -7342,Tender Apples,2413 -7343,Happy Bread,2414 -7344,Tasteless Pretzel,2414 -7345,Brief Apples,2415 -7346,Ugly Beef,2415 -7347,Straight Apples,2415 -7348,Huge Beets,2415 -7349,Tender Apples,2415 -7350,Ill Apples,2416 -7351,Tiny Apples,2416 -7352,High Beef,2416 -7353,Modern Honey,2416 -7354,Thoughtful Apples,2416 -7355,Tense Greens,2417 -7356,Rare Pretzel,2417 -7357,Arrogant Beets,2417 -7358,Fluffy Bread,2417 -7359,Elated Chicken,2418 -7360,Kickin' Beets,2418 -7361,Slippery Honey,2418 -7362,Pretty Chicken,2419 -7363,Wicked Carrots,2419 -7364,Jumpin' Pretzel,2420 -7365,Pleasant Carrots,2421 -7366,Magnificent Honey,2421 -7367,Modern Beets,2421 -7368,Wonderful Apples,2421 -7369,Massive Fish,2421 -7370,Thoughtless Burrito,2422 -7371,Tricky Beets,2422 -7372,Grumpy Beets,2422 -7373,Small Pretzel,2422 -7374,Big Beets,2422 -7375,Fantastic Apples,2423 -7376,Chilly Chicken,2424 -7377,Panicky Apples,2424 -7378,Sweet Pretzel,2424 -7379,Colossal Beets,2424 -7380,Deep Apples,2424 -7381,Helpless Carrots,2425 -7382,Tasty Greens,2425 -7383,Successful Greens,2425 -7384,Spicy Fruit,2426 -7385,Melodic Beets,2426 -7386,Loud Carrots,2426 -7387,Dry Carrots,2426 -7388,Stingy Bread,2427 -7389,Rotten Beef,2427 -7390,Agreeable Apples,2428 -7391,Ordinary Greens,2428 -7392,Strong Greens,2429 -7393,Tame Honey,2429 -7394,Weak Carrots,2429 -7395,Loud Beef,2430 -7396,Pleasant Fruit,2430 -7397,Enthusiastic Beets,2430 -7398,Screeching Burrito,2431 -7399,Slow Apples,2431 -7400,Bright Pretzel,2431 -7401,Bad Burrito,2431 -7402,Mysterious Pretzel,2432 -7403,Slimy Beef,2432 -7404,Strong Carrots,2432 -7405,Round Carrots,2432 -7406,Breezy Beets,2432 -7407,Long Chicken,2433 -7408,Tired Apples,2433 -7409,S Beef,2433 -7410,Energetic Bread,2433 -7411,Loose Carrots,2434 -7412,Purring Beets,2434 -7413,Tricky Chicken,2435 -7414,Gentle Fish,2435 -7415,Quiet Bread,2435 -7416,Pickled Greens,2435 -7417,Blue Carrots,2435 -7418,Victorious Burrito,2436 -7419,Rough Beets,2436 -7420,Sour Fruit,2437 -7421,Better Apples,2438 -7422,Tense Apples,2438 -7423,Gigantic Greens,2438 -7424,Fast Beets,2439 -7425,Spicy Carrots,2439 -7426,Tricky Carrots,2439 -7427,Nosy Beef,2440 -7428,Naughty Fish,2440 -7429,Awful Beef,2440 -7430,Silky Beef,2440 -7431,Stingy Fish,2441 -7432,Helpless Chicken,2441 -7433,Husky Chicken,2441 -7434,Cooperative Mushrooms,2442 -7435,Cheerful Bread,2442 -7436,Purple Bread,2442 -7437,Steady Mushrooms,2442 -7438,Giant Beef,2443 -7439,Arrogant Mushrooms,2443 -7440,Melodic Greens,2443 -7441,Naughty Fish,2444 -7442,Stale Honey,2444 -7443,Homeless Pretzel,2445 -7444,Fast Mushrooms,2445 -7445,Many Bread,2445 -7446,Vast Carrots,2446 -7447,Old Beets,2447 -7448,Enthusiastic Burrito,2447 -7449,Delightful Bread,2447 -7450,Uptight Bread,2447 -7451,Exuberant Honey,2448 -7452,Nosy Honey,2448 -7453,Late Burrito,2448 -7454,Scary Chicken,2448 -7455,Old Bread,2449 -7456,Fluffy Beef,2449 -7457,Dangerous Mushrooms,2449 -7458,Curved Bread,2449 -7459,Encouraging Mushrooms,2450 -7460,Hilarious Pretzel,2451 -7461,Tender Apples,2451 -7462,Ancient Mushrooms,2451 -7463,Wooden Carrots,2451 -7464,Quickest Pretzel,2451 -7465,Happy Honey,2452 -7466,Tight Greens,2452 -7467,Breezy Honey,2452 -7468,Repulsive Mushrooms,2453 -7469,Lively Apples,2453 -7470,Repulsive Pretzel,2454 -7471,Silly Beef,2454 -7472,Dull Pretzel,2454 -7473,Calm Mushrooms,2455 -7474,Skinny Apples,2455 -7475,Moist Burrito,2455 -7476,Tight Burrito,2455 -7477,Defeated Honey,2455 -7478,Spicy Honey,2456 -7479,Mysterious Beef,2456 -7480,Grand Fruit,2456 -7481,Greasy Chicken,2457 -7482,Calm Fruit,2457 -7483,Panicky Apples,2457 -7484,Sticky Chicken,2458 -7485,Elated Beets,2459 -7486,Flaky Apples,2459 -7487,Tame Bread,2460 -7488,Frightened Honey,2460 -7489,Gentle Beef,2460 -7490,Numerous Carrots,2460 -7491,Lucky Beef,2460 -7492,Deep Apples,2461 -7493,Hard Honey,2461 -7494,Eager Apples,2461 -7495,Early Beets,2461 -7496,Proud Greens,2462 -7497,Screeching Mushrooms,2462 -7498,Empty Honey,2462 -7499,Ugly Mushrooms,2462 -7500,Lovely Chicken,2462 -7501,Slimy Beets,2463 -7502,Large Bread,2463 -7503,Confused Mushrooms,2463 -7504,Rough Bread,2464 -7505,Thundering Pretzel,2464 -7506,Beautiful Apples,2464 -7507,Massive Mushrooms,2465 -7508,Zany Honey,2465 -7509,High Bread,2465 -7510,Wonderful Apples,2466 -7511,Obnoxious Burrito,2467 -7512,Quiet Beef,2467 -7513,Jealous Pretzel,2467 -7514,Uneven Chicken,2467 -7515,Repulsive Beets,2467 -7516,Round Apples,2468 -7517,Green Fruit,2468 -7518,Disgusted Apples,2468 -7519,Broad Burrito,2468 -7520,Lonely Bread,2469 -7521,Broad Beef,2469 -7522,Slippery Chicken,2469 -7523,Striped Honey,2470 -7524,Bland Burrito,2470 -7525,Comfortable Pretzel,2470 -7526,Homeless Greens,2470 -7527,Hollow Apples,2470 -7528,Courageous Beef,2471 -7529,Incredible Burrito,2471 -7530,Yummy Fruit,2471 -7531,Boiling Bread,2472 -7532,Afraid Chicken,2472 -7533,Giant Carrots,2472 -7534,Steep Fish,2473 -7535,Melted Apples,2473 -7536,Nosy Chicken,2473 -7537,Grumpy Honey,2473 -7538,Nosy Apples,2473 -7539,Hard Fish,2474 -7540,Jealous Beets,2474 -7541,Tart Apples,2474 -7542,Fast Pretzel,2474 -7543,Savory Mushrooms,2475 -7544,High Pretzel,2476 -7545,Husky Chicken,2476 -7546,Swift Pretzel,2477 -7547,Ratty Fish,2477 -7548,Exuberant Beef,2478 -7549,Sour Greens,2478 -7550,Cruel Honey,2479 -7551,Slow Carrots,2479 -7552,Wet Beef,2479 -7553,Disgusted Chicken,2479 -7554,M Chicken,2480 -7555,Outrageous Chicken,2481 -7556,Yummy Beets,2481 -7557,Scary Burrito,2482 -7558,Purring Bread,2482 -7559,Screeching Beef,2482 -7560,Shivering Chicken,2482 -7561,Average Honey,2482 -7562,Hurt Fruit,2483 -7563,Soft Chicken,2483 -7564,Immense Burrito,2483 -7565,Raspy Fruit,2483 -7566,Cuddly Greens,2483 -7567,Steady Beef,2484 -7568,Spicy Beets,2484 -7569,Hurt Greens,2484 -7570,Lucky Greens,2485 -7571,Low Fish,2485 -7572,M Bread,2485 -7573,Immense Fish,2485 -7574,Ordinary Fish,2485 -7575,Black Apples,2486 -7576,Fuzzy Burrito,2486 -7577,Repulsive Honey,2486 -7578,Ugliest Chicken,2487 -7579,Boom-town Bread,2487 -7580,Bland Fruit,2487 -7581,Striped Fish,2487 -7582,Bland Pretzel,2487 -7583,Rapid Pretzel,2488 -7584,Scrumptious Beef,2488 -7585,Panicky Fruit,2488 -7586,Beautiful Chicken,2488 -7587,Elated Fish,2488 -7588,Pickled Chicken,2489 -7589,Fat Fruit,2490 -7590,Enthusiastic Fish,2491 -7591,Edible Fish,2492 -7592,Tense Fish,2492 -7593,Horrible Burrito,2492 -7594,Stingy Honey,2492 -7595,Thundering Fish,2493 -7596,Tender Bread,2493 -7597,Wonderful Carrots,2493 -7598,Immense Mushrooms,2494 -7599,Broken Honey,2494 -7600,Plastic Carrots,2494 -7601,Kind Carrots,2494 -7602,Disturbed Carrots,2494 -7603,Stupendous Carrots,2495 -7604,Bland Honey,2495 -7605,Depressed Mushrooms,2496 -7606,Many Fish,2496 -7607,Lonely Pretzel,2497 -7608,Flat Burrito,2497 -7609,Salty Apples,2497 -7610,Good Chicken,2497 -7611,Dusty Apples,2498 -7612,Late Fish,2498 -7613,Hurt Apples,2498 -7614,Healthy Greens,2499 -7615,Itchy Carrots,2500 -7616,Shrill Beets,2500 -7617,Frantic Beef,2500 -7618,Evil Mushrooms,2500 -7619,Ill Fruit,2500 -7620,Bitter Beef,2501 -7621,Quaint Greens,2501 -7622,Delightful Mushrooms,2502 -7623,Angry Chicken,2502 -7624,Fast Greens,2503 -7625,Wonderful Mushrooms,2503 -7626,Obnoxious Honey,2503 -7627,Curved Beef,2504 -7628,Straight Greens,2504 -7629,Pleasant Beef,2505 -7630,Hilarious Mushrooms,2505 -7631,Loose Apples,2506 -7632,Tender Beets,2506 -7633,Sore Beef,2507 -7634,Fresh Fish,2507 -7635,Massive Mushrooms,2507 -7636,Rotten Beets,2507 -7637,Swift Apples,2507 -7638,Awful Carrots,2508 -7639,Late Chicken,2508 -7640,Great Beets,2508 -7641,Fantastic Beets,2508 -7642,Hurt Fruit,2508 -7643,Grumpy Beets,2509 -7644,Perfect Greens,2509 -7645,Comfortable Mushrooms,2510 -7646,Numerous Fruit,2510 -7647,Steep Fish,2510 -7648,Loud Honey,2511 -7649,Grubby Burrito,2511 -7650,Modern Bread,2511 -7651,Roasted Beets,2511 -7652,Weary Chicken,2512 -7653,Curly Greens,2512 -7654,Fierce Mushrooms,2513 -7655,Quiet Apples,2513 -7656,Panicky Beef,2513 -7657,Shaggy Bread,2514 -7658,Wide Apples,2514 -7659,Wicked Chicken,2515 -7660,Hungry Beets,2515 -7661,Handsome Honey,2516 -7662,Slimy Carrots,2516 -7663,Shivering Fruit,2516 -7664,Grubby Pretzel,2516 -7665,Tender Fish,2516 -7666,Late Fish,2517 -7667,Jumpin' Fruit,2517 -7668,Defiant Honey,2517 -7669,Tall Apples,2518 -7670,Strange Chicken,2519 -7671,Salty Honey,2519 -7672,Wonderful Mushrooms,2519 -7673,Grumpy Apples,2519 -7674,Soft Mushrooms,2520 -7675,Melodic Pretzel,2520 -7676,Foolish Bread,2520 -7677,Ashamed Fruit,2520 -7678,Strange Beef,2520 -7679,Horrible Burrito,2521 -7680,Breezy Mushrooms,2521 -7681,Comfortable Greens,2521 -7682,Hollow Apples,2522 -7683,Shaggy Honey,2522 -7684,Thoughtless Carrots,2522 -7685,Hot Apples,2523 -7686,Great Chicken,2523 -7687,Fluffy Beef,2523 -7688,M Beef,2524 -7689,Enthusiastic Greens,2524 -7690,Young Bread,2524 -7691,Arrogant Fish,2524 -7692,Wet Apples,2524 -7693,Red Bread,2525 -7694,Little Carrots,2525 -7695,Fluffy Beets,2525 -7696,Icy Pretzel,2526 -7697,Calm Beets,2526 -7698,Whispering Pretzel,2526 -7699,Greasy Mushrooms,2527 -7700,Faithful Chicken,2527 -7701,Scrawny Carrots,2527 -7702,Plain Beef,2527 -7703,Broad Chicken,2527 -7704,Wonderful Apples,2528 -7705,S Apples,2528 -7706,Bad Fruit,2529 -7707,Hard Pretzel,2529 -7708,Amused Greens,2529 -7709,Petite Carrots,2530 -7710,Round Chicken,2530 -7711,Shallow Burrito,2530 -7712,Bright Chicken,2530 -7713,Tasty Pretzel,2530 -7714,Bitter Bread,2531 -7715,Great Beets,2531 -7716,Steady Bread,2532 -7717,Charming Pretzel,2532 -7718,Juicy Beef,2532 -7719,Excited Beets,2532 -7720,Weak Pretzel,2533 -7721,Lucky Carrots,2533 -7722,Numerous Fruit,2533 -7723,Juicy Beets,2534 -7724,Worried Carrots,2534 -7725,Bright Beef,2535 -7726,Purple Fruit,2535 -7727,Obnoxious Burrito,2535 -7728,Robust Fish,2535 -7729,Arrogant Honey,2536 -7730,Beautiful Greens,2537 -7731,Uneven Beef,2537 -7732,Pretty Fish,2538 -7733,Tricky Greens,2538 -7734,Great Chicken,2539 -7735,Troubled Pretzel,2539 -7736,Boring Fish,2539 -7737,Juicy Greens,2540 -7738,Tricky Chicken,2540 -7739,Late Apples,2541 -7740,Mysterious Pretzel,2541 -7741,Successful Pretzel,2541 -7742,Angry Beef,2541 -7743,Curly Carrots,2542 -7744,New Beets,2542 -7745,Purple Beets,2542 -7746,Friendly Chicken,2542 -7747,M Burrito,2543 -7748,Massive Beets,2543 -7749,Scrawny Greens,2543 -7750,Fluffy Fish,2543 -7751,Disgusted Beef,2543 -7752,Smiling Greens,2544 -7753,Quaint Beef,2544 -7754,Perfect Pretzel,2544 -7755,Huge Fruit,2544 -7756,Smooth Beets,2545 -7757,Frail Beef,2545 -7758,Fresh Pretzel,2545 -7759,Light Bread,2545 -7760,Deafening Carrots,2546 -7761,Terrible Greens,2547 -7762,Old Carrots,2547 -7763,Flat Beets,2547 -7764,Fair Fish,2547 -7765,Uneven Beets,2547 -7766,Greasy Fish,2548 -7767,High Burrito,2548 -7768,Loose Greens,2549 -7769,Ugly Mushrooms,2550 -7770,R Greens,2550 -7771,Quaint Apples,2550 -7772,Sour Fruit,2551 -7773,Scary Honey,2551 -7774,Lovely Beets,2551 -7775,Gorgeous Bread,2551 -7776,Fantastic Pretzel,2551 -7777,Lonely Beef,2552 -7778,Annoyed Apples,2552 -7779,Hard Carrots,2552 -7780,Obnoxious Greens,2552 -7781,Puny Pretzel,2553 -7782,Steep Bread,2553 -7783,Bland Greens,2553 -7784,Large Pretzel,2553 -7785,Colossal Apples,2553 -7786,Low Carrots,2554 -7787,Watery Apples,2554 -7788,Eager Burrito,2554 -7789,Wasteful Honey,2554 -7790,Ashamed Mushrooms,2554 -7791,Large Beef,2555 -7792,Skinny Mushrooms,2556 -7793,Magnificent Chicken,2557 -7794,Rotten Fruit,2557 -7795,New Beets,2557 -7796,Helpful Fruit,2557 -7797,Envious Honey,2558 -7798,Breezy Carrots,2558 -7799,Stupendous Chicken,2559 -7800,Angry Beef,2559 -7801,Rapid Apples,2559 -7802,Watery Fish,2559 -7803,Short Apples,2560 -7804,Agreeable Pretzel,2561 -7805,Slimy Mushrooms,2561 -7806,Gorgeous Honey,2561 -7807,Tiny Apples,2562 -7808,Awful Carrots,2563 -7809,Splendid Honey,2563 -7810,Rainy Chicken,2563 -7811,Boring Honey,2563 -7812,Faint Beets,2564 -7813,Rainy Carrots,2564 -7814,Rotten Pretzel,2564 -7815,New Carrots,2565 -7816,Disgusted Bread,2565 -7817,Solid Beef,2565 -7818,Purple Beets,2566 -7819,Uptight Greens,2566 -7820,Steady Apples,2566 -7821,Nervous Fruit,2566 -7822,Frantic Fish,2567 -7823,Giant Beets,2567 -7824,Giant Pretzel,2568 -7825,Agreeable Greens,2568 -7826,Dizzy Beef,2568 -7827,Mammoth Honey,2568 -7828,Mighty Bread,2568 -7829,Fine Bread,2569 -7830,Silky Mushrooms,2569 -7831,New Greens,2569 -7832,Squealing Carrots,2570 -7833,Hissing Honey,2570 -7834,Kind Mushrooms,2570 -7835,Proud Bread,2570 -7836,Cheerful Honey,2571 -7837,Cooing Mushrooms,2572 -7838,Victorious Bread,2572 -7839,Breezy Fruit,2572 -7840,Flaky Burrito,2572 -7841,Witty Bread,2573 -7842,Jolly Honey,2573 -7843,Screeching Fish,2573 -7844,Odd Fish,2573 -7845,Shaky Beef,2574 -7846,Envious Pretzel,2574 -7847,Kickin' Fish,2574 -7848,Energetic Fruit,2575 -7849,Good Mushrooms,2576 -7850,Straight Greens,2576 -7851,Moist Beets,2576 -7852,Upset Pretzel,2577 -7853,Uptight Pretzel,2577 -7854,Evil Carrots,2577 -7855,Frail Greens,2578 -7856,Gorgeous Fish,2578 -7857,Steady Apples,2578 -7858,M Carrots,2578 -7859,Pretty Apples,2578 -7860,Salty Greens,2579 -7861,Odd Bread,2579 -7862,Spicy Honey,2579 -7863,Few Mushrooms,2579 -7864,Charming Pretzel,2580 -7865,Cuddly Carrots,2581 -7866,Great Fish,2581 -7867,Nasty Beef,2581 -7868,Faint Honey,2581 -7869,Loud Carrots,2581 -7870,Colossal Fish,2582 -7871,Screeching Burrito,2582 -7872,Spicy Mushrooms,2583 -7873,Round Pretzel,2583 -7874,Tasty Fish,2584 -7875,Broken Pretzel,2584 -7876,Elated Greens,2584 -7877,Silly Apples,2584 -7878,Witty Honey,2585 -7879,Dizzy Beef,2585 -7880,Skinny Beets,2585 -7881,Resonant Bread,2586 -7882,Strange Mushrooms,2586 -7883,Outrageous Fruit,2586 -7884,Fluffy Chicken,2586 -7885,Proud Mushrooms,2586 -7886,Few Beets,2587 -7887,Long Carrots,2587 -7888,Quickest Fruit,2587 -7889,Hilarious Mushrooms,2588 -7890,Crazy Carrots,2588 -7891,Cool Burrito,2588 -7892,Savory Bread,2589 -7893,Floppy Carrots,2589 -7894,Black Beets,2589 -7895,Determined Honey,2590 -7896,Gorgeous Beets,2590 -7897,Screeching Burrito,2591 -7898,Sore Chicken,2591 -7899,Outrageous Burrito,2591 -7900,Small Mushrooms,2591 -7901,Clumsy Carrots,2591 -7902,Lucky Beets,2592 -7903,Steady Beef,2593 -7904,Stale Bread,2593 -7905,Combative Beets,2593 -7906,Lucky Honey,2593 -7907,Friendly Burrito,2594 -7908,Greasy Fish,2594 -7909,Dangerous Greens,2594 -7910,Lucky Fish,2595 -7911,Quiet Beef,2595 -7912,Green Beef,2596 -7913,Ordinary Fruit,2596 -7914,Green Burrito,2596 -7915,Voiceless Beef,2596 -7916,Great Greens,2596 -7917,Old Beets,2597 -7918,Resonant Carrots,2597 -7919,Black Chicken,2597 -7920,Tame Greens,2598 -7921,Raspy Pretzel,2598 -7922,Tame Mushrooms,2599 -7923,Boring Carrots,2599 -7924,Uptight Chicken,2599 -7925,Mute Burrito,2599 -7926,Grumpy Carrots,2600 -7927,Friendly Carrots,2600 -7928,Shallow Bread,2601 -7929,Wonderful Fruit,2602 -7930,Faithful Bread,2602 -7931,Plastic Pretzel,2603 -7932,Juicy Fish,2603 -7933,Fresh Apples,2603 -7934,Frightened Pretzel,2604 -7935,Moaning Beef,2604 -7936,Nervous Beef,2605 -7937,Orange Bread,2605 -7938,Hissing Burrito,2605 -7939,Ordinary Greens,2605 -7940,Wide-eyed Apples,2606 -7941,Broad Fish,2606 -7942,Resonant Mushrooms,2606 -7943,Lucky Bread,2606 -7944,Splendid Greens,2607 -7945,Selfish Carrots,2607 -7946,Broken Chicken,2607 -7947,Thundering Bread,2608 -7948,Low Greens,2608 -7949,Ratty Beef,2609 -7950,Salty Honey,2609 -7951,Deep Bread,2609 -7952,Cooperative Carrots,2609 -7953,Numerous Honey,2609 -7954,Upset Pretzel,2610 -7955,Angry Fruit,2610 -7956,Squealing Fruit,2610 -7957,Watery Beef,2610 -7958,Green Carrots,2611 -7959,Boom-town Beef,2611 -7960,Stale Burrito,2611 -7961,Swift Apples,2611 -7962,Kickin' Carrots,2612 -7963,Good Mushrooms,2612 -7964,Courageous Fish,2613 -7965,Faint Fruit,2613 -7966,Raspy Beets,2614 -7967,Floppy Burrito,2614 -7968,Healthy Beets,2614 -7969,Eager Beef,2614 -7970,Odd Carrots,2614 -7971,Delicious Fruit,2615 -7972,Steep Carrots,2616 -7973,Slow Chicken,2616 -7974,Average Mushrooms,2616 -7975,Foolish Beets,2616 -7976,Hushed Fruit,2617 -7977,Robust Fish,2618 -7978,Rotten Mushrooms,2618 -7979,Blue Bread,2618 -7980,Vast Pretzel,2618 -7981,Embarrassed Beef,2619 -7982,Jittery Mushrooms,2620 -7983,Loud Greens,2620 -7984,Straight Fruit,2620 -7985,Little Apples,2620 -7986,Shaky Bread,2621 -7987,Plain Honey,2621 -7988,Dry Pretzel,2621 -7989,Afraid Mushrooms,2621 -7990,Husky Beef,2621 -7991,Slow Pretzel,2622 -7992,Uptight Burrito,2622 -7993,Foolish Beets,2622 -7994,Tasty Beets,2623 -7995,Proud Honey,2623 -7996,Slippery Greens,2623 -7997,Determined Carrots,2623 -7998,Upset Apples,2624 -7999,Zany Mushrooms,2624 -8000,Terrible Fruit,2624 -8001,Helpful Chicken,2625 -8002,Ripe Mushrooms,2626 -8003,Fuzzy Burrito,2626 -8004,Odd Burrito,2626 -8005,Kind Beets,2627 -8006,Boiling Apples,2627 -8007,Righteous Fish,2627 -8008,Fuzzy Pretzel,2627 -8009,Homeless Fruit,2627 -8010,Dangerous Chicken,2628 -8011,Jumpin' Mushrooms,2628 -8012,Steep Beets,2628 -8013,Many Fish,2629 -8014,Silent Greens,2629 -8015,Thoughtful Chicken,2629 -8016,Victorious Fruit,2630 -8017,Mute Mushrooms,2631 -8018,Green Pretzel,2631 -8019,Steady Apples,2632 -8020,Wide-eyed Burrito,2632 -8021,Greasy Chicken,2632 -8022,Magnificent Burrito,2633 -8023,Bitter Carrots,2634 -8024,Depressed Mushrooms,2634 -8025,Uneven Apples,2634 -8026,Heavy Beets,2634 -8027,Successful Pretzel,2634 -8028,Wasteful Honey,2635 -8029,Bitter Honey,2636 -8030,Big Bread,2637 -8031,Rough Carrots,2637 -8032,Cool Beets,2637 -8033,Jumpin' Bread,2637 -8034,Giant Bread,2638 -8035,Deep Pretzel,2638 -8036,Outrageous Beef,2638 -8037,Incredible Fish,2638 -8038,Vivacious Bread,2638 -8039,Jealous Honey,2639 -8040,Calm Chicken,2639 -8041,Dry Mushrooms,2640 -8042,Red Burrito,2641 -8043,Relieved Carrots,2642 -8044,Anxious Fruit,2642 -8045,Great Greens,2642 -8046,Lonely Mushrooms,2642 -8047,Light Chicken,2643 -8048,Defiant Beets,2643 -8049,Nutty Bread,2643 -8050,Huge Fish,2643 -8051,Cold Mushrooms,2644 -8052,Boring Pretzel,2644 -8053,Uneven Mushrooms,2644 -8054,Curly Mushrooms,2644 -8055,Slimy Pretzel,2644 -8056,Scrumptious Bread,2645 -8057,Resonant Beef,2645 -8058,Swift Apples,2646 -8059,Pretty Fish,2646 -8060,Envious Bread,2646 -8061,Rapid Honey,2647 -8062,Grumpy Beets,2647 -8063,Boring Pretzel,2648 -8064,Ugly Honey,2648 -8065,Big Beets,2648 -8066,Scrumptious Burrito,2648 -8067,Weary Fish,2648 -8068,Delightful Burrito,2649 -8069,Depressed Fish,2649 -8070,Encouraging Chicken,2649 -8071,Successful Honey,2650 -8072,Salty Bread,2650 -8073,Giant Apples,2650 -8074,Fine Fruit,2650 -8075,Pleasant Beef,2650 -8076,Defeated Bread,2651 -8077,Smiling Fish,2652 -8078,Frantic Greens,2652 -8079,Prickly Fish,2653 -8080,Brave Honey,2653 -8081,Disgusted Greens,2654 -8082,Fine Fish,2654 -8083,Righteous Fish,2654 -8084,Exuberant Chicken,2654 -8085,Pleasant Pretzel,2655 -8086,Calm Burrito,2655 -8087,Hollow Fish,2656 -8088,Dry Mushrooms,2656 -8089,Gigantic Mushrooms,2656 -8090,Sour Beets,2657 -8091,Immense Beef,2657 -8092,Salty Apples,2658 -8093,Horrible Fish,2659 -8094,Square Carrots,2659 -8095,Uneven Chicken,2660 -8096,Screeching Mushrooms,2660 -8097,Hushed Chicken,2660 -8098,Fat Chicken,2660 -8099,Great Burrito,2660 -8100,Weak Carrots,2661 -8101,Cold Apples,2661 -8102,Scattered Mushrooms,2661 -8103,Solid Apples,2662 -8104,Grumpy Apples,2663 -8105,Sharp Fish,2663 -8106,Rapid Carrots,2663 -8107,Fuzzy Carrots,2663 -8108,Thoughtful Fish,2663 -8109,Bitter Beef,2664 -8110,Green Greens,2664 -8111,Dizzy Chicken,2664 -8112,Prickly Fish,2665 -8113,Tasty Carrots,2665 -8114,Tense Mushrooms,2665 -8115,Lively Mushrooms,2665 -8116,Kickin' Pretzel,2665 -8117,Ancient Bread,2666 -8118,Uptight Fruit,2667 -8119,Beautiful Carrots,2667 -8120,Kickin' Apples,2667 -8121,Striped Burrito,2668 -8122,Grubby Mushrooms,2668 -8123,Bitter Burrito,2668 -8124,Defeated Fruit,2669 -8125,Great Burrito,2669 -8126,Shrill Fruit,2669 -8127,Old Fish,2669 -8128,Skinny Fish,2669 -8129,Fantastic Bread,2670 -8130,Wasteful Burrito,2671 -8131,Prickly Pretzel,2672 -8132,Numerous Apples,2672 -8133,Perfect Greens,2672 -8134,Energetic Pretzel,2672 -8135,Uptight Pretzel,2673 -8136,Tight Burrito,2673 -8137,Witty Honey,2674 -8138,Black Mushrooms,2674 -8139,– Fish,2674 -8140,– Honey,2675 -8141,Edible Beets,2676 -8142,Depressed Greens,2676 -8143,Quaint Burrito,2676 -8144,Narrow Chicken,2676 -8145,Dusty Mushrooms,2677 -8146,Scattered Chicken,2677 -8147,Happy Burrito,2677 -8148,Scrawny Beef,2678 -8149,Dirty Pretzel,2678 -8150,Envious Fruit,2678 -8151,Salty Fruit,2678 -8152,Vivacious Greens,2678 -8153,Bright Beets,2679 -8154,Smiling Fruit,2679 -8155,Sour Carrots,2679 -8156,Ratty Chicken,2680 -8157,Red Carrots,2680 -8158,Fluffy Honey,2680 -8159,Enthusiastic Honey,2680 -8160,Beautiful Fish,2681 -8161,M Fish,2681 -8162,Long Chicken,2681 -8163,Nervous Fish,2681 -8164,Fat Beef,2681 -8165,Worried Mushrooms,2682 -8166,Faithful Apples,2683 -8167,Short Carrots,2683 -8168,Immense Burrito,2683 -8169,Horrible Honey,2683 -8170,Nice Carrots,2684 -8171,Lazy Pretzel,2684 -8172,Deafening Beets,2685 -8173,Great Burrito,2685 -8174,Arrogant Beets,2685 -8175,Shivering Fruit,2685 -8176,Shivering Honey,2685 -8177,Ratty Beets,2686 -8178,Bitter Burrito,2686 -8179,Ashamed Carrots,2687 -8180,M Apples,2688 -8181,Few Fruit,2688 -8182,Wide Carrots,2688 -8183,Ugly Apples,2688 -8184,Disgusted Honey,2689 -8185,Tired Honey,2689 -8186,Ill Greens,2689 -8187,Gorgeous Chicken,2689 -8188,Brief Carrots,2689 -8189,Short Honey,2690 -8190,High Beef,2690 -8191,Fat Beef,2690 -8192,Tasteless Apples,2690 -8193,Cruel Beef,2690 diff --git a/support/real_products.csv b/support/real_products.csv new file mode 100644 index 00000000..92794f1c --- /dev/null +++ b/support/real_products.csv @@ -0,0 +1,8193 @@ +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,Striped Apples,51 +166,Fresh Apples,52 +167,Comfortable Beef,53 +168,Uptight Greens,53 +169,Dull Carrots,53 +170,Zany Fruit,53 +171,Depressed Carrots,54 +172,Kind Beef,54 +173,Loose Beets,54 +174,Grubby Beets,54 +175,Wasteful Burrito,54 +176,Itchy Beef,55 +177,Sour Beets,55 +178,Massive Honey,55 +179,Sweet Carrots,55 +180,Steep Honey,56 +181,Repulsive Greens,56 +182,Swift Carrots,56 +183,Homeless Pretzel,56 +184,Numerous Beets,56 +185,Purring Apples,57 +186,Straight Honey,57 +187,Enthusiastic Bread,58 +188,Dangerous Fish,58 +189,Ripe Pretzel,59 +190,Purring Beets,59 +191,Mysterious Greens,59 +192,Embarrassed Bread,59 +193,Mute Beef,59 +194,Tiny Beets,60 +195,Big Carrots,60 +196,Moaning Honey,60 +197,Dusty Honey,61 +198,Frantic Beets,61 +199,Tender Bread,62 +200,Odd Pretzel,62 +201,Crazy Pretzel,62 +202,Resonant Beets,62 +203,Lively Apples,62 +204,Tricky Bread,63 +205,S Bread,64 +206,Shivering Fruit,64 +207,Frightened Fish,64 +208,Annoyed Bread,64 +209,Young Beef,64 +210,Jittery Pretzel,65 +211,Plastic Honey,65 +212,Shaky Greens,66 +213,Charming Apples,66 +214,Curved Mushrooms,67 +215,Healthy Pretzel,67 +216,Purring Apples,67 +217,Pickled Fruit,68 +218,Fluffy Fruit,69 +219,Strange Pretzel,69 +220,Faint Fruit,69 +221,Lazy Bread,70 +222,Kind Fish,70 +223,Thirsty Pretzel,70 +224,Successful Fruit,70 +225,Cheerful Bread,70 +226,Spicy Fruit,71 +227,Scrumptious Greens,71 +228,Gentle Carrots,71 +229,Lucky Mushrooms,71 +230,Lonely Honey,71 +231,Hard Bread,72 +232,Mysterious Bread,72 +233,Robust Fruit,72 +234,Horrible Beef,72 +235,Soft Apples,72 +236,Quaint Fish,73 +237,Uptight Bread,73 +238,Frantic Pretzel,74 +239,Hard Bread,74 +240,Excited Fruit,74 +241,Lazy Carrots,74 +242,Incredible Chicken,75 +243,Wonderful Honey,75 +244,Faint Greens,76 +245,Robust Mushrooms,76 +246,Splendid Beef,76 +247,Fluffy Chicken,77 +248,Foolish Beets,77 +249,Colossal Carrots,77 +250,Frightened Fish,78 +251,Short Chicken,79 +252,Panicky Honey,80 +253,Slow Beets,80 +254,Charming Beets,81 +255,Hilarious Apples,81 +256,Strong Beef,82 +257,Weak Beets,82 +258,Faint Honey,82 +259,Kind Fruit,83 +260,Strong Pretzel,84 +261,Faint Fish,84 +262,Round Pretzel,85 +263,Charming Beef,85 +264,Curved Beef,85 +265,Salty Bread,85 +266,Selfish Chicken,85 +267,Purring Honey,86 +268,Hot Chicken,86 +269,Empty Burrito,86 +270,Light Chicken,86 +271,Scary Beef,86 +272,Wide-eyed Fish,87 +273,Mighty Apples,87 +274,Tasteless Burrito,87 +275,R Greens,88 +276,Relieved Fruit,88 +277,Boring Pretzel,89 +278,Big Carrots,89 +279,Miniature Fruit,89 +280,Elated Carrots,89 +281,Incredible Bread,89 +282,Jealous Apples,90 +283,Weary Fruit,91 +284,Modern Honey,91 +285,Shaggy Bread,91 +286,Frightened Greens,92 +287,Harsh Honey,92 +288,Elated Carrots,92 +289,Lonely Honey,92 +290,Edible Mushrooms,92 +291,Steep Burrito,93 +292,– Mushrooms,94 +293,Terrible Fruit,95 +294,Rotten Fruit,95 +295,Ugly Bread,95 +296,Husky Greens,95 +297,Grubby Burrito,95 +298,Curly Fruit,96 +299,Hungry Greens,97 +300,Rapid Beets,98 +301,Strange Honey,98 +302,Relieved Fish,99 +303,Better Beef,99 +304,Thirsty Pretzel,99 +305,Sharp Bread,99 +306,Grubby Apples,99 +307,Combative Carrots,100 +308,Fair Fruit,100 +309,Cool Fish,100 +310,Bad Pretzel,100 +311,Hurt Burrito,100 +312,Troubled Burrito,101 +313,Fluffy Beef,101 +314,Whispering Chicken,101 +315,Embarrassed Carrots,102 +316,Numerous Fruit,103 +317,Pickled Bread,103 +318,Greasy Beets,103 +319,Deafening Beets,104 +320,Grieving Carrots,105 +321,Empty Apples,105 +322,Curly Fish,105 +323,Amused Greens,105 +324,Salty Carrots,106 +325,Grubby Greens,106 +326,Gorgeous Mushrooms,106 +327,Solid Beef,106 +328,Nasty Apples,106 +329,Sour Fruit,107 +330,Worried Fruit,107 +331,Fresh Carrots,107 +332,Brave Honey,107 +333,Flaky Apples,107 +334,Worried Fruit,108 +335,Late Pretzel,108 +336,Sore Apples,108 +337,Grubby Mushrooms,109 +338,Silent Bread,109 +339,R Fruit,110 +340,Scattered Burrito,110 +341,Silly Beets,110 +342,Skinny Chicken,110 +343,New Fruit,111 +344,Disgusted Greens,111 +345,Mute Fish,111 +346,Yellow Beef,112 +347,Ratty Beef,112 +348,Foolish Honey,112 +349,Grand Fruit,112 +350,Tart Fish,113 +351,Grand Apples,113 +352,Fluffy Beef,113 +353,Victorious Carrots,114 +354,Melted Honey,114 +355,Calm Burrito,115 +356,– Apples,115 +357,Weak Greens,115 +358,Cooperative Beef,116 +359,Tasteless Greens,116 +360,Orange Burrito,116 +361,Grubby Burrito,117 +362,Spicy Pretzel,117 +363,Sticky Chicken,117 +364,Black Chicken,117 +365,Tart Pretzel,117 +366,Wasteful Beef,118 +367,Massive Apples,118 +368,Edible Beets,118 +369,Great Chicken,118 +370,Foolish Chicken,118 +371,Curved Pretzel,119 +372,Lucky Apples,119 +373,Rough Apples,120 +374,Tan Fish,120 +375,Fine Fruit,120 +376,Defeated Greens,120 +377,Scattered Pretzel,121 +378,Depressed Fish,121 +379,Quiet Apples,121 +380,Beautiful Fish,122 +381,Mammoth Bread,122 +382,Upset Mushrooms,122 +383,Helpless Honey,122 +384,Thundering Carrots,122 +385,Spotty Mushrooms,123 +386,Bad Carrots,123 +387,Slow Mushrooms,123 +388,Huge Beef,124 +389,Thirsty Beets,124 +390,Floppy Burrito,124 +391,Fuzzy Pretzel,125 +392,Swift Mushrooms,125 +393,Early Pretzel,125 +394,Empty Honey,126 +395,Dull Bread,127 +396,– Fruit,127 +397,Righteous Beef,127 +398,Big Beets,127 +399,Grand Burrito,127 +400,Faint Greens,128 +401,Nervous Chicken,129 +402,Curved Bread,130 +403,Deafening Carrots,130 +404,Grieving Honey,130 +405,Juicy Burrito,130 +406,Quick Greens,131 +407,Faint Apples,132 +408,Smiling Mushrooms,132 +409,Charming Bread,132 +410,Damp Mushrooms,132 +411,Short Burrito,132 +412,Straight Apples,133 +413,Old Carrots,133 +414,Cuddly Beets,133 +415,Defeated Greens,133 +416,Horrible Mushrooms,134 +417,Scrawny Honey,134 +418,Calm Burrito,134 +419,Silky Pretzel,135 +420,Heavy Apples,135 +421,Worried Mushrooms,135 +422,Tense Burrito,135 +423,Heavy Carrots,135 +424,Nasty Apples,136 +425,Shivering Pretzel,136 +426,Tender Beets,137 +427,Purring Greens,138 +428,Selfish Burrito,138 +429,– Honey,138 +430,Brave Bread,138 +431,Bland Pretzel,138 +432,Curly Burrito,139 +433,Early Mushrooms,139 +434,Brave Fish,139 +435,Hissing Greens,140 +436,Swift Greens,141 +437,Whispering Honey,142 +438,Rapid Beef,142 +439,Handsome Beef,142 +440,Rotten Greens,143 +441,Shaggy Greens,143 +442,Juicy Fruit,143 +443,Calm Beef,143 +444,Cruel Carrots,143 +445,Rainy Chicken,144 +446,Fluffy Apples,144 +447,Odd Apples,144 +448,Lonely Greens,144 +449,Ancient Greens,145 +450,Pickled Fish,145 +451,Empty Beef,145 +452,Wet Fruit,145 +453,Screeching Greens,146 +454,Hungry Apples,146 +455,Greasy Carrots,146 +456,Amused Fish,147 +457,Fuzzy Beets,147 +458,M Beef,148 +459,Sticky Honey,148 +460,Ugliest Beets,148 +461,Late Fruit,148 +462,Jumpin' Beef,148 +463,Afraid Fruit,149 +464,Grieving Burrito,149 +465,Depressed Beef,149 +466,Hushed Greens,149 +467,Grand Mushrooms,149 +468,Courageous Apples,150 +469,Greasy Bread,150 +470,Strange Beets,150 +471,Melted Bread,150 +472,Incredible Carrots,150 +473,Plain Apples,151 +474,Silent Greens,152 +475,Handsome Burrito,152 +476,Tricky Honey,153 +477,Naughty Fish,153 +478,Victorious Beets,153 +479,Deafening Fish,153 +480,Tan Mushrooms,154 +481,Scrawny Mushrooms,154 +482,Faint Fruit,154 +483,Uptight Fish,155 +484,Dizzy Apples,155 +485,Short Honey,155 +486,Cooperative Fruit,156 +487,Dizzy Fruit,156 +488,Jealous Carrots,156 +489,Dry Beets,156 +490,Thirsty Fruit,156 +491,Strange Mushrooms,157 +492,Stingy Pretzel,157 +493,Ancient Carrots,157 +494,Delightful Beets,157 +495,Flat Chicken,158 +496,Splendid Fruit,158 +497,Cuddly Chicken,158 +498,Cruel Fruit,158 +499,Plain Chicken,159 +500,Stale Carrots,159 +501,Selfish Bread,160 +502,Jolly Mushrooms,160 +503,Bright Burrito,160 +504,Fluffy Burrito,160 +505,Cruel Beets,160 +506,Scrumptious Mushrooms,161 +507,Sticky Honey,161 +508,Black Beef,161 +509,Obnoxious Mushrooms,161 +510,Worried Pretzel,161 +511,Many Fish,162 +512,Spicy Greens,162 +513,Nosy Burrito,162 +514,Incredible Carrots,162 +515,Rough Honey,163 +516,Helpless Carrots,163 +517,Blue Pretzel,163 +518,Slimy Fruit,163 +519,Black Burrito,163 +520,Afraid Fruit,164 +521,Breezy Apples,164 +522,Disgusted Burrito,164 +523,Fat Burrito,164 +524,Depressed Pretzel,164 +525,Sad Carrots,165 +526,– Honey,165 +527,Fine Beef,165 +528,Cuddly Fish,165 +529,Rainy Fish,165 +530,Tired Pretzel,166 +531,Tricky Mushrooms,166 +532,Flat Chicken,166 +533,Filthy Fruit,166 +534,Smooth Fish,167 +535,Greasy Apples,167 +536,Uneven Mushrooms,167 +537,Massive Carrots,167 +538,Boom-town Carrots,168 +539,Thoughtless Beets,169 +540,Dull Honey,170 +541,Obnoxious Greens,170 +542,Tired Apples,170 +543,Sharp Chicken,171 +544,Dull Pretzel,171 +545,Faint Beef,171 +546,Plain Beets,172 +547,Early Burrito,172 +548,Scrawny Burrito,172 +549,R Mushrooms,173 +550,Curved Greens,173 +551,Loud Fruit,173 +552,Sad Bread,173 +553,Sticky Burrito,174 +554,Homeless Honey,174 +555,Hot Chicken,174 +556,Tame Beets,175 +557,Kind Greens,175 +558,Tiny Chicken,176 +559,Early Burrito,176 +560,Fluffy Fish,176 +561,Blue Pretzel,176 +562,Rough Beef,177 +563,Brief Apples,177 +564,Mighty Bread,177 +565,Scrawny Beets,177 +566,Depressed Burrito,178 +567,Cuddly Pretzel,178 +568,Big Honey,178 +569,Jittery Carrots,178 +570,Hissing Apples,178 +571,Annoyed Fish,179 +572,Dry Fish,179 +573,Hissing Fish,179 +574,Pickled Greens,180 +575,Enthusiastic Fish,180 +576,Petite Beets,180 +577,Fat Apples,180 +578,Immense Carrots,181 +579,Massive Fruit,182 +580,Charming Pretzel,182 +581,Comfortable Apples,182 +582,Successful Beets,183 +583,Handsome Pretzel,183 +584,Shrill Fish,183 +585,Nom nom Apples,183 +586,Plastic Apples,183 +587,Tricky Apples,184 +588,Curly Fish,185 +589,Successful Beets,186 +590,Raspy Burrito,186 +591,Silky Chicken,187 +592,Tasteless Burrito,187 +593,Whispering Beef,187 +594,Broken Bread,187 +595,Friendly Greens,188 +596,Kickin' Greens,189 +597,Melted Greens,189 +598,Hissing Greens,189 +599,Bitter Pretzel,189 +600,Tart Beef,189 +601,Nervous Fish,190 +602,Numerous Pretzel,190 +603,Modern Carrots,191 +604,Upset Apples,191 +605,Calm Bread,191 +606,Terrible Beef,191 +607,Rare Burrito,192 +608,Shrill Beets,192 +609,Hushed Chicken,192 +610,Helpless Beef,192 +611,Swift Carrots,193 +612,Uneven Burrito,193 +613,Evil Burrito,193 +614,Breezy Fruit,193 +615,Arrogant Beets,193 +616,Quick Fish,194 +617,Frightened Greens,194 +618,Kind Bread,195 +619,Dusty Fish,195 +620,Panicky Apples,195 +621,Annoyed Greens,195 +622,Average Fish,195 +623,Breezy Apples,196 +624,Righteous Greens,196 +625,Narrow Apples,196 +626,Giant Beef,196 +627,Giant Beef,197 +628,Pleasant Bread,197 +629,Upset Carrots,197 +630,– Honey,198 +631,Frantic Beef,198 +632,Tall Pretzel,198 +633,Whispering Chicken,198 +634,Nasty Fruit,199 +635,Fuzzy Carrots,200 +636,Thundering Honey,200 +637,Creepy Beef,201 +638,Fluffy Beef,201 +639,Dangerous Mushrooms,202 +640,Tender Fruit,203 +641,Solid Chicken,203 +642,Breezy Apples,204 +643,Many Carrots,204 +644,Round Chicken,204 +645,Late Beets,204 +646,Massive Fish,205 +647,Disgusted Bread,206 +648,Vivacious Apples,206 +649,Naughty Carrots,206 +650,Grubby Fish,207 +651,Small Apples,207 +652,Nice Apples,207 +653,Deep Chicken,207 +654,Troubled Apples,208 +655,Miniature Beets,208 +656,Wooden Bread,208 +657,Shallow Fruit,208 +658,Tense Beets,208 +659,Melodic Chicken,209 +660,Late Beets,209 +661,Troubled Honey,209 +662,Slippery Burrito,209 +663,Mysterious Fruit,209 +664,Handsome Pretzel,210 +665,Flat Fruit,211 +666,Afraid Fish,211 +667,Shivering Apples,212 +668,Empty Greens,212 +669,Cool Mushrooms,212 +670,Foolish Beef,212 +671,Thundering Beef,213 +672,Juicy Carrots,214 +673,Friendly Beef,214 +674,Ugliest Fish,214 +675,Mammoth Pretzel,215 +676,Solid Greens,215 +677,Tame Apples,215 +678,Kind Chicken,216 +679,Steep Pretzel,216 +680,Lovely Burrito,216 +681,Repulsive Pretzel,216 +682,Victorious Pretzel,216 +683,Eager Fruit,217 +684,Purring Fish,218 +685,Testy Carrots,218 +686,Lovely Pretzel,218 +687,Young Fruit,218 +688,Sad Fruit,218 +689,Many Honey,219 +690,Frantic Fruit,219 +691,Anxious Mushrooms,220 +692,Smooth Chicken,220 +693,Silky Mushrooms,220 +694,Filthy Fish,220 +695,Giant Greens,221 +696,Arrogant Beets,221 +697,Tasteless Beef,221 +698,Stale Fruit,221 +699,Brief Carrots,221 +700,Scary Beets,222 +701,Dangerous Carrots,222 +702,Splendid Bread,222 +703,Strong Greens,222 +704,Round Fish,222 +705,Low Pretzel,223 +706,Wonderful Pretzel,223 +707,Lively Beef,224 +708,Fluffy Bread,224 +709,Witty Beets,224 +710,Tender Greens,225 +711,Rainy Bread,225 +712,Outrageous Chicken,225 +713,Thundering Burrito,225 +714,Nasty Bread,226 +715,Striped Pretzel,227 +716,Funny Honey,228 +717,Husky Honey,229 +718,Moaning Apples,229 +719,Thundering Fish,229 +720,Thirsty Burrito,229 +721,Enthusiastic Fruit,229 +722,Round Apples,230 +723,Fuzzy Greens,230 +724,Determined Fish,230 +725,Mammoth Greens,231 +726,Foolish Honey,231 +727,Faint Pretzel,231 +728,Enthusiastic Beef,231 +729,Dull Fruit,231 +730,Mighty Fish,232 +731,Ordinary Mushrooms,232 +732,Anxious Chicken,233 +733,Broken Apples,233 +734,Harsh Fish,233 +735,Horrible Beets,233 +736,Prickly Honey,233 +737,Shallow Greens,234 +738,Solid Beets,235 +739,Empty Honey,235 +740,Thoughtless Carrots,236 +741,Great Honey,237 +742,Agreeable Pretzel,237 +743,Greasy Honey,237 +744,Angry Greens,237 +745,Fluffy Chicken,237 +746,Narrow Carrots,238 +747,Prickly Beets,238 +748,Horrible Fish,238 +749,Husky Greens,238 +750,Rainy Pretzel,239 +751,Cool Burrito,240 +752,Eager Fruit,240 +753,Repulsive Fish,240 +754,Hilarious Beef,240 +755,Combative Pretzel,240 +756,Moaning Beef,241 +757,Heavy Bread,241 +758,Embarrassed Mushrooms,241 +759,Few Beets,241 +760,Uneven Burrito,241 +761,Repulsive Beef,242 +762,Anxious Greens,242 +763,Smooth Apples,242 +764,Deep Carrots,242 +765,Obnoxious Pretzel,242 +766,Low Fish,243 +767,Kickin' Honey,243 +768,Lively Carrots,243 +769,Hard Chicken,244 +770,Yellow Pretzel,244 +771,Happy Greens,244 +772,Tart Carrots,244 +773,Lucky Beets,245 +774,Grubby Pretzel,245 +775,S Bread,245 +776,Lonely Carrots,245 +777,Ugly Apples,246 +778,Grand Chicken,246 +779,Kickin' Beets,247 +780,Panicky Fruit,247 +781,Splendid Beef,247 +782,Greasy Fruit,247 +783,Frightened Chicken,248 +784,Greasy Carrots,248 +785,Blue Apples,248 +786,Great Carrots,248 +787,Grand Beef,249 +788,Cruel Mushrooms,249 +789,Screeching Apples,249 +790,Gentle Honey,250 +791,– Carrots,250 +792,Tasteless Fish,250 +793,Thoughtful Honey,250 +794,Green Bread,251 +795,Gorgeous Honey,251 +796,Tart Pretzel,251 +797,Prickly Carrots,251 +798,Melted Greens,252 +799,Resonant Fruit,252 +800,Lazy Fish,252 +801,Screeching Pretzel,253 +802,Hungry Greens,253 +803,Ripe Beets,254 +804,Lazy Beets,254 +805,Agreeable Fish,254 +806,R Burrito,254 +807,Purple Greens,255 +808,Fast Bread,256 +809,Square Beets,256 +810,Jolly Carrots,257 +811,Slow Honey,257 +812,Obnoxious Chicken,257 +813,Quickest Chicken,258 +814,Mysterious Apples,259 +815,Outrageous Apples,259 +816,Colossal Pretzel,259 +817,Helpful Chicken,260 +818,Curly Chicken,260 +819,Righteous Bread,261 +820,Hurt Bread,261 +821,Crazy Carrots,261 +822,Flat Pretzel,262 +823,Fuzzy Fish,262 +824,Disgusted Bread,262 +825,Eager Greens,262 +826,Plastic Bread,263 +827,Thirsty Fruit,263 +828,Anxious Beef,263 +829,Bright Honey,263 +830,Lucky Carrots,264 +831,Witty Fish,264 +832,Obnoxious Beets,264 +833,Young Apples,265 +834,Vivacious Mushrooms,265 +835,Square Apples,265 +836,Dizzy Pretzel,266 +837,Quiet Apples,267 +838,Foolish Pretzel,268 +839,Kickin' Mushrooms,268 +840,Straight Honey,268 +841,Disgusted Fruit,268 +842,Jittery Greens,268 +843,Harsh Mushrooms,269 +844,Wonderful Honey,269 +845,Plain Carrots,269 +846,Filthy Greens,269 +847,Weary Honey,270 +848,Lovely Beets,271 +849,Thoughtful Honey,271 +850,Young Greens,271 +851,Wasteful Chicken,271 +852,Sweet Beef,271 +853,High Burrito,272 +854,Friendly Carrots,273 +855,Tough Chicken,274 +856,Cool Beets,274 +857,Kickin' Burrito,274 +858,Shaky Carrots,274 +859,Massive Beef,274 +860,Dry Beef,275 +861,Selfish Beef,275 +862,Cooing Bread,275 +863,Rough Apples,275 +864,Spotty Greens,276 +865,Splendid Mushrooms,276 +866,Tame Honey,276 +867,Resonant Beef,276 +868,Nice Mushrooms,276 +869,Square Beef,277 +870,Greasy Pretzel,277 +871,Broad Pretzel,278 +872,Better Beef,279 +873,Confused Carrots,279 +874,Zany Burrito,279 +875,Quickest Chicken,279 +876,Cold Bread,279 +877,R Apples,280 +878,Short Mushrooms,280 +879,Blue Bread,280 +880,Hollow Greens,281 +881,Handsome Carrots,281 +882,Comfortable Pretzel,281 +883,Roasted Pretzel,281 +884,Lovely Beef,281 +885,Flaky Bread,282 +886,Outrageous Beef,282 +887,Victorious Mushrooms,283 +888,Lucky Fruit,283 +889,Fine Mushrooms,283 +890,Ugly Carrots,283 +891,Panicky Carrots,284 +892,Pickled Fruit,284 +893,S Apples,285 +894,Hot Beef,285 +895,Zany Apples,286 +896,Tricky Beets,286 +897,Handsome Apples,286 +898,Plastic Beef,286 +899,Boiling Burrito,286 +900,Defeated Honey,287 +901,Cheerful Greens,287 +902,– Bread,287 +903,Striped Burrito,287 +904,Selfish Fruit,288 +905,Few Greens,289 +906,Dirty Burrito,289 +907,Giant Apples,290 +908,Mammoth Fish,290 +909,Rainy Beef,290 +910,Yummy Greens,290 +911,Bumpy Pretzel,290 +912,Happy Apples,291 +913,Bland Beets,291 +914,Grubby Beef,292 +915,Puny Beef,293 +916,Naughty Burrito,293 +917,Brave Fish,293 +918,Nervous Beets,293 +919,Straight Carrots,294 +920,Thirsty Mushrooms,294 +921,Greasy Mushrooms,294 +922,Melodic Fruit,295 +923,Jumpin' Mushrooms,295 +924,Bland Greens,296 +925,Brave Fish,296 +926,Hard Carrots,296 +927,Victorious Apples,296 +928,Bland Bread,297 +929,Nom nom Greens,297 +930,Sad Mushrooms,297 +931,Testy Beef,298 +932,Obnoxious Mushrooms,298 +933,Incredible Beets,298 +934,Purple Bread,298 +935,Silky Apples,299 +936,Stale Carrots,299 +937,Comfortable Apples,299 +938,Black Pretzel,300 +939,Long Mushrooms,301 +940,Boring Burrito,301 +941,Thirsty Burrito,301 +942,Zany Pretzel,301 +943,Hurt Burrito,302 +944,Shallow Mushrooms,303 +945,Gentle Carrots,303 +946,Weak Mushrooms,303 +947,Stale Burrito,304 +948,Tender Mushrooms,304 +949,Mammoth Greens,304 +950,Squealing Chicken,305 +951,Agreeable Mushrooms,305 +952,Comfortable Fruit,306 +953,Grumpy Pretzel,306 +954,Shallow Pretzel,307 +955,Uneven Carrots,307 +956,Annoyed Fish,308 +957,Grubby Fish,308 +958,Nervous Beef,308 +959,Wooden Bread,308 +960,Lovely Mushrooms,309 +961,Lively Bread,310 +962,Ratty Beets,310 +963,Encouraging Fish,310 +964,Upset Honey,311 +965,Yellow Burrito,311 +966,Sticky Beets,312 +967,Amused Burrito,312 +968,R Chicken,312 +969,Plain Carrots,313 +970,Foolish Beets,313 +971,Spicy Honey,313 +972,Precious Apples,313 +973,Cruel Burrito,314 +974,Shivering Bread,314 +975,Many Beef,314 +976,Ugliest Beef,314 +977,Smiling Fish,315 +978,Curved Apples,315 +979,Pickled Greens,316 +980,Strange Honey,316 +981,Giant Mushrooms,316 +982,Moaning Burrito,317 +983,Arrogant Honey,317 +984,Eager Fish,318 +985,Edible Apples,318 +986,Hissing Bread,318 +987,Wide Pretzel,319 +988,Round Carrots,319 +989,Uneven Carrots,319 +990,Ripe Pretzel,319 +991,Sticky Apples,320 +992,Upset Honey,321 +993,Silent Apples,321 +994,Tender Fish,321 +995,Cooing Beets,321 +996,Silly Honey,322 +997,Zany Burrito,322 +998,Brave Beef,323 +999,Tense Greens,323 +1000,Cooperative Carrots,323 +1001,Numerous Greens,323 +1002,Ordinary Fish,324 +1003,Wonderful Bread,324 +1004,Stale Burrito,325 +1005,Weak Beets,325 +1006,Fantastic Fruit,325 +1007,Uneven Greens,325 +1008,Amused Burrito,325 +1009,Deafening Beets,326 +1010,Hot Chicken,326 +1011,Wicked Fruit,326 +1012,Splendid Beef,326 +1013,Greasy Honey,327 +1014,Cooing Mushrooms,327 +1015,Modern Beef,327 +1016,Jolly Carrots,327 +1017,Rough Carrots,327 +1018,Petite Carrots,328 +1019,Jolly Fruit,329 +1020,Bright Burrito,330 +1021,Average Burrito,330 +1022,Faithful Fruit,330 +1023,Rare Bread,331 +1024,Rare Chicken,332 +1025,Nervous Beef,332 +1026,Testy Honey,333 +1027,Hot Greens,333 +1028,Repulsive Mushrooms,333 +1029,Sharp Beets,333 +1030,Terrible Beets,333 +1031,Fine Mushrooms,334 +1032,Gigantic Bread,334 +1033,Annoyed Fish,334 +1034,Grieving Burrito,335 +1035,Wasteful Apples,335 +1036,Delightful Bread,336 +1037,Jittery Greens,336 +1038,Deafening Apples,336 +1039,Outrageous Carrots,337 +1040,M Fruit,337 +1041,Witty Pretzel,337 +1042,Healthy Pretzel,338 +1043,Ripe Beef,339 +1044,Tall Honey,340 +1045,Yummy Burrito,341 +1046,Moist Honey,341 +1047,Little Greens,341 +1048,Curved Bread,342 +1049,Tame Apples,343 +1050,R Beets,343 +1051,Purring Fruit,343 +1052,Good Pretzel,343 +1053,Small Honey,343 +1054,Grand Bread,344 +1055,Uptight Fish,344 +1056,Successful Carrots,344 +1057,Nervous Pretzel,344 +1058,Pleasant Bread,345 +1059,Fast Mushrooms,345 +1060,Square Greens,345 +1061,Naughty Chicken,345 +1062,Naughty Carrots,346 +1063,Dizzy Chicken,346 +1064,Fantastic Beets,347 +1065,Scattered Beets,347 +1066,Dizzy Carrots,347 +1067,Excited Burrito,348 +1068,Weak Beef,348 +1069,Itchy Carrots,348 +1070,New Carrots,348 +1071,Husky Mushrooms,349 +1072,Frantic Beets,349 +1073,Testy Mushrooms,350 +1074,Encouraging Honey,350 +1075,Roasted Bread,350 +1076,Clumsy Honey,350 +1077,Loud Pretzel,351 +1078,Stale Beef,351 +1079,– Chicken,351 +1080,Excited Apples,351 +1081,Thoughtful Greens,351 +1082,Average Mushrooms,352 +1083,Tasteless Pretzel,352 +1084,Tasteless Carrots,352 +1085,Slimy Pretzel,352 +1086,Fantastic Carrots,353 +1087,Steady Fruit,354 +1088,Tricky Pretzel,354 +1089,Sore Bread,354 +1090,Great Greens,354 +1091,Steep Bread,354 +1092,Delicious Greens,355 +1093,Stale Bread,355 +1094,Slimy Honey,355 +1095,Itchy Beef,356 +1096,Cheerful Carrots,356 +1097,Nasty Carrots,356 +1098,Resonant Carrots,357 +1099,Combative Beef,357 +1100,Grubby Bread,357 +1101,Grumpy Fish,358 +1102,Silent Apples,359 +1103,Gorgeous Carrots,359 +1104,Mute Honey,360 +1105,Squealing Fruit,360 +1106,Sad Beef,360 +1107,Soft Fruit,361 +1108,Bland Mushrooms,361 +1109,Angry Honey,361 +1110,Husky Honey,362 +1111,Tiny Fish,362 +1112,Shivering Apples,362 +1113,Little Bread,363 +1114,Large Mushrooms,363 +1115,Average Beef,364 +1116,Tasteless Honey,364 +1117,Obnoxious Burrito,364 +1118,Tired Beets,364 +1119,Rare Pretzel,364 +1120,Skinny Carrots,365 +1121,Dizzy Mushrooms,365 +1122,Gigantic Fish,365 +1123,Nasty Fish,366 +1124,Scrumptious Beef,366 +1125,Tricky Apples,366 +1126,Shaggy Chicken,366 +1127,Silly Apples,366 +1128,Quickest Burrito,367 +1129,Frantic Fruit,367 +1130,Little Apples,367 +1131,Magnificent Greens,367 +1132,Charming Fish,368 +1133,Kickin' Fruit,368 +1134,Numerous Chicken,368 +1135,Soft Beef,368 +1136,Defiant Honey,368 +1137,Scary Beets,369 +1138,Lively Mushrooms,369 +1139,Uptight Burrito,369 +1140,Amused Chicken,369 +1141,Ancient Apples,370 +1142,Tan Fruit,370 +1143,Huge Honey,370 +1144,Watery Greens,370 +1145,Hilarious Fish,371 +1146,Thirsty Fruit,371 +1147,Melted Apples,371 +1148,Upset Bread,371 +1149,Cold Bread,371 +1150,Screeching Bread,372 +1151,Orange Honey,372 +1152,Chilly Honey,372 +1153,Jolly Honey,372 +1154,Cooing Honey,373 +1155,Boom-town Chicken,373 +1156,Wet Chicken,373 +1157,Black Honey,373 +1158,Scary Burrito,373 +1159,Low Mushrooms,374 +1160,Lovely Honey,374 +1161,Zany Mushrooms,375 +1162,Young Fish,375 +1163,Low Bread,375 +1164,Tight Fish,375 +1165,Red Carrots,376 +1166,Fluffy Carrots,377 +1167,Confused Beef,377 +1168,Cold Beets,378 +1169,Silent Bread,379 +1170,Helpful Beets,379 +1171,Healthy Chicken,379 +1172,Fantastic Bread,379 +1173,Raspy Burrito,379 +1174,Moist Fish,380 +1175,Giant Apples,380 +1176,Whispering Chicken,380 +1177,Ugliest Beef,380 +1178,Determined Carrots,381 +1179,Perfect Chicken,381 +1180,Slow Carrots,381 +1181,Delightful Fish,381 +1182,Wasteful Pretzel,382 +1183,Excited Chicken,383 +1184,Savory Bread,383 +1185,Bland Greens,383 +1186,Strong Beef,383 +1187,Calm Burrito,384 +1188,Fierce Greens,384 +1189,Flat Bread,385 +1190,Bitter Beef,385 +1191,Swift Carrots,386 +1192,Hilarious Greens,386 +1193,Obedient Mushrooms,387 +1194,Nervous Beef,387 +1195,Terrible Fruit,388 +1196,Purple Burrito,388 +1197,Prickly Pretzel,389 +1198,– Apples,390 +1199,Straight Chicken,390 +1200,Embarrassed Beef,390 +1201,Swift Fish,390 +1202,Panicky Apples,390 +1203,Ratty Fish,391 +1204,Shaggy Fruit,391 +1205,Dirty Chicken,392 +1206,Pretty Fish,392 +1207,Repulsive Fish,393 +1208,Great Honey,393 +1209,New Beets,393 +1210,Moaning Bread,393 +1211,Green Beef,393 +1212,Fantastic Fruit,394 +1213,Sticky Beef,394 +1214,Stale Greens,394 +1215,Charming Beets,395 +1216,Silky Bread,395 +1217,Red Fruit,395 +1218,Quaint Fruit,396 +1219,Envious Burrito,397 +1220,Purring Carrots,397 +1221,Energetic Fruit,398 +1222,Shrill Mushrooms,398 +1223,Comfortable Mushrooms,398 +1224,Nasty Mushrooms,398 +1225,Roasted Honey,399 +1226,Early Chicken,399 +1227,Faint Burrito,399 +1228,Wooden Fish,399 +1229,Grumpy Bread,400 +1230,Handsome Greens,400 +1231,Wide Bread,400 +1232,Energetic Carrots,400 +1233,Slippery Honey,400 +1234,Ugliest Pretzel,401 +1235,Little Carrots,401 +1236,Slow Chicken,402 +1237,Frantic Bread,403 +1238,Swift Greens,403 +1239,Deafening Greens,404 +1240,Bright Beets,404 +1241,Evil Mushrooms,404 +1242,Fluffy Mushrooms,405 +1243,Tasty Burrito,405 +1244,New Carrots,405 +1245,Determined Chicken,405 +1246,Dizzy Beef,405 +1247,Crazy Fish,406 +1248,Cold Beets,406 +1249,Proud Apples,406 +1250,Ill Apples,407 +1251,Fat Beef,407 +1252,Rainy Carrots,407 +1253,Embarrassed Fish,408 +1254,Shaggy Mushrooms,409 +1255,– Burrito,410 +1256,Salty Honey,410 +1257,Squealing Bread,410 +1258,Raspy Carrots,411 +1259,Eager Mushrooms,411 +1260,Shaky Bread,411 +1261,Witty Apples,412 +1262,Slimy Apples,413 +1263,Hushed Greens,413 +1264,R Greens,414 +1265,Nervous Mushrooms,414 +1266,Frail Beef,415 +1267,Naughty Mushrooms,416 +1268,Hot Pretzel,416 +1269,Chilly Bread,416 +1270,Colossal Apples,417 +1271,Filthy Fish,417 +1272,Red Carrots,417 +1273,Gorgeous Mushrooms,417 +1274,Frightened Fruit,418 +1275,Successful Fish,418 +1276,Young Carrots,419 +1277,Shivering Fish,419 +1278,Boring Beef,419 +1279,Filthy Pretzel,420 +1280,Weary Beets,421 +1281,Tender Apples,421 +1282,Wicked Beets,421 +1283,Squealing Bread,421 +1284,Silky Chicken,421 +1285,Loud Pretzel,422 +1286,Melodic Mushrooms,422 +1287,Helpless Burrito,422 +1288,Weak Mushrooms,422 +1289,Yummy Beef,422 +1290,Modern Chicken,423 +1291,Gigantic Greens,423 +1292,Comfortable Carrots,423 +1293,Stupendous Burrito,423 +1294,Voiceless Honey,424 +1295,Breezy Apples,424 +1296,Salty Honey,424 +1297,Scattered Carrots,424 +1298,Kickin' Honey,425 +1299,Shallow Pretzel,425 +1300,Round Greens,425 +1301,Scrawny Fruit,425 +1302,Wonderful Fish,425 +1303,Agreeable Greens,426 +1304,Happy Fish,426 +1305,Hot Beef,427 +1306,Mute Carrots,427 +1307,Steep Fish,427 +1308,Shaggy Carrots,428 +1309,Jolly Honey,429 +1310,Jumpin' Apples,429 +1311,Tall Honey,429 +1312,Slimy Bread,430 +1313,Cooing Greens,430 +1314,Enthusiastic Beef,431 +1315,Yellow Bread,431 +1316,Disturbed Mushrooms,431 +1317,Slimy Bread,431 +1318,Sweet Pretzel,431 +1319,Melodic Fish,432 +1320,Few Mushrooms,433 +1321,Pickled Mushrooms,433 +1322,Embarrassed Fish,433 +1323,Shivering Fish,433 +1324,Scrumptious Bread,433 +1325,Miniature Fish,434 +1326,Agreeable Fruit,434 +1327,Broken Chicken,434 +1328,Combative Fruit,434 +1329,Plastic Fruit,434 +1330,Hushed Apples,435 +1331,Fuzzy Chicken,436 +1332,Dull Apples,436 +1333,Puny Mushrooms,436 +1334,Gorgeous Bread,436 +1335,Jumpin' Apples,436 +1336,Slippery Fish,437 +1337,Eager Carrots,437 +1338,Red Pretzel,437 +1339,Handsome Beef,438 +1340,Tough Mushrooms,438 +1341,Dangerous Apples,439 +1342,Orange Chicken,439 +1343,Cold Honey,439 +1344,Boring Fish,439 +1345,Selfish Apples,440 +1346,High Mushrooms,440 +1347,Victorious Mushrooms,440 +1348,Gorgeous Fish,441 +1349,Shallow Honey,441 +1350,Grubby Chicken,442 +1351,Fast Apples,442 +1352,Large Honey,442 +1353,Arrogant Chicken,442 +1354,Mighty Mushrooms,442 +1355,Heavy Chicken,443 +1356,Sad Greens,443 +1357,Mute Beef,443 +1358,Dusty Burrito,443 +1359,Steady Beef,444 +1360,Giant Honey,444 +1361,Wide Pretzel,444 +1362,Cheesy Beets,445 +1363,Ugliest Honey,445 +1364,Perfect Carrots,445 +1365,Red Chicken,446 +1366,Repulsive Fruit,446 +1367,Scary Fish,446 +1368,Flaky Burrito,446 +1369,Fluffy Honey,447 +1370,Stale Apples,447 +1371,Ugly Beets,447 +1372,Zany Burrito,447 +1373,Wooden Beef,447 +1374,Broken Carrots,448 +1375,Roasted Fruit,448 +1376,Worried Honey,448 +1377,Excited Greens,448 +1378,Old Beef,449 +1379,Wide Mushrooms,449 +1380,Puny Beef,449 +1381,Roasted Beef,449 +1382,Grand Fish,450 +1383,Broken Burrito,450 +1384,Scary Mushrooms,450 +1385,Plain Apples,450 +1386,Purring Burrito,450 +1387,Jumpin' Burrito,451 +1388,Faint Beets,451 +1389,Whispering Pretzel,451 +1390,Defiant Apples,451 +1391,Grieving Apples,452 +1392,Black Carrots,452 +1393,Delicious Chicken,452 +1394,Mysterious Fish,453 +1395,Scrumptious Burrito,453 +1396,Delicious Beets,453 +1397,Lively Honey,454 +1398,Friendly Carrots,454 +1399,Dangerous Honey,455 +1400,Tiny Pretzel,455 +1401,Mammoth Pretzel,455 +1402,R Honey,455 +1403,Skinny Apples,455 +1404,Cooing Honey,456 +1405,Broken Fruit,456 +1406,Nom nom Burrito,456 +1407,Salty Mushrooms,456 +1408,Huge Beef,457 +1409,Slimy Fish,457 +1410,Immense Fish,457 +1411,Nasty Mushrooms,457 +1412,Thoughtful Beef,458 +1413,Sticky Fruit,458 +1414,Quiet Beets,458 +1415,Scary Fruit,459 +1416,Naughty Carrots,459 +1417,Scary Beef,459 +1418,Anxious Fish,460 +1419,Cheesy Pretzel,461 +1420,Shivering Bread,461 +1421,Light Carrots,461 +1422,Fierce Bread,461 +1423,Awful Greens,461 +1424,Puny Beets,462 +1425,Sweet Pretzel,462 +1426,Tender Fish,462 +1427,Greasy Chicken,463 +1428,Repulsive Carrots,463 +1429,Ancient Greens,463 +1430,Nom nom Fish,464 +1431,Awful Pretzel,464 +1432,Dusty Burrito,464 +1433,Purring Apples,465 +1434,Friendly Chicken,465 +1435,Cuddly Apples,465 +1436,Embarrassed Apples,465 +1437,Long Chicken,465 +1438,Faint Fruit,466 +1439,Witty Honey,466 +1440,Defeated Honey,466 +1441,Fierce Beef,466 +1442,Ancient Bread,467 +1443,Orange Apples,467 +1444,Dizzy Honey,468 +1445,Delicious Bread,468 +1446,Weak Fish,468 +1447,Fluffy Honey,468 +1448,Hot Pretzel,468 +1449,M Honey,469 +1450,Wonderful Mushrooms,469 +1451,Cool Beef,469 +1452,Hungry Chicken,470 +1453,Old Beets,470 +1454,Tired Fruit,470 +1455,Steady Honey,471 +1456,Sad Mushrooms,471 +1457,Tough Beets,471 +1458,Tense Greens,471 +1459,Obnoxious Fruit,471 +1460,Yummy Fish,472 +1461,Grubby Greens,473 +1462,Testy Beef,473 +1463,Green Carrots,473 +1464,Defeated Mushrooms,473 +1465,Proud Burrito,474 +1466,Scattered Pretzel,474 +1467,Sore Beets,474 +1468,Vast Fish,474 +1469,Courageous Beef,474 +1470,Eager Fish,475 +1471,Good Beets,475 +1472,Ordinary Beef,476 +1473,Evil Fish,476 +1474,Weak Beets,476 +1475,Tart Greens,476 +1476,Tall Mushrooms,477 +1477,Fuzzy Carrots,477 +1478,Tight Beef,478 +1479,Immense Greens,478 +1480,Rough Beef,478 +1481,Long Honey,478 +1482,Spicy Apples,478 +1483,Hungry Greens,479 +1484,Scrumptious Beef,479 +1485,Sad Apples,480 +1486,Ordinary Mushrooms,480 +1487,Stingy Beef,481 +1488,Average Greens,481 +1489,Scrumptious Fruit,481 +1490,Heavy Greens,481 +1491,Tough Greens,481 +1492,Thoughtless Carrots,482 +1493,Yellow Mushrooms,482 +1494,Rough Greens,482 +1495,Embarrassed Chicken,482 +1496,Uneven Honey,482 +1497,Lazy Fruit,483 +1498,Flaky Mushrooms,484 +1499,Frantic Carrots,484 +1500,Immense Beets,484 +1501,Eager Carrots,484 +1502,Sweet Apples,485 +1503,Wet Chicken,485 +1504,Watery Beets,485 +1505,Cheerful Fish,485 +1506,Fantastic Fruit,485 +1507,Energetic Fruit,486 +1508,R Fish,486 +1509,Hungry Bread,487 +1510,Deafening Apples,487 +1511,Gigantic Bread,487 +1512,Mysterious Pretzel,487 +1513,Cool Beef,487 +1514,Rough Mushrooms,488 +1515,Tart Honey,488 +1516,Low Beets,488 +1517,Lucky Fruit,488 +1518,Panicky Beef,488 +1519,Beautiful Beets,489 +1520,Shivering Beef,489 +1521,Relieved Beef,489 +1522,Swift Mushrooms,490 +1523,Robust Chicken,490 +1524,Bland Bread,490 +1525,Uneven Fish,490 +1526,Weak Greens,491 +1527,Hard Chicken,491 +1528,Naughty Greens,491 +1529,Tense Apples,491 +1530,Melodic Honey,492 +1531,Disgusted Beets,493 +1532,Hurt Fish,493 +1533,Prickly Chicken,493 +1534,Charming Beef,493 +1535,Stingy Bread,493 +1536,Tender Greens,494 +1537,Splendid Beef,494 +1538,Tall Beef,494 +1539,Handsome Greens,495 +1540,Few Apples,496 +1541,Ordinary Greens,496 +1542,Screeching Beef,496 +1543,Grumpy Beef,497 +1544,Sweet Fruit,498 +1545,Determined Carrots,499 +1546,Boiling Fish,499 +1547,Greasy Beef,499 +1548,Clumsy Burrito,499 +1549,Pretty Chicken,500 +1550,Shaggy Greens,501 +1551,Lucky Burrito,501 +1552,Huge Honey,502 +1553,Tricky Fish,502 +1554,Grubby Honey,503 +1555,Melted Apples,503 +1556,Sticky Bread,503 +1557,Mute Honey,503 +1558,Nosy Honey,504 +1559,Greasy Beef,504 +1560,Magnificent Mushrooms,504 +1561,Broad Fish,504 +1562,Mute Beef,504 +1563,Screeching Beef,505 +1564,Deep Greens,505 +1565,Disturbed Greens,506 +1566,Edible Chicken,506 +1567,Gigantic Honey,506 +1568,Cheesy Beef,506 +1569,Bright Mushrooms,506 +1570,Yummy Bread,507 +1571,Beautiful Greens,508 +1572,Hissing Greens,509 +1573,Splendid Beets,509 +1574,Great Chicken,509 +1575,Wasteful Chicken,510 +1576,Arrogant Chicken,511 +1577,Sweet Beets,512 +1578,Energetic Greens,512 +1579,Courageous Mushrooms,512 +1580,Kickin' Beets,512 +1581,Awful Burrito,512 +1582,Hissing Apples,513 +1583,Tasteless Carrots,514 +1584,Precious Fish,514 +1585,Silly Apples,515 +1586,Splendid Honey,516 +1587,Troubled Chicken,516 +1588,Lucky Beets,516 +1589,Salty Chicken,517 +1590,Great Honey,517 +1591,Cold Fish,518 +1592,Tart Carrots,518 +1593,Tough Carrots,519 +1594,Arrogant Fish,520 +1595,Clumsy Greens,520 +1596,Hot Honey,520 +1597,Sour Apples,521 +1598,Late Carrots,521 +1599,Sour Carrots,521 +1600,Tough Chicken,521 +1601,Disturbed Beef,522 +1602,Good Chicken,523 +1603,Itchy Chicken,523 +1604,Moaning Honey,524 +1605,Skinny Beef,524 +1606,Kickin' Beets,524 +1607,Fluffy Beets,524 +1608,Savory Pretzel,524 +1609,Dizzy Carrots,525 +1610,Smooth Greens,525 +1611,Big Chicken,525 +1612,Dirty Bread,526 +1613,Strange Beets,526 +1614,Smiling Carrots,527 +1615,Grubby Apples,528 +1616,Tight Chicken,528 +1617,Loose Honey,528 +1618,Cheerful Honey,528 +1619,Tight Carrots,528 +1620,Robust Greens,529 +1621,Fuzzy Beets,529 +1622,Defeated Chicken,529 +1623,Flaky Burrito,529 +1624,Chilly Mushrooms,529 +1625,Salty Fruit,530 +1626,Great Apples,530 +1627,Cold Greens,530 +1628,Angry Carrots,530 +1629,Rainy Apples,530 +1630,Zany Bread,531 +1631,Thoughtful Apples,531 +1632,Miniature Fruit,531 +1633,Strange Mushrooms,531 +1634,Breezy Pretzel,532 +1635,Crazy Carrots,532 +1636,Young Apples,532 +1637,Troubled Fruit,532 +1638,Shaky Greens,533 +1639,Shaggy Mushrooms,533 +1640,Lucky Chicken,533 +1641,Friendly Beets,533 +1642,Dull Bread,534 +1643,Fuzzy Beef,534 +1644,Uneven Carrots,534 +1645,Plain Carrots,534 +1646,Mysterious Fruit,535 +1647,Wide-eyed Honey,535 +1648,Numerous Apples,536 +1649,Dull Beets,536 +1650,Weak Burrito,536 +1651,Arrogant Burrito,537 +1652,Hot Carrots,537 +1653,Husky Beef,537 +1654,Hard Bread,537 +1655,Dry Pretzel,537 +1656,Weak Pretzel,538 +1657,Righteous Mushrooms,538 +1658,Beautiful Chicken,538 +1659,Broken Chicken,539 +1660,Ill Apples,539 +1661,Massive Honey,539 +1662,Salty Chicken,539 +1663,Hot Burrito,540 +1664,Loose Carrots,541 +1665,Thundering Greens,542 +1666,Rough Burrito,542 +1667,Cheerful Pretzel,543 +1668,Numerous Fish,543 +1669,Square Beets,544 +1670,Fair Beets,544 +1671,Greasy Apples,544 +1672,Robust Apples,544 +1673,Sharp Fruit,545 +1674,Ugliest Honey,546 +1675,Massive Beef,546 +1676,Steady Mushrooms,546 +1677,Salty Pretzel,546 +1678,Nervous Bread,546 +1679,Tasty Chicken,547 +1680,Tired Greens,547 +1681,Tender Beets,548 +1682,Great Beets,548 +1683,Whispering Chicken,549 +1684,Boiling Beef,549 +1685,Fierce Mushrooms,549 +1686,New Chicken,549 +1687,Horrible Pretzel,549 +1688,Fine Mushrooms,550 +1689,Nutty Pretzel,551 +1690,Tight Greens,551 +1691,Early Carrots,551 +1692,Fluffy Bread,552 +1693,Slippery Beef,553 +1694,Gorgeous Beef,553 +1695,Defeated Fruit,554 +1696,Jolly Burrito,555 +1697,Fluffy Burrito,555 +1698,Cold Burrito,555 +1699,Upset Carrots,555 +1700,Black Carrots,555 +1701,Quiet Fish,556 +1702,Grand Beef,556 +1703,Sad Beets,556 +1704,Better Beets,556 +1705,Silent Carrots,556 +1706,Blue Honey,557 +1707,Crazy Honey,558 +1708,Fantastic Fruit,558 +1709,Flaky Beef,559 +1710,Beautiful Greens,559 +1711,Colossal Fish,559 +1712,Tiny Fish,560 +1713,Repulsive Greens,561 +1714,Mighty Carrots,562 +1715,Beautiful Pretzel,562 +1716,Cold Apples,562 +1717,Late Mushrooms,562 +1718,Disgusted Mushrooms,563 +1719,Nervous Chicken,563 +1720,Watery Fish,564 +1721,Incredible Fish,564 +1722,Jealous Bread,565 +1723,Uneven Bread,565 +1724,Defiant Honey,565 +1725,Panicky Mushrooms,566 +1726,Great Beef,567 +1727,Square Beef,568 +1728,Straight Beets,569 +1729,Ill Burrito,570 +1730,Weak Pretzel,570 +1731,Boring Fish,571 +1732,Wide Beets,571 +1733,Broken Mushrooms,571 +1734,Dull Mushrooms,571 +1735,Yummy Chicken,572 +1736,Jolly Greens,572 +1737,Wicked Beef,573 +1738,Moist Honey,573 +1739,Sour Chicken,573 +1740,Cold Bread,573 +1741,Worried Greens,574 +1742,R Beets,574 +1743,Mysterious Greens,575 +1744,Short Carrots,575 +1745,Outrageous Carrots,575 +1746,Sore Mushrooms,575 +1747,Floppy Beef,576 +1748,Great Carrots,576 +1749,Petite Carrots,577 +1750,Gentle Pretzel,577 +1751,Hollow Chicken,577 +1752,Wet Mushrooms,577 +1753,Cheesy Apples,578 +1754,Damp Greens,578 +1755,Cuddly Fish,579 +1756,Excited Fish,579 +1757,Naughty Burrito,580 +1758,Shallow Burrito,580 +1759,Handsome Burrito,580 +1760,Tough Fruit,580 +1761,Orange Greens,581 +1762,Steady Pretzel,581 +1763,Tired Beef,582 +1764,Nutty Beef,583 +1765,Jittery Burrito,583 +1766,Nervous Bread,583 +1767,Ugliest Carrots,584 +1768,Comfortable Mushrooms,584 +1769,Quaint Burrito,584 +1770,Funny Beets,585 +1771,Cuddly Bread,585 +1772,Evil Honey,585 +1773,Modern Burrito,585 +1774,Kickin' Burrito,585 +1775,Selfish Apples,586 +1776,Odd Mushrooms,586 +1777,Disgusted Fish,586 +1778,Massive Pretzel,586 +1779,Frantic Carrots,586 +1780,Shivering Burrito,587 +1781,Smooth Beets,588 +1782,Evil Pretzel,588 +1783,Sticky Carrots,588 +1784,Relieved Pretzel,588 +1785,Slippery Mushrooms,589 +1786,Exuberant Fish,590 +1787,Nutty Greens,590 +1788,Excited Burrito,590 +1789,Solid Pretzel,591 +1790,Plain Fish,591 +1791,Edible Carrots,591 +1792,Kind Pretzel,591 +1793,Broken Mushrooms,592 +1794,Shaky Burrito,592 +1795,Lazy Honey,592 +1796,Dull Fish,592 +1797,Tiny Burrito,592 +1798,Mammoth Beef,593 +1799,Envious Burrito,593 +1800,Small Apples,593 +1801,Nasty Pretzel,593 +1802,Filthy Beef,593 +1803,Kind Chicken,594 +1804,Happy Pretzel,594 +1805,Defiant Beef,594 +1806,Whispering Burrito,595 +1807,Roasted Mushrooms,595 +1808,Nervous Beets,595 +1809,Quiet Pretzel,595 +1810,Boring Honey,595 +1811,Lively Honey,596 +1812,Huge Apples,596 +1813,Narrow Chicken,596 +1814,Tight Burrito,597 +1815,Hissing Fish,597 +1816,Sad Beef,597 +1817,Hollow Honey,597 +1818,Terrible Chicken,597 +1819,Anxious Pretzel,598 +1820,Strange Chicken,598 +1821,Arrogant Fish,598 +1822,Boring Pretzel,599 +1823,Outrageous Greens,599 +1824,Selfish Greens,600 +1825,Troubled Apples,600 +1826,Mysterious Fruit,600 +1827,Thoughtless Honey,601 +1828,Witty Apples,601 +1829,Fluffy Apples,601 +1830,Dizzy Mushrooms,602 +1831,Anxious Bread,602 +1832,Stale Fruit,603 +1833,Troubled Bread,603 +1834,Hurt Burrito,603 +1835,Fluffy Carrots,603 +1836,Tame Mushrooms,603 +1837,Exuberant Greens,604 +1838,Fantastic Honey,605 +1839,Better Burrito,605 +1840,Hissing Chicken,606 +1841,Red Apples,606 +1842,Troubled Fish,606 +1843,Prickly Apples,606 +1844,Amused Beets,607 +1845,R Chicken,608 +1846,Itchy Chicken,608 +1847,Frightened Beef,608 +1848,Ancient Greens,609 +1849,Testy Burrito,609 +1850,Odd Beef,610 +1851,Squealing Beef,610 +1852,Defeated Fruit,611 +1853,Bumpy Honey,612 +1854,Boring Pretzel,612 +1855,Mute Pretzel,612 +1856,Naughty Beets,613 +1857,Tasteless Carrots,613 +1858,Cuddly Bread,614 +1859,Repulsive Greens,614 +1860,Dull Carrots,614 +1861,Slimy Chicken,614 +1862,Fat Beef,614 +1863,Itchy Burrito,615 +1864,– Apples,616 +1865,Flat Apples,616 +1866,Greasy Fruit,616 +1867,Cooing Carrots,616 +1868,Shaky Greens,617 +1869,Tart Honey,617 +1870,Itchy Greens,617 +1871,Moaning Beets,617 +1872,Ancient Fish,618 +1873,Petite Mushrooms,618 +1874,Ripe Fruit,618 +1875,Bland Carrots,619 +1876,Fuzzy Apples,619 +1877,Scrawny Carrots,619 +1878,Faithful Apples,619 +1879,Roasted Fish,620 +1880,Dangerous Apples,621 +1881,Scrawny Beef,621 +1882,Happy Carrots,621 +1883,Thoughtless Apples,622 +1884,Elated Beets,622 +1885,Deep Greens,623 +1886,Awful Apples,623 +1887,Loud Fish,624 +1888,Healthy Burrito,625 +1889,Clumsy Burrito,626 +1890,Petite Mushrooms,627 +1891,Dangerous Fish,627 +1892,Elated Beets,627 +1893,Tart Beef,627 +1894,Moist Fruit,628 +1895,Weak Pretzel,628 +1896,Angry Beef,628 +1897,Obedient Apples,629 +1898,Happy Mushrooms,629 +1899,Scary Fish,629 +1900,Scattered Mushrooms,629 +1901,Homeless Chicken,630 +1902,Vivacious Burrito,630 +1903,Dull Chicken,630 +1904,Plastic Pretzel,631 +1905,Smooth Bread,631 +1906,Melodic Fruit,632 +1907,Spicy Carrots,632 +1908,Prickly Fish,633 +1909,Sharp Apples,633 +1910,Soft Fish,633 +1911,Testy Mushrooms,633 +1912,Healthy Bread,634 +1913,Embarrassed Beets,634 +1914,Dirty Beef,634 +1915,Melted Pretzel,634 +1916,Combative Fruit,634 +1917,Dusty Pretzel,635 +1918,Lucky Beets,635 +1919,Sore Beef,635 +1920,Fat Pretzel,635 +1921,Vivacious Fish,635 +1922,Silent Fish,636 +1923,Silky Pretzel,636 +1924,Terrible Chicken,636 +1925,Ashamed Burrito,636 +1926,Cheerful Bread,637 +1927,Precious Carrots,637 +1928,Cruel Greens,637 +1929,Broken Carrots,638 +1930,Flaky Fruit,638 +1931,Boiling Fruit,638 +1932,Itchy Mushrooms,638 +1933,Clumsy Greens,639 +1934,Floppy Fruit,639 +1935,Large Greens,639 +1936,Wicked Chicken,639 +1937,Cooing Beef,640 +1938,Energetic Apples,640 +1939,Whispering Beets,640 +1940,Itchy Mushrooms,640 +1941,Wide Carrots,641 +1942,Envious Carrots,642 +1943,R Beets,642 +1944,Melted Carrots,642 +1945,Strong Beef,642 +1946,Whispering Greens,643 +1947,Moaning Beef,643 +1948,Prickly Bread,643 +1949,Kickin' Beets,644 +1950,Kind Apples,644 +1951,Narrow Chicken,644 +1952,Odd Greens,644 +1953,Rare Pretzel,645 +1954,Jealous Beef,645 +1955,High Chicken,645 +1956,Wasteful Beef,645 +1957,Thirsty Bread,646 +1958,Sour Chicken,646 +1959,Witty Burrito,646 +1960,Salty Burrito,647 +1961,Faint Mushrooms,647 +1962,Pretty Burrito,647 +1963,Slimy Apples,648 +1964,Moaning Carrots,648 +1965,Curved Fruit,648 +1966,Striped Honey,649 +1967,Late Pretzel,649 +1968,Gigantic Greens,650 +1969,Boring Pretzel,650 +1970,Wasteful Honey,650 +1971,Obnoxious Carrots,651 +1972,Loose Beets,651 +1973,Cruel Beef,651 +1974,Moist Greens,652 +1975,Wasteful Beets,652 +1976,Bad Carrots,653 +1977,Filthy Carrots,653 +1978,Curly Fruit,653 +1979,Sweet Fish,653 +1980,Watery Beef,653 +1981,Silky Pretzel,654 +1982,Relieved Carrots,654 +1983,Late Burrito,654 +1984,Giant Bread,654 +1985,Happy Pretzel,655 +1986,Rotten Fish,655 +1987,Anxious Mushrooms,655 +1988,Mute Beets,656 +1989,Tasteless Apples,656 +1990,Rough Fruit,657 +1991,Eager Chicken,658 +1992,Raspy Carrots,658 +1993,Voiceless Fish,658 +1994,Broken Beets,658 +1995,Courageous Pretzel,659 +1996,Tame Carrots,660 +1997,Modern Mushrooms,660 +1998,Salty Beets,661 +1999,Melodic Chicken,662 +2000,Gentle Fish,662 +2001,Incredible Carrots,662 +2002,Long Carrots,662 +2003,Light Greens,662 +2004,Moaning Apples,663 +2005,Small Apples,663 +2006,Puny Bread,664 +2007,Bad Pretzel,664 +2008,Blue Fish,664 +2009,Kickin' Chicken,664 +2010,Many Apples,664 +2011,Spicy Beef,665 +2012,Sharp Fruit,666 +2013,Victorious Beets,666 +2014,Defiant Mushrooms,666 +2015,Empty Apples,666 +2016,Red Greens,666 +2017,Mammoth Carrots,667 +2018,Jumpin' Bread,668 +2019,Red Beef,668 +2020,Ancient Fish,668 +2021,Homeless Bread,669 +2022,Swift Pretzel,669 +2023,Spotty Chicken,669 +2024,Flat Fruit,669 +2025,Smooth Greens,669 +2026,Charming Pretzel,670 +2027,New Bread,671 +2028,Sweet Fruit,671 +2029,Nice Carrots,671 +2030,Flaky Carrots,671 +2031,Juicy Carrots,672 +2032,Kind Honey,672 +2033,Kickin' Chicken,673 +2034,Foolish Fish,673 +2035,Tense Fruit,673 +2036,Broad Greens,673 +2037,Mute Fruit,674 +2038,Broken Greens,675 +2039,Grumpy Mushrooms,675 +2040,Cheerful Mushrooms,675 +2041,Scary Apples,676 +2042,Prickly Carrots,676 +2043,Sad Burrito,676 +2044,Relieved Fruit,676 +2045,Blue Beets,677 +2046,Nom nom Burrito,677 +2047,Tall Bread,677 +2048,Large Chicken,678 +2049,R Pretzel,678 +2050,Elated Mushrooms,678 +2051,Immense Burrito,678 +2052,Sore Fruit,679 +2053,Frightened Greens,679 +2054,Fine Beef,679 +2055,Energetic Mushrooms,679 +2056,Flaky Beef,679 +2057,Rough Beef,680 +2058,Thundering Pretzel,680 +2059,Awful Pretzel,681 +2060,Sticky Pretzel,682 +2061,Rapid Bread,683 +2062,Big Mushrooms,683 +2063,Ordinary Fish,683 +2064,Greasy Burrito,684 +2065,Breezy Mushrooms,684 +2066,Slippery Bread,684 +2067,Tense Greens,684 +2068,Boring Greens,684 +2069,Blue Pretzel,685 +2070,Frightened Beets,685 +2071,Purring Beef,685 +2072,Jumpin' Chicken,686 +2073,Faithful Fish,686 +2074,Shaky Chicken,686 +2075,Relieved Greens,687 +2076,Sharp Fruit,687 +2077,Grieving Beets,687 +2078,Nom nom Mushrooms,687 +2079,Melodic Fruit,687 +2080,Melodic Chicken,688 +2081,Selfish Mushrooms,688 +2082,Boom-town Bread,688 +2083,Floppy Mushrooms,688 +2084,Hurt Bread,689 +2085,Wicked Beef,689 +2086,Black Fish,689 +2087,Elated Fruit,689 +2088,Envious Bread,690 +2089,Silent Greens,690 +2090,Terrible Mushrooms,691 +2091,Proud Apples,691 +2092,Robust Chicken,691 +2093,Itchy Beets,691 +2094,Loud Carrots,692 +2095,Purring Beef,692 +2096,Dull Greens,692 +2097,Hot Beef,692 +2098,Kickin' Fish,692 +2099,Clumsy Burrito,693 +2100,Flat Bread,693 +2101,Frightened Greens,693 +2102,Pickled Beets,693 +2103,Large Burrito,694 +2104,Pretty Mushrooms,694 +2105,Giant Carrots,695 +2106,Boring Burrito,696 +2107,Old Carrots,696 +2108,Icy Bread,696 +2109,Swift Apples,696 +2110,Edible Carrots,696 +2111,Mysterious Beets,697 +2112,Wooden Honey,697 +2113,Hollow Apples,698 +2114,Fluffy Beef,698 +2115,Disturbed Mushrooms,698 +2116,Gigantic Carrots,698 +2117,Gigantic Chicken,699 +2118,Flaky Burrito,699 +2119,Greasy Chicken,699 +2120,Faint Mushrooms,699 +2121,Wooden Bread,700 +2122,Small Beets,701 +2123,Squealing Apples,701 +2124,Fuzzy Beets,702 +2125,Nosy Fruit,703 +2126,Evil Apples,703 +2127,Skinny Carrots,703 +2128,Black Beets,704 +2129,Young Greens,705 +2130,Incredible Fish,706 +2131,Dirty Burrito,706 +2132,Dangerous Honey,707 +2133,Average Pretzel,708 +2134,Sharp Fish,708 +2135,Ashamed Fish,708 +2136,Wicked Pretzel,708 +2137,Wasteful Greens,709 +2138,Faithful Fruit,710 +2139,Wicked Bread,711 +2140,Troubled Carrots,711 +2141,Cool Carrots,711 +2142,Confused Chicken,712 +2143,Steady Fruit,712 +2144,Juicy Fish,712 +2145,Wide-eyed Beets,713 +2146,Skinny Greens,713 +2147,Happy Burrito,714 +2148,Sour Mushrooms,715 +2149,Enthusiastic Burrito,715 +2150,Gentle Beets,715 +2151,R Carrots,715 +2152,Icy Carrots,716 +2153,Whispering Apples,717 +2154,Great Pretzel,718 +2155,Ancient Greens,718 +2156,Beautiful Beef,719 +2157,Cuddly Fish,719 +2158,Quaint Beef,720 +2159,Selfish Fruit,720 +2160,Purple Bread,720 +2161,Vast Apples,720 +2162,Narrow Bread,721 +2163,Perfect Beef,721 +2164,Obnoxious Carrots,721 +2165,Young Burrito,721 +2166,Scary Fruit,722 +2167,Depressed Apples,722 +2168,New Honey,722 +2169,Green Bread,722 +2170,Nasty Mushrooms,723 +2171,Bitter Fish,723 +2172,Voiceless Honey,723 +2173,Weary Chicken,724 +2174,Mysterious Beets,725 +2175,Beautiful Mushrooms,725 +2176,Thoughtless Mushrooms,725 +2177,Fluffy Beets,725 +2178,Tight Chicken,726 +2179,Striped Mushrooms,726 +2180,Numerous Fruit,726 +2181,Testy Chicken,727 +2182,Shaggy Burrito,727 +2183,Spotty Fish,728 +2184,Broken Mushrooms,728 +2185,Stale Beets,729 +2186,Faint Pretzel,730 +2187,Hushed Carrots,731 +2188,Hot Carrots,732 +2189,Nosy Chicken,732 +2190,Pleasant Honey,732 +2191,Nosy Burrito,732 +2192,Scattered Carrots,732 +2193,Average Carrots,733 +2194,Cold Carrots,733 +2195,Hissing Honey,734 +2196,Healthy Greens,734 +2197,Defiant Beef,734 +2198,Gentle Beef,734 +2199,Broad Fish,734 +2200,Ratty Beets,735 +2201,Sad Apples,735 +2202,Broken Chicken,736 +2203,Better Fruit,737 +2204,Modern Burrito,737 +2205,Sweet Chicken,738 +2206,Ratty Pretzel,738 +2207,Grand Chicken,739 +2208,Agreeable Apples,740 +2209,Testy Chicken,740 +2210,Tricky Fish,740 +2211,Ordinary Bread,740 +2212,Homeless Greens,741 +2213,Rotten Fruit,742 +2214,Ashamed Chicken,742 +2215,Squealing Burrito,742 +2216,Lazy Pretzel,742 +2217,Worried Honey,742 +2218,Handsome Mushrooms,743 +2219,Courageous Chicken,743 +2220,Tired Beef,744 +2221,Many Burrito,744 +2222,Fair Beef,745 +2223,Huge Mushrooms,745 +2224,Thundering Apples,745 +2225,Odd Greens,745 +2226,Nervous Beets,746 +2227,Delightful Beets,746 +2228,Boring Beets,746 +2229,Ordinary Fish,746 +2230,Gigantic Apples,747 +2231,Plastic Bread,747 +2232,Mighty Greens,747 +2233,Nom nom Pretzel,748 +2234,Envious Pretzel,748 +2235,Tender Bread,748 +2236,Mysterious Apples,749 +2237,Tiny Greens,749 +2238,Strange Beef,749 +2239,Average Carrots,749 +2240,Good Fruit,749 +2241,Filthy Carrots,750 +2242,Lonely Chicken,750 +2243,Scattered Bread,750 +2244,Brave Pretzel,750 +2245,Smiling Chicken,750 +2246,Tasty Bread,751 +2247,Smiling Burrito,751 +2248,Skinny Beets,751 +2249,Spotty Beef,751 +2250,Salty Beets,752 +2251,Bland Honey,752 +2252,Odd Beets,752 +2253,Eager Chicken,753 +2254,Soft Fish,753 +2255,Screeching Carrots,753 +2256,Homeless Carrots,754 +2257,Zany Apples,754 +2258,S Fruit,754 +2259,Long Fish,754 +2260,Deafening Apples,754 +2261,Quick Greens,755 +2262,Steady Bread,755 +2263,Prickly Beets,755 +2264,Ill Chicken,755 +2265,Husky Burrito,755 +2266,Pleasant Chicken,756 +2267,Orange Beef,756 +2268,Kind Fruit,756 +2269,Rainy Greens,756 +2270,Rapid Carrots,756 +2271,Juicy Fruit,757 +2272,Puny Carrots,757 +2273,Chilly Mushrooms,758 +2274,Spotty Beets,758 +2275,Empty Apples,758 +2276,Mute Fruit,758 +2277,R Bread,759 +2278,Brief Honey,760 +2279,Silky Honey,760 +2280,Nice Burrito,760 +2281,Chilly Honey,760 +2282,Troubled Apples,761 +2283,Tight Beets,761 +2284,Good Fish,761 +2285,Jittery Fish,761 +2286,Prickly Honey,762 +2287,Broad Pretzel,762 +2288,Jolly Greens,762 +2289,Smooth Carrots,763 +2290,Healthy Pretzel,764 +2291,Fantastic Fish,765 +2292,Exuberant Mushrooms,765 +2293,Naughty Apples,765 +2294,Sweet Honey,765 +2295,Tender Chicken,766 +2296,Terrible Honey,766 +2297,Scrawny Fruit,766 +2298,Ugliest Apples,766 +2299,New Beef,766 +2300,Empty Beef,767 +2301,Combative Beef,767 +2302,Encouraging Beets,768 +2303,Voiceless Beets,768 +2304,Slippery Mushrooms,768 +2305,Moaning Beef,768 +2306,Scrumptious Greens,769 +2307,Grand Bread,769 +2308,Colossal Beef,769 +2309,Bright Greens,769 +2310,Faint Apples,769 +2311,Grubby Mushrooms,770 +2312,Itchy Pretzel,770 +2313,Broad Chicken,770 +2314,Anxious Mushrooms,770 +2315,Cooperative Bread,770 +2316,Troubled Bread,771 +2317,Mysterious Honey,771 +2318,Immense Burrito,771 +2319,Stale Bread,772 +2320,Beautiful Mushrooms,772 +2321,Defeated Beets,772 +2322,Better Chicken,773 +2323,Lazy Burrito,773 +2324,Sweet Bread,773 +2325,Broken Beets,773 +2326,Rotten Beef,774 +2327,Thoughtful Carrots,774 +2328,Round Greens,774 +2329,Silky Greens,774 +2330,Dizzy Fruit,775 +2331,Raspy Fruit,775 +2332,Evil Beef,775 +2333,Orange Pretzel,775 +2334,Slippery Apples,776 +2335,Hot Honey,776 +2336,Faint Honey,776 +2337,Clumsy Beef,777 +2338,Dirty Beets,777 +2339,Quickest Honey,777 +2340,Greasy Beef,777 +2341,Tasteless Fruit,777 +2342,Narrow Fish,778 +2343,Lively Honey,779 +2344,Jumpin' Honey,779 +2345,Whispering Mushrooms,779 +2346,Righteous Pretzel,779 +2347,Ripe Greens,780 +2348,Breezy Beets,780 +2349,Quick Carrots,781 +2350,Hissing Pretzel,781 +2351,Pickled Fruit,781 +2352,Late Burrito,781 +2353,Embarrassed Carrots,782 +2354,Dusty Fruit,783 +2355,Homeless Beef,783 +2356,Perfect Pretzel,783 +2357,Hollow Bread,783 +2358,Hot Apples,784 +2359,Troubled Chicken,785 +2360,Thoughtless Fish,786 +2361,Heavy Honey,786 +2362,Round Greens,786 +2363,Fresh Mushrooms,786 +2364,Strange Bread,786 +2365,Yummy Carrots,787 +2366,Cheesy Burrito,787 +2367,Lovely Honey,787 +2368,Savory Carrots,787 +2369,Splendid Beef,787 +2370,Terrible Beets,788 +2371,Disturbed Fruit,788 +2372,Scary Apples,788 +2373,Kind Beets,789 +2374,Steep Bread,789 +2375,Thoughtful Chicken,789 +2376,Stale Chicken,790 +2377,Mammoth Carrots,790 +2378,Silky Beets,790 +2379,Curved Carrots,790 +2380,Frantic Carrots,791 +2381,Round Pretzel,791 +2382,Average Pretzel,791 +2383,Thoughtless Greens,791 +2384,Bad Mushrooms,791 +2385,Awful Chicken,792 +2386,Disturbed Burrito,792 +2387,Fresh Fish,792 +2388,Grand Beets,793 +2389,Gorgeous Burrito,793 +2390,Thoughtful Fruit,793 +2391,Grieving Honey,793 +2392,Clumsy Bread,793 +2393,Immense Beef,794 +2394,Robust Pretzel,794 +2395,Flat Chicken,794 +2396,Mammoth Beef,794 +2397,Fair Beets,794 +2398,Dangerous Beef,795 +2399,Good Fruit,795 +2400,Pickled Mushrooms,795 +2401,– Beets,795 +2402,Red Beets,795 +2403,Strong Beef,796 +2404,Crazy Burrito,796 +2405,Tough Carrots,796 +2406,Salty Carrots,796 +2407,Solid Mushrooms,796 +2408,Salty Fish,797 +2409,Brave Apples,797 +2410,R Bread,797 +2411,Healthy Honey,797 +2412,Repulsive Honey,797 +2413,Loose Beef,798 +2414,Comfortable Greens,798 +2415,Orange Greens,798 +2416,R Bread,798 +2417,Itchy Apples,799 +2418,Sad Apples,799 +2419,Hard Fish,799 +2420,Jumpin' Carrots,800 +2421,Roasted Beets,800 +2422,Immense Honey,800 +2423,Wide Chicken,800 +2424,Grumpy Apples,801 +2425,Moaning Carrots,801 +2426,Dry Bread,801 +2427,Clumsy Chicken,801 +2428,Whispering Chicken,801 +2429,Eager Mushrooms,802 +2430,Kickin' Bread,803 +2431,Sad Burrito,803 +2432,Slimy Fruit,804 +2433,Ashamed Fish,805 +2434,Depressed Beets,805 +2435,Magnificent Fish,805 +2436,Ugliest Honey,806 +2437,Nervous Chicken,806 +2438,Jealous Fish,806 +2439,Tiny Carrots,806 +2440,Tense Fruit,806 +2441,Sticky Chicken,807 +2442,Faint Burrito,807 +2443,Watery Fruit,807 +2444,Depressed Greens,807 +2445,R Fruit,807 +2446,Kickin' Fruit,808 +2447,Hard Fruit,808 +2448,Shaky Burrito,808 +2449,Plastic Greens,808 +2450,Strange Greens,809 +2451,Rotten Chicken,809 +2452,Successful Fish,809 +2453,Nasty Mushrooms,809 +2454,Long Pretzel,809 +2455,Wide-eyed Fish,810 +2456,Bad Pretzel,810 +2457,Broken Burrito,811 +2458,Hot Greens,811 +2459,Mute Burrito,811 +2460,Flaky Pretzel,812 +2461,Angry Honey,812 +2462,Silly Carrots,812 +2463,Tough Bread,812 +2464,Grumpy Fruit,812 +2465,Helpless Beef,813 +2466,Cuddly Beets,814 +2467,Mammoth Honey,814 +2468,Rotten Honey,814 +2469,Slow Burrito,815 +2470,Jumpin' Bread,815 +2471,Modern Greens,815 +2472,Robust Bread,815 +2473,Short Greens,816 +2474,Faithful Apples,816 +2475,Fluffy Burrito,816 +2476,Wooden Honey,817 +2477,Blue Pretzel,817 +2478,Depressed Pretzel,817 +2479,Flat Beets,818 +2480,Helpless Beef,818 +2481,Spotty Burrito,818 +2482,Large Carrots,819 +2483,Short Beets,819 +2484,Calm Chicken,819 +2485,Selfish Bread,819 +2486,Lovely Bread,820 +2487,Splendid Mushrooms,820 +2488,Quickest Beets,820 +2489,Mighty Fruit,820 +2490,Courageous Honey,820 +2491,Screeching Bread,821 +2492,Straight Mushrooms,822 +2493,Purple Chicken,823 +2494,Slimy Carrots,823 +2495,M Beets,824 +2496,Fine Greens,824 +2497,Savory Mushrooms,824 +2498,Long Apples,824 +2499,Yummy Fruit,824 +2500,Panicky Fruit,825 +2501,Exuberant Carrots,825 +2502,Damp Burrito,825 +2503,Skinny Honey,825 +2504,Resonant Chicken,826 +2505,Lovely Fish,826 +2506,Obedient Apples,826 +2507,Shaky Burrito,826 +2508,R Fruit,826 +2509,Fierce Honey,827 +2510,Jumpin' Chicken,827 +2511,Modern Chicken,827 +2512,Elated Chicken,828 +2513,Combative Beets,829 +2514,Loose Mushrooms,829 +2515,Great Greens,829 +2516,Scrawny Fruit,829 +2517,Weary Apples,830 +2518,Thundering Apples,830 +2519,Uneven Bread,830 +2520,Strong Chicken,830 +2521,Quick Fish,830 +2522,Repulsive Burrito,831 +2523,Nosy Mushrooms,832 +2524,Jealous Pretzel,832 +2525,Ashamed Fish,832 +2526,Shrill Apples,832 +2527,Heavy Mushrooms,832 +2528,Flaky Chicken,833 +2529,Mysterious Bread,833 +2530,Silly Burrito,833 +2531,Friendly Greens,834 +2532,Righteous Pretzel,834 +2533,Red Beets,834 +2534,Creepy Fruit,834 +2535,Cooperative Pretzel,835 +2536,Scattered Fish,836 +2537,Mammoth Beets,836 +2538,Tan Chicken,836 +2539,Arrogant Bread,836 +2540,Tight Greens,836 +2541,Few Burrito,837 +2542,Worried Apples,837 +2543,Raspy Burrito,837 +2544,Awful Beets,837 +2545,Frightened Pretzel,838 +2546,Silent Bread,838 +2547,Perfect Greens,838 +2548,Hurt Fruit,838 +2549,Melted Chicken,839 +2550,Bitter Pretzel,839 +2551,Courageous Burrito,840 +2552,Strong Bread,840 +2553,Plain Beef,841 +2554,Energetic Carrots,841 +2555,Tense Chicken,841 +2556,Calm Mushrooms,841 +2557,Sore Greens,842 +2558,Ripe Chicken,842 +2559,Boom-town Burrito,842 +2560,Ashamed Apples,843 +2561,Slimy Pretzel,843 +2562,Raspy Beets,843 +2563,Great Burrito,844 +2564,Quiet Carrots,844 +2565,Narrow Carrots,844 +2566,Cheerful Carrots,845 +2567,Raspy Burrito,845 +2568,Melodic Beets,845 +2569,Disturbed Fish,846 +2570,Hissing Carrots,847 +2571,Fresh Carrots,847 +2572,Arrogant Bread,848 +2573,Disgusted Fruit,848 +2574,Ugliest Beets,848 +2575,Stale Chicken,848 +2576,Jealous Beets,848 +2577,Mammoth Fish,849 +2578,Curved Mushrooms,849 +2579,Comfortable Mushrooms,849 +2580,Mammoth Chicken,849 +2581,Swift Greens,849 +2582,Quick Honey,850 +2583,Colossal Pretzel,851 +2584,Smiling Greens,851 +2585,Lively Fish,851 +2586,Homeless Beets,852 +2587,Grand Fish,852 +2588,Uptight Mushrooms,852 +2589,Dry Beef,852 +2590,Wide Honey,853 +2591,– Pretzel,854 +2592,Puny Burrito,855 +2593,Soft Fruit,855 +2594,Scattered Fish,856 +2595,Elated Carrots,856 +2596,Tan Bread,856 +2597,Bright Fruit,856 +2598,Tired Bread,857 +2599,Short Pretzel,857 +2600,Boiling Greens,857 +2601,Wide-eyed Burrito,858 +2602,Lazy Fruit,858 +2603,Rough Fruit,858 +2604,Afraid Greens,858 +2605,Tasteless Fruit,859 +2606,Afraid Beets,859 +2607,Shallow Carrots,859 +2608,Puny Burrito,859 +2609,Broken Greens,859 +2610,Fresh Apples,860 +2611,Salty Apples,860 +2612,Tense Beets,860 +2613,Mute Beets,860 +2614,Nervous Mushrooms,860 +2615,Weak Honey,861 +2616,Hushed Chicken,861 +2617,Horrible Burrito,861 +2618,Hot Beef,861 +2619,Scrawny Beef,861 +2620,Terrible Burrito,862 +2621,Stale Beef,862 +2622,Cool Honey,862 +2623,Scattered Chicken,862 +2624,Faint Carrots,862 +2625,Big Pretzel,863 +2626,Uneven Honey,863 +2627,Slimy Pretzel,863 +2628,Nosy Greens,864 +2629,Great Carrots,864 +2630,Frail Carrots,864 +2631,Angry Carrots,864 +2632,Brief Apples,865 +2633,Quiet Burrito,865 +2634,Obnoxious Beets,865 +2635,Tiny Greens,865 +2636,Low Chicken,865 +2637,Flat Greens,866 +2638,Evil Beef,866 +2639,Shaky Fruit,867 +2640,Dangerous Greens,867 +2641,Sweet Mushrooms,867 +2642,Cooing Bread,868 +2643,Rainy Greens,869 +2644,Smooth Carrots,869 +2645,Black Mushrooms,870 +2646,Lovely Bread,870 +2647,Ugly Carrots,871 +2648,Ashamed Chicken,871 +2649,Damp Beef,871 +2650,Loose Pretzel,871 +2651,Voiceless Pretzel,871 +2652,Modern Burrito,872 +2653,Happy Greens,872 +2654,Numerous Apples,872 +2655,Fuzzy Carrots,873 +2656,Ugly Pretzel,874 +2657,Curly Pretzel,874 +2658,Plastic Fruit,875 +2659,Tough Apples,876 +2660,Whispering Bread,876 +2661,Gigantic Honey,877 +2662,Greasy Fruit,877 +2663,Evil Beets,877 +2664,Rough Chicken,878 +2665,Lucky Fish,878 +2666,Stupendous Honey,878 +2667,Rare Fish,878 +2668,Harsh Bread,878 +2669,Tall Beets,879 +2670,Massive Fruit,879 +2671,Depressed Bread,880 +2672,Few Fish,880 +2673,Black Honey,880 +2674,Itchy Fish,880 +2675,Raspy Pretzel,880 +2676,Helpless Chicken,881 +2677,Screeching Beets,882 +2678,Husky Honey,882 +2679,Petite Mushrooms,882 +2680,Fluffy Pretzel,882 +2681,Melodic Fish,883 +2682,Shivering Burrito,883 +2683,Fuzzy Apples,883 +2684,Boring Apples,883 +2685,Righteous Beets,883 +2686,Victorious Beef,884 +2687,Uneven Fish,884 +2688,Purring Pretzel,884 +2689,Shivering Beef,884 +2690,Great Beef,884 +2691,Plain Apples,885 +2692,Helpful Apples,886 +2693,Confused Chicken,887 +2694,Straight Apples,888 +2695,Blue Fruit,889 +2696,Jolly Fish,889 +2697,Shaggy Apples,889 +2698,Scary Greens,890 +2699,Thoughtful Burrito,890 +2700,Fine Greens,890 +2701,Curly Chicken,890 +2702,Fuzzy Chicken,891 +2703,Outrageous Beets,891 +2704,Tired Burrito,892 +2705,– Burrito,892 +2706,Faithful Fruit,892 +2707,Creepy Greens,893 +2708,Tall Carrots,894 +2709,Moist Burrito,894 +2710,Combative Carrots,894 +2711,Tall Fish,894 +2712,Horrible Carrots,894 +2713,Puny Apples,895 +2714,Jolly Bread,895 +2715,Big Fruit,895 +2716,Happy Burrito,896 +2717,Loose Fish,896 +2718,Fair Beets,896 +2719,Straight Burrito,896 +2720,Miniature Burrito,897 +2721,Dusty Carrots,897 +2722,Uneven Burrito,897 +2723,Eager Honey,898 +2724,Bumpy Carrots,899 +2725,Incredible Greens,899 +2726,Floppy Carrots,899 +2727,Creepy Bread,899 +2728,Deep Apples,899 +2729,– Fish,900 +2730,Watery Greens,900 +2731,Incredible Greens,901 +2732,Bumpy Fruit,901 +2733,Loud Bread,901 +2734,Loose Apples,902 +2735,Rare Chicken,903 +2736,Jittery Beets,903 +2737,Miniature Apples,903 +2738,Combative Beets,903 +2739,Hissing Beef,904 +2740,Troubled Bread,904 +2741,Shaky Fish,904 +2742,Zany Chicken,904 +2743,Nosy Chicken,905 +2744,Mute Mushrooms,905 +2745,Colossal Greens,905 +2746,Long Greens,905 +2747,Late Pretzel,906 +2748,Ashamed Burrito,906 +2749,Watery Beets,906 +2750,Robust Burrito,907 +2751,Great Beef,907 +2752,Fair Beef,907 +2753,Scattered Burrito,908 +2754,Homeless Chicken,908 +2755,Healthy Beets,908 +2756,Eager Greens,908 +2757,Plain Chicken,908 +2758,Fine Bread,909 +2759,Modern Bread,909 +2760,Hissing Fruit,909 +2761,Nom nom Chicken,909 +2762,Ordinary Beets,909 +2763,Young Honey,910 +2764,Faint Fruit,910 +2765,Ill Pretzel,911 +2766,Enthusiastic Greens,911 +2767,Depressed Pretzel,911 +2768,Awful Fruit,911 +2769,Elated Beets,912 +2770,Hushed Carrots,912 +2771,Flat Beets,912 +2772,Cheerful Beef,913 +2773,– Mushrooms,913 +2774,Stingy Carrots,913 +2775,Lovely Pretzel,914 +2776,Perfect Beets,914 +2777,Stingy Apples,914 +2778,Shrill Beef,914 +2779,Loud Fruit,915 +2780,Rough Burrito,915 +2781,Awful Carrots,915 +2782,Nasty Fruit,915 +2783,Excited Apples,915 +2784,Harsh Pretzel,916 +2785,Wide Beef,916 +2786,Stupendous Honey,916 +2787,Scrumptious Bread,916 +2788,Lonely Chicken,916 +2789,Square Apples,917 +2790,Pretty Honey,917 +2791,Hurt Mushrooms,917 +2792,Magnificent Beets,918 +2793,Incredible Honey,918 +2794,Spicy Burrito,919 +2795,Yellow Apples,919 +2796,Chilly Fruit,919 +2797,Ill Apples,919 +2798,Nervous Beets,919 +2799,Witty Fruit,920 +2800,Strange Fish,921 +2801,Cuddly Chicken,921 +2802,Tan Fruit,921 +2803,R Bread,921 +2804,Deafening Honey,921 +2805,Relieved Greens,922 +2806,Ratty Burrito,922 +2807,Perfect Beets,922 +2808,Witty Apples,922 +2809,Solid Bread,922 +2810,Skinny Apples,923 +2811,Lovely Beets,923 +2812,Nosy Apples,924 +2813,Elated Chicken,924 +2814,Boiling Beets,924 +2815,Tough Greens,924 +2816,Fuzzy Greens,925 +2817,R Fish,925 +2818,Handsome Beets,925 +2819,Bad Beef,926 +2820,Faint Chicken,926 +2821,Lovely Fruit,926 +2822,Vast Bread,926 +2823,Better Carrots,927 +2824,Husky Burrito,927 +2825,Numerous Pretzel,927 +2826,Dizzy Greens,927 +2827,Juicy Greens,927 +2828,Strong Burrito,928 +2829,Mute Chicken,929 +2830,Icy Chicken,930 +2831,Amused Greens,930 +2832,Mighty Fruit,930 +2833,Tall Apples,931 +2834,Incredible Carrots,931 +2835,Breezy Fruit,931 +2836,Giant Apples,931 +2837,Ugly Bread,932 +2838,Greasy Mushrooms,932 +2839,Mighty Greens,933 +2840,Cruel Bread,933 +2841,Obnoxious Fish,934 +2842,High Greens,934 +2843,Friendly Honey,934 +2844,Puny Beets,935 +2845,Faint Beets,936 +2846,Relieved Mushrooms,936 +2847,Dizzy Greens,936 +2848,Scattered Beets,936 +2849,Raspy Mushrooms,937 +2850,Big Apples,937 +2851,Tiny Pretzel,938 +2852,Broken Pretzel,938 +2853,Itchy Beef,938 +2854,Cooperative Greens,939 +2855,Frail Burrito,940 +2856,Husky Apples,940 +2857,Ugly Burrito,940 +2858,Hollow Bread,940 +2859,Numerous Beef,941 +2860,Savory Mushrooms,941 +2861,Dangerous Mushrooms,941 +2862,Spicy Fruit,942 +2863,Stale Honey,942 +2864,Frightened Carrots,942 +2865,Pleasant Apples,942 +2866,Big Greens,943 +2867,Boiling Fruit,943 +2868,Encouraging Beets,943 +2869,Heavy Chicken,944 +2870,Dirty Beets,944 +2871,Cooperative Beef,945 +2872,Icy Beets,945 +2873,Screeching Mushrooms,946 +2874,Hushed Burrito,946 +2875,Silky Fish,946 +2876,Outrageous Chicken,946 +2877,Hot Honey,947 +2878,Young Fish,947 +2879,S Fruit,948 +2880,Quickest Fruit,948 +2881,Bland Burrito,948 +2882,Disgusted Honey,948 +2883,Thoughtful Honey,948 +2884,Fluffy Pretzel,949 +2885,Shaky Apples,950 +2886,Friendly Burrito,950 +2887,Mammoth Fruit,951 +2888,Victorious Chicken,951 +2889,Shallow Beef,951 +2890,Fresh Mushrooms,951 +2891,Purple Beets,952 +2892,Immense Fish,953 +2893,Lazy Greens,953 +2894,Lonely Chicken,953 +2895,Annoyed Carrots,954 +2896,Envious Bread,955 +2897,Faithful Beets,955 +2898,Foolish Mushrooms,955 +2899,Shivering Pretzel,955 +2900,Bright Bread,955 +2901,Greasy Fish,956 +2902,Chilly Beets,956 +2903,Rapid Burrito,957 +2904,M Fruit,957 +2905,Fast Honey,958 +2906,Salty Burrito,959 +2907,Jittery Fish,959 +2908,Small Pretzel,959 +2909,Comfortable Apples,960 +2910,Hushed Burrito,960 +2911,Depressed Beef,960 +2912,Grieving Bread,960 +2913,Icy Apples,961 +2914,Envious Chicken,961 +2915,Broad Burrito,962 +2916,Repulsive Apples,962 +2917,Faint Burrito,963 +2918,Dangerous Mushrooms,963 +2919,Brave Pretzel,963 +2920,Tough Beef,964 +2921,Tough Honey,964 +2922,Tense Fish,964 +2923,Rough Beets,964 +2924,Ancient Beets,965 +2925,Large Burrito,965 +2926,Creepy Fruit,965 +2927,Stale Mushrooms,965 +2928,Handsome Fish,966 +2929,Naughty Mushrooms,966 +2930,Tired Beef,966 +2931,Greasy Fish,967 +2932,Nice Fruit,967 +2933,Old Fruit,967 +2934,Uneven Pretzel,967 +2935,Green Burrito,968 +2936,Moist Chicken,968 +2937,Spotty Apples,969 +2938,Nosy Apples,969 +2939,Red Beets,970 +2940,Breezy Mushrooms,970 +2941,Pickled Honey,970 +2942,Colossal Fish,971 +2943,Energetic Pretzel,971 +2944,Salty Beets,971 +2945,M Apples,971 +2946,Nice Honey,971 +2947,Comfortable Pretzel,972 +2948,Foolish Fish,973 +2949,Whispering Mushrooms,973 +2950,Ordinary Burrito,973 +2951,Small Carrots,973 +2952,Spicy Mushrooms,974 +2953,Narrow Carrots,974 +2954,Petite Bread,974 +2955,Gorgeous Beets,974 +2956,Better Carrots,975 +2957,Obnoxious Pretzel,975 +2958,Great Chicken,975 +2959,Black Beef,975 +2960,Spotty Carrots,976 +2961,Watery Fruit,976 +2962,Tight Beef,977 +2963,Low Beets,977 +2964,High Beets,977 +2965,Calm Pretzel,977 +2966,Crazy Carrots,978 +2967,Nosy Bread,978 +2968,Numerous Carrots,978 +2969,Hilarious Beets,978 +2970,Agreeable Beef,978 +2971,Shallow Beef,979 +2972,Fair Bread,979 +2973,Smiling Beets,979 +2974,Elated Greens,979 +2975,Green Mushrooms,979 +2976,Odd Fruit,980 +2977,Obnoxious Burrito,980 +2978,Helpless Chicken,981 +2979,Breezy Fruit,981 +2980,Old Apples,981 +2981,Anxious Carrots,982 +2982,Bright Honey,983 +2983,Tame Chicken,983 +2984,Silly Honey,983 +2985,Miniature Beef,983 +2986,Obnoxious Fruit,983 +2987,Striped Mushrooms,984 +2988,Old Carrots,984 +2989,Shaggy Pretzel,984 +2990,Comfortable Apples,984 +2991,Tired Apples,985 +2992,– Burrito,985 +2993,Funny Fruit,986 +2994,Wide-eyed Greens,986 +2995,Itchy Burrito,986 +2996,Shaky Fish,987 +2997,Comfortable Honey,987 +2998,Sour Chicken,987 +2999,Chilly Beets,987 +3000,Successful Mushrooms,988 +3001,Calm Beef,988 +3002,Giant Honey,989 +3003,Low Pretzel,989 +3004,Sticky Fruit,989 +3005,Cold Apples,989 +3006,Zany Greens,990 +3007,Spotty Beef,990 +3008,Bright Burrito,990 +3009,Silent Carrots,990 +3010,Low Chicken,990 +3011,Handsome Greens,991 +3012,Fierce Greens,991 +3013,Confused Greens,991 +3014,Shaky Beef,991 +3015,Comfortable Apples,992 +3016,Creepy Burrito,992 +3017,Great Fish,992 +3018,Angry Beets,992 +3019,Juicy Burrito,993 +3020,Weak Greens,993 +3021,Big Carrots,993 +3022,Wide-eyed Carrots,993 +3023,Icy Fish,994 +3024,Average Mushrooms,994 +3025,Wide-eyed Fish,994 +3026,Fresh Burrito,994 +3027,– Mushrooms,994 +3028,Yummy Fruit,995 +3029,Cheesy Carrots,995 +3030,Resonant Fruit,996 +3031,Melted Fish,996 +3032,Afraid Pretzel,996 +3033,Nice Fruit,997 +3034,Rapid Mushrooms,997 +3035,Low Honey,997 +3036,Purring Beets,997 +3037,Ugliest Mushrooms,997 +3038,Cooperative Greens,998 +3039,Average Apples,998 +3040,Slow Carrots,998 +3041,Cooperative Carrots,998 +3042,Gorgeous Honey,998 +3043,Shrill Beets,999 +3044,– Bread,999 +3045,Better Carrots,999 +3046,Testy Fruit,999 +3047,Ill Bread,1000 +3048,Kind Beef,1000 +3049,Colossal Bread,1001 +3050,Shrill Pretzel,1001 +3051,Large Beets,1001 +3052,Tight Mushrooms,1002 +3053,Fair Fish,1002 +3054,Victorious Fish,1002 +3055,Spicy Fish,1003 +3056,Delicious Fish,1004 +3057,Puny Greens,1004 +3058,Grubby Beef,1004 +3059,Dirty Chicken,1005 +3060,Scrawny Carrots,1005 +3061,Scrumptious Greens,1006 +3062,Quiet Mushrooms,1006 +3063,Spotty Carrots,1006 +3064,Nutty Bread,1007 +3065,Curly Beef,1007 +3066,Cuddly Greens,1008 +3067,Cruel Burrito,1008 +3068,– Beef,1009 +3069,– Burrito,1009 +3070,Late Beef,1009 +3071,Huge Carrots,1010 +3072,Fluffy Burrito,1010 +3073,Spicy Beets,1010 +3074,Wonderful Honey,1010 +3075,Wonderful Beef,1010 +3076,Wooden Mushrooms,1011 +3077,Fluffy Pretzel,1011 +3078,Prickly Chicken,1011 +3079,Stupendous Burrito,1011 +3080,Brave Beets,1012 +3081,Elated Honey,1012 +3082,Thirsty Mushrooms,1012 +3083,Steady Bread,1012 +3084,Exuberant Mushrooms,1012 +3085,Cruel Pretzel,1013 +3086,Depressed Beef,1013 +3087,R Beets,1013 +3088,Agreeable Burrito,1013 +3089,Disgusted Beef,1014 +3090,Gigantic Honey,1014 +3091,Damp Mushrooms,1015 +3092,Plastic Bread,1015 +3093,Hilarious Beets,1015 +3094,Salty Beef,1015 +3095,Fluffy Pretzel,1015 +3096,Stingy Apples,1016 +3097,Thoughtless Honey,1017 +3098,Hard Burrito,1018 +3099,Tired Chicken,1019 +3100,Boom-town Chicken,1019 +3101,Moist Mushrooms,1019 +3102,Lively Pretzel,1019 +3103,Large Mushrooms,1019 +3104,– Bread,1020 +3105,Savory Chicken,1020 +3106,Worried Greens,1020 +3107,Stale Greens,1020 +3108,Perfect Beef,1021 +3109,Smooth Fruit,1022 +3110,Deep Beets,1022 +3111,Slow Mushrooms,1023 +3112,Black Fish,1023 +3113,Young Chicken,1023 +3114,Dangerous Bread,1024 +3115,Tan Beets,1024 +3116,Energetic Chicken,1024 +3117,Bright Fruit,1024 +3118,Prickly Greens,1025 +3119,Ripe Honey,1025 +3120,Purple Fish,1025 +3121,Skinny Pretzel,1025 +3122,Anxious Mushrooms,1025 +3123,Dry Mushrooms,1026 +3124,Broken Fish,1026 +3125,– Beef,1026 +3126,Old Carrots,1026 +3127,Moaning Greens,1027 +3128,Cooperative Honey,1027 +3129,Jittery Beets,1027 +3130,Icy Beef,1028 +3131,Wet Carrots,1028 +3132,Shrill Bread,1028 +3133,Ugly Chicken,1029 +3134,Rainy Pretzel,1029 +3135,Tight Honey,1029 +3136,Dizzy Mushrooms,1030 +3137,Obedient Honey,1030 +3138,Fluffy Apples,1030 +3139,Ugly Bread,1030 +3140,Hard Bread,1031 +3141,Deep Beets,1031 +3142,Evil Greens,1032 +3143,Annoyed Honey,1032 +3144,Calm Chicken,1033 +3145,Helpless Carrots,1033 +3146,Weary Apples,1034 +3147,Voiceless Burrito,1035 +3148,Loose Fish,1036 +3149,R Pretzel,1036 +3150,New Pretzel,1037 +3151,Broken Carrots,1037 +3152,Wet Apples,1037 +3153,Crazy Fruit,1038 +3154,Average Beef,1038 +3155,Nervous Beets,1038 +3156,Tasty Pretzel,1038 +3157,Empty Beef,1039 +3158,Average Greens,1039 +3159,Hissing Fish,1040 +3160,Panicky Honey,1040 +3161,Charming Mushrooms,1041 +3162,Thoughtless Honey,1041 +3163,Clumsy Apples,1041 +3164,Righteous Fish,1042 +3165,Dizzy Beef,1042 +3166,Outrageous Pretzel,1042 +3167,Plain Carrots,1043 +3168,Dry Chicken,1043 +3169,Hot Apples,1044 +3170,Fine Chicken,1045 +3171,Great Beets,1045 +3172,Melodic Mushrooms,1045 +3173,Defiant Beets,1046 +3174,Righteous Beef,1046 +3175,Comfortable Carrots,1046 +3176,Agreeable Chicken,1046 +3177,Tough Apples,1047 +3178,Cool Fruit,1047 +3179,Embarrassed Fruit,1047 +3180,Dull Carrots,1047 +3181,Plain Carrots,1047 +3182,M Greens,1048 +3183,Straight Fruit,1049 +3184,Light Carrots,1049 +3185,Fierce Honey,1049 +3186,Nutty Bread,1050 +3187,Tasty Apples,1050 +3188,Obedient Burrito,1050 +3189,Grumpy Apples,1050 +3190,Fuzzy Beef,1051 +3191,Savory Fish,1052 +3192,Outrageous Beets,1052 +3193,Rainy Pretzel,1052 +3194,Worried Bread,1052 +3195,Quickest Bread,1053 +3196,Testy Bread,1053 +3197,Bumpy Beets,1053 +3198,Lonely Carrots,1053 +3199,Hushed Beets,1053 +3200,Cruel Carrots,1054 +3201,Sharp Pretzel,1054 +3202,Chilly Beets,1054 +3203,Big Beef,1055 +3204,Thirsty Pretzel,1055 +3205,Helpless Pretzel,1055 +3206,Slimy Fruit,1055 +3207,Smiling Bread,1056 +3208,Exuberant Fish,1056 +3209,Nutty Apples,1056 +3210,Black Honey,1056 +3211,Plain Bread,1056 +3212,Slippery Beets,1057 +3213,Creepy Fish,1057 +3214,Thoughtful Burrito,1058 +3215,Melted Carrots,1058 +3216,Mighty Fruit,1058 +3217,Short Beef,1058 +3218,Straight Beef,1058 +3219,Tiny Beef,1059 +3220,Gorgeous Greens,1059 +3221,Weak Greens,1059 +3222,Faint Burrito,1059 +3223,Delicious Chicken,1060 +3224,Moist Carrots,1060 +3225,Melted Burrito,1060 +3226,Fine Apples,1061 +3227,Square Apples,1061 +3228,Voiceless Pretzel,1061 +3229,Short Honey,1061 +3230,Tired Burrito,1062 +3231,Lazy Bread,1062 +3232,Awful Fish,1063 +3233,Long Carrots,1064 +3234,Charming Honey,1064 +3235,Hissing Burrito,1064 +3236,Grand Burrito,1065 +3237,Wonderful Fish,1065 +3238,Nasty Mushrooms,1066 +3239,Hollow Honey,1066 +3240,Ripe Burrito,1067 +3241,Melted Bread,1067 +3242,Colossal Fish,1067 +3243,Tart Chicken,1067 +3244,Fluffy Honey,1068 +3245,Petite Greens,1068 +3246,Hungry Bread,1069 +3247,Righteous Chicken,1069 +3248,Small Burrito,1069 +3249,Kickin' Greens,1070 +3250,Skinny Pretzel,1070 +3251,Helpless Mushrooms,1070 +3252,Panicky Chicken,1070 +3253,Late Mushrooms,1070 +3254,Defiant Mushrooms,1071 +3255,Stale Honey,1072 +3256,Envious Pretzel,1072 +3257,Panicky Mushrooms,1073 +3258,Savory Carrots,1073 +3259,Hot Beef,1074 +3260,Odd Honey,1074 +3261,Selfish Carrots,1074 +3262,Spicy Carrots,1074 +3263,Tender Pretzel,1075 +3264,Rough Bread,1075 +3265,Evil Beef,1075 +3266,Slow Beets,1076 +3267,Perfect Fruit,1076 +3268,Bright Bread,1077 +3269,Rare Fruit,1078 +3270,Massive Burrito,1079 +3271,Tall Burrito,1079 +3272,Encouraging Bread,1079 +3273,Fantastic Beef,1079 +3274,Perfect Bread,1079 +3275,Sweet Beets,1080 +3276,Amused Beets,1080 +3277,Annoyed Mushrooms,1080 +3278,Silly Chicken,1080 +3279,Pleasant Bread,1081 +3280,Brief Burrito,1081 +3281,Hilarious Pretzel,1081 +3282,Smiling Mushrooms,1081 +3283,Energetic Burrito,1082 +3284,Helpless Carrots,1082 +3285,Purring Carrots,1082 +3286,Vivacious Apples,1082 +3287,Fat Apples,1083 +3288,Fluffy Carrots,1083 +3289,Tasteless Mushrooms,1083 +3290,Quick Beef,1083 +3291,Embarrassed Pretzel,1084 +3292,Loud Fish,1084 +3293,Short Beets,1085 +3294,Defiant Beets,1085 +3295,Blue Chicken,1085 +3296,Hissing Fruit,1085 +3297,Hard Fish,1085 +3298,Gentle Apples,1086 +3299,Late Pretzel,1086 +3300,Bland Fruit,1086 +3301,Fantastic Carrots,1086 +3302,Upset Pretzel,1087 +3303,Ugliest Fruit,1088 +3304,Hurt Mushrooms,1088 +3305,Icy Beef,1088 +3306,Deafening Greens,1089 +3307,Steady Bread,1089 +3308,Cheerful Apples,1090 +3309,Mighty Burrito,1090 +3310,Selfish Fruit,1090 +3311,Sweet Honey,1091 +3312,Annoyed Bread,1091 +3313,Odd Apples,1091 +3314,Tame Chicken,1092 +3315,Hard Pretzel,1092 +3316,Magnificent Bread,1092 +3317,Thirsty Greens,1093 +3318,Hungry Beef,1093 +3319,Stupendous Beets,1094 +3320,Shrill Burrito,1095 +3321,Sore Fruit,1095 +3322,Magnificent Bread,1095 +3323,Large Burrito,1095 +3324,Sweet Carrots,1096 +3325,Defiant Fruit,1096 +3326,Hot Chicken,1096 +3327,Upset Fish,1097 +3328,Fantastic Apples,1097 +3329,Narrow Burrito,1097 +3330,Filthy Greens,1097 +3331,Panicky Greens,1098 +3332,Wide Mushrooms,1098 +3333,Mute Greens,1099 +3334,Uptight Greens,1099 +3335,Grand Apples,1099 +3336,Tan Beef,1099 +3337,Righteous Pretzel,1100 +3338,Fierce Pretzel,1100 +3339,Wasteful Pretzel,1100 +3340,Helpless Fruit,1100 +3341,Thoughtful Greens,1101 +3342,Solid Honey,1101 +3343,Friendly Apples,1102 +3344,Light Chicken,1102 +3345,Vivacious Burrito,1102 +3346,Bland Burrito,1102 +3347,Skinny Fruit,1102 +3348,Plain Apples,1103 +3349,Charming Bread,1103 +3350,Curly Apples,1104 +3351,Nice Beef,1104 +3352,Light Pretzel,1104 +3353,Great Carrots,1105 +3354,Better Burrito,1105 +3355,Delicious Fruit,1105 +3356,Boiling Burrito,1106 +3357,Grumpy Carrots,1106 +3358,Plastic Greens,1106 +3359,Anxious Beets,1107 +3360,Tense Burrito,1107 +3361,Combative Carrots,1108 +3362,Purring Bread,1108 +3363,Tense Bread,1108 +3364,Grieving Beef,1109 +3365,Great Chicken,1109 +3366,Rotten Mushrooms,1110 +3367,Resonant Beef,1110 +3368,Wasteful Fish,1110 +3369,Stale Mushrooms,1111 +3370,Modern Beets,1111 +3371,Watery Chicken,1111 +3372,Sore Pretzel,1111 +3373,Bitter Beets,1111 +3374,Wonderful Carrots,1112 +3375,Pickled Bread,1112 +3376,Faithful Fish,1112 +3377,Mute Apples,1113 +3378,Hissing Apples,1113 +3379,New Chicken,1114 +3380,R Fish,1114 +3381,Broken Bread,1114 +3382,Dull Apples,1114 +3383,Screeching Pretzel,1114 +3384,Solid Beets,1115 +3385,Energetic Beets,1115 +3386,Hilarious Fruit,1115 +3387,Plain Apples,1115 +3388,Screeching Carrots,1115 +3389,Massive Mushrooms,1116 +3390,Testy Apples,1116 +3391,Old Greens,1116 +3392,Jittery Greens,1116 +3393,Shivering Burrito,1116 +3394,Quaint Beets,1117 +3395,Cold Honey,1117 +3396,Jealous Bread,1118 +3397,Hungry Honey,1118 +3398,Courageous Honey,1118 +3399,Hollow Fruit,1119 +3400,Courageous Chicken,1119 +3401,Wasteful Mushrooms,1119 +3402,Deafening Fish,1119 +3403,Wicked Bread,1119 +3404,Roasted Carrots,1120 +3405,Confused Greens,1120 +3406,Ordinary Greens,1120 +3407,Pickled Burrito,1121 +3408,Cuddly Beets,1121 +3409,Tart Beef,1121 +3410,Mute Carrots,1121 +3411,Quaint Burrito,1122 +3412,Melted Honey,1122 +3413,Cold Mushrooms,1123 +3414,Stale Beets,1123 +3415,Fuzzy Beets,1123 +3416,Excited Chicken,1123 +3417,Mute Mushrooms,1123 +3418,Faithful Carrots,1124 +3419,Wet Bread,1124 +3420,Salty Mushrooms,1124 +3421,Beautiful Chicken,1125 +3422,Agreeable Fish,1125 +3423,Fuzzy Burrito,1125 +3424,Lucky Beef,1126 +3425,Husky Burrito,1126 +3426,Fantastic Burrito,1127 +3427,Many Fish,1127 +3428,Zany Burrito,1127 +3429,Round Chicken,1127 +3430,Numerous Carrots,1128 +3431,Excited Burrito,1128 +3432,Rainy Greens,1128 +3433,Plastic Carrots,1128 +3434,Tricky Bread,1129 +3435,Raspy Burrito,1129 +3436,Sharp Fish,1129 +3437,Edible Chicken,1129 +3438,Modern Beef,1130 +3439,Rotten Apples,1131 +3440,Brief Mushrooms,1132 +3441,Fierce Fruit,1132 +3442,Ill Apples,1133 +3443,Spicy Chicken,1133 +3444,Harsh Mushrooms,1133 +3445,Lucky Greens,1133 +3446,Beautiful Bread,1134 +3447,Hot Fruit,1134 +3448,Juicy Mushrooms,1134 +3449,Tight Greens,1134 +3450,Yellow Apples,1134 +3451,Floppy Fruit,1135 +3452,Uptight Beets,1135 +3453,Scattered Pretzel,1136 +3454,Hushed Mushrooms,1137 +3455,Little Greens,1137 +3456,Funny Fruit,1138 +3457,Wide Honey,1139 +3458,Dangerous Greens,1140 +3459,Testy Beets,1140 +3460,Tight Apples,1140 +3461,Shrill Fish,1140 +3462,Odd Beef,1140 +3463,Young Carrots,1141 +3464,Grubby Beef,1141 +3465,Brief Burrito,1141 +3466,Cold Apples,1141 +3467,Hissing Fish,1141 +3468,Savory Chicken,1142 +3469,Robust Carrots,1142 +3470,Charming Carrots,1142 +3471,Afraid Apples,1143 +3472,Sore Beef,1143 +3473,Resonant Beets,1144 +3474,Greasy Carrots,1145 +3475,Awful Fruit,1145 +3476,Tender Bread,1145 +3477,Lovely Carrots,1145 +3478,Mammoth Beef,1146 +3479,Foolish Chicken,1146 +3480,Eager Greens,1147 +3481,Flat Honey,1147 +3482,Early Beef,1147 +3483,Envious Honey,1147 +3484,Frantic Bread,1147 +3485,Flaky Apples,1148 +3486,Mysterious Beef,1149 +3487,Sharp Carrots,1149 +3488,Prickly Greens,1149 +3489,Breezy Pretzel,1149 +3490,Shivering Beef,1150 +3491,Repulsive Greens,1151 +3492,Terrible Beets,1151 +3493,Naughty Greens,1152 +3494,Evil Pretzel,1152 +3495,Gentle Apples,1153 +3496,Striped Greens,1153 +3497,Terrible Greens,1153 +3498,Wonderful Fruit,1153 +3499,Nasty Fruit,1154 +3500,Tan Chicken,1154 +3501,Slow Apples,1154 +3502,Hard Bread,1154 +3503,Pretty Beets,1155 +3504,Sweet Greens,1155 +3505,Bumpy Beets,1156 +3506,Colossal Chicken,1156 +3507,Tight Bread,1156 +3508,Bumpy Bread,1157 +3509,Disturbed Greens,1157 +3510,Repulsive Chicken,1158 +3511,Raspy Carrots,1158 +3512,Fuzzy Apples,1158 +3513,Spotty Mushrooms,1158 +3514,Frantic Apples,1159 +3515,Damp Fruit,1159 +3516,Brave Chicken,1159 +3517,Faint Fish,1159 +3518,Afraid Mushrooms,1160 +3519,Anxious Carrots,1160 +3520,Cruel Burrito,1161 +3521,Swift Chicken,1161 +3522,Zany Apples,1161 +3523,High Fish,1161 +3524,Naughty Beets,1161 +3525,Ugly Bread,1162 +3526,Mysterious Beef,1162 +3527,Strange Mushrooms,1162 +3528,Melted Carrots,1163 +3529,Skinny Fruit,1163 +3530,Solid Bread,1163 +3531,Smiling Fish,1163 +3532,Evil Carrots,1164 +3533,Watery Beets,1164 +3534,Obnoxious Fish,1165 +3535,Wonderful Pretzel,1165 +3536,Relieved Mushrooms,1166 +3537,Wide Apples,1166 +3538,Fair Honey,1166 +3539,Good Apples,1166 +3540,Hushed Beef,1167 +3541,Defiant Fruit,1167 +3542,Dangerous Beef,1167 +3543,Sour Fruit,1167 +3544,Successful Bread,1167 +3545,Exuberant Burrito,1168 +3546,Odd Burrito,1168 +3547,Fine Fruit,1168 +3548,Raspy Fruit,1169 +3549,Floppy Beef,1169 +3550,Modern Beets,1169 +3551,Edible Bread,1169 +3552,Happy Fish,1169 +3553,Ugly Burrito,1170 +3554,– Carrots,1170 +3555,Energetic Carrots,1170 +3556,Fierce Beef,1170 +3557,Scrawny Carrots,1170 +3558,Cheerful Pretzel,1171 +3559,Perfect Fish,1171 +3560,Huge Bread,1171 +3561,Ashamed Beets,1171 +3562,Charming Greens,1172 +3563,Black Beets,1172 +3564,Moist Fruit,1173 +3565,Loose Beets,1173 +3566,Confused Mushrooms,1173 +3567,Blue Honey,1174 +3568,Low Pretzel,1174 +3569,– Greens,1174 +3570,Big Mushrooms,1174 +3571,Nutty Chicken,1174 +3572,Swift Beef,1175 +3573,Resonant Fish,1175 +3574,Straight Fruit,1175 +3575,Tiny Beets,1175 +3576,Modern Pretzel,1175 +3577,Petite Fish,1176 +3578,Fresh Burrito,1177 +3579,Chilly Apples,1178 +3580,Rainy Chicken,1178 +3581,Immense Apples,1178 +3582,Healthy Beets,1178 +3583,Purring Greens,1179 +3584,Vast Fruit,1179 +3585,Repulsive Bread,1179 +3586,Hurt Fish,1179 +3587,Rotten Chicken,1180 +3588,Fuzzy Bread,1180 +3589,Splendid Fruit,1180 +3590,Slow Apples,1180 +3591,Edible Apples,1180 +3592,Colossal Burrito,1181 +3593,Empty Honey,1181 +3594,Creepy Chicken,1181 +3595,Tight Beef,1181 +3596,Jolly Greens,1181 +3597,Cooing Burrito,1182 +3598,Narrow Beef,1182 +3599,Courageous Pretzel,1183 +3600,– Mushrooms,1183 +3601,Straight Fruit,1183 +3602,Sad Apples,1184 +3603,Good Beef,1185 +3604,Energetic Apples,1185 +3605,Stale Fish,1186 +3606,Scary Fish,1186 +3607,Brave Apples,1186 +3608,Pretty Fruit,1186 +3609,Slippery Beef,1186 +3610,Loose Burrito,1187 +3611,Tender Burrito,1188 +3612,Kickin' Beets,1189 +3613,Strong Chicken,1189 +3614,Magnificent Beets,1189 +3615,Quickest Pretzel,1189 +3616,Sore Fish,1190 +3617,Scary Apples,1190 +3618,Salty Beets,1190 +3619,Early Fruit,1190 +3620,Smooth Chicken,1191 +3621,R Pretzel,1191 +3622,Long Mushrooms,1191 +3623,Harsh Fruit,1192 +3624,Stingy Mushrooms,1192 +3625,Righteous Carrots,1193 +3626,Grumpy Beef,1193 +3627,Loose Beets,1193 +3628,Delicious Apples,1194 +3629,Wide-eyed Pretzel,1195 +3630,Terrible Beef,1196 +3631,Fantastic Beef,1196 +3632,Heavy Bread,1197 +3633,Giant Burrito,1197 +3634,Dull Honey,1198 +3635,Heavy Burrito,1198 +3636,Old Pretzel,1198 +3637,Hot Pretzel,1198 +3638,Small Bread,1198 +3639,Envious Beef,1199 +3640,Filthy Fruit,1199 +3641,Average Pretzel,1199 +3642,Courageous Pretzel,1200 +3643,Steep Beets,1200 +3644,Delightful Fish,1201 +3645,Average Beef,1201 +3646,Husky Beets,1201 +3647,Gorgeous Greens,1201 +3648,Cheesy Fruit,1202 +3649,Wide Carrots,1202 +3650,Excited Fish,1202 +3651,Naughty Mushrooms,1202 +3652,Evil Beets,1202 +3653,Precious Carrots,1203 +3654,High Mushrooms,1203 +3655,Tough Chicken,1203 +3656,Magnificent Fish,1203 +3657,Old Fruit,1204 +3658,Encouraging Apples,1204 +3659,Early Beets,1204 +3660,Loud Beef,1204 +3661,Robust Bread,1204 +3662,Whispering Chicken,1205 +3663,Annoyed Apples,1205 +3664,Whispering Pretzel,1205 +3665,Damp Mushrooms,1205 +3666,Wooden Beef,1206 +3667,Shallow Pretzel,1206 +3668,Square Apples,1206 +3669,Yummy Mushrooms,1207 +3670,Quaint Apples,1207 +3671,Excited Burrito,1207 +3672,Wide-eyed Beets,1207 +3673,Fuzzy Fruit,1207 +3674,Salty Fruit,1208 +3675,Shallow Honey,1209 +3676,Righteous Burrito,1209 +3677,Rapid Burrito,1209 +3678,Angry Beets,1209 +3679,Comfortable Greens,1210 +3680,Straight Greens,1210 +3681,Nice Greens,1211 +3682,Ugliest Apples,1211 +3683,Slippery Chicken,1211 +3684,Curly Greens,1211 +3685,Excited Honey,1212 +3686,Purple Bread,1212 +3687,Jumpin' Burrito,1212 +3688,Wide Honey,1213 +3689,Tiny Burrito,1214 +3690,Moaning Greens,1214 +3691,Beautiful Greens,1215 +3692,Swift Pretzel,1215 +3693,Dry Chicken,1215 +3694,Jittery Burrito,1216 +3695,Boiling Apples,1216 +3696,Sour Chicken,1216 +3697,Cuddly Chicken,1216 +3698,Squealing Carrots,1216 +3699,Friendly Fish,1217 +3700,Spicy Carrots,1217 +3701,Wicked Apples,1217 +3702,Hilarious Fish,1218 +3703,Enthusiastic Bread,1218 +3704,Gentle Mushrooms,1218 +3705,Elated Beets,1218 +3706,New Greens,1219 +3707,Flat Fish,1219 +3708,Black Fruit,1220 +3709,Smiling Pretzel,1220 +3710,Eager Apples,1220 +3711,Rainy Apples,1221 +3712,Perfect Apples,1221 +3713,Repulsive Fruit,1221 +3714,Old Burrito,1221 +3715,Nutty Fish,1222 +3716,Boring Beef,1222 +3717,Tender Beef,1222 +3718,Magnificent Beef,1222 +3719,Sharp Beets,1223 +3720,Old Carrots,1223 +3721,Flaky Apples,1223 +3722,Tight Beets,1223 +3723,Thirsty Carrots,1223 +3724,Dangerous Chicken,1224 +3725,Blue Chicken,1224 +3726,Perfect Bread,1225 +3727,Silent Mushrooms,1225 +3728,Grubby Bread,1226 +3729,Nosy Greens,1227 +3730,Excited Mushrooms,1227 +3731,Lovely Fish,1227 +3732,Uneven Carrots,1227 +3733,Bright Carrots,1228 +3734,Tricky Carrots,1228 +3735,Hot Beef,1229 +3736,Modern Chicken,1230 +3737,Encouraging Apples,1230 +3738,Many Fruit,1231 +3739,Round Greens,1231 +3740,Squealing Pretzel,1232 +3741,Ugly Pretzel,1233 +3742,Purring Chicken,1233 +3743,M Greens,1234 +3744,Nervous Carrots,1234 +3745,Successful Chicken,1235 +3746,Angry Chicken,1235 +3747,Foolish Bread,1235 +3748,Cuddly Fish,1235 +3749,Excited Honey,1235 +3750,Few Honey,1236 +3751,Kickin' Honey,1236 +3752,Chilly Bread,1236 +3753,Frantic Bread,1236 +3754,Hollow Beef,1237 +3755,Cheesy Apples,1237 +3756,Excited Bread,1237 +3757,Gorgeous Burrito,1237 +3758,Quaint Burrito,1238 +3759,Homeless Fruit,1238 +3760,Giant Beets,1239 +3761,Colossal Greens,1239 +3762,Lucky Fruit,1239 +3763,Dull Fish,1240 +3764,Beautiful Greens,1240 +3765,Rotten Apples,1240 +3766,Sore Honey,1240 +3767,Relieved Chicken,1241 +3768,Modern Bread,1241 +3769,Hilarious Chicken,1241 +3770,Zany Burrito,1241 +3771,Panicky Pretzel,1242 +3772,Melted Fruit,1242 +3773,Itchy Beets,1242 +3774,Fluffy Mushrooms,1242 +3775,Stale Burrito,1242 +3776,Stupendous Beef,1243 +3777,Delicious Beets,1243 +3778,Righteous Fish,1244 +3779,Mammoth Apples,1244 +3780,Strong Bread,1244 +3781,Magnificent Pretzel,1244 +3782,Shrill Apples,1244 +3783,Ashamed Bread,1245 +3784,Floppy Beets,1245 +3785,Breezy Fish,1245 +3786,Solid Honey,1245 +3787,Thoughtful Apples,1246 +3788,Bad Mushrooms,1247 +3789,Anxious Fruit,1247 +3790,Encouraging Honey,1247 +3791,Immense Carrots,1247 +3792,Hungry Fish,1248 +3793,Light Beets,1248 +3794,– Honey,1248 +3795,Ripe Fish,1248 +3796,Eager Fish,1248 +3797,Slimy Fish,1249 +3798,S Fruit,1249 +3799,Energetic Mushrooms,1249 +3800,Soft Mushrooms,1250 +3801,Black Mushrooms,1250 +3802,Stingy Mushrooms,1250 +3803,Helpless Burrito,1251 +3804,Splendid Beef,1252 +3805,Stale Chicken,1252 +3806,Lively Beef,1253 +3807,Loose Honey,1253 +3808,Ordinary Greens,1254 +3809,Tasty Chicken,1254 +3810,Shaky Fruit,1254 +3811,Afraid Mushrooms,1254 +3812,Nervous Mushrooms,1255 +3813,Shallow Carrots,1255 +3814,Dangerous Bread,1255 +3815,Miniature Apples,1255 +3816,Odd Fruit,1256 +3817,Smiling Pretzel,1256 +3818,Relieved Carrots,1256 +3819,Sad Beef,1257 +3820,High Burrito,1258 +3821,Lazy Beets,1258 +3822,Thoughtful Fruit,1258 +3823,Hilarious Mushrooms,1259 +3824,Shrill Pretzel,1260 +3825,Cuddly Mushrooms,1260 +3826,Troubled Apples,1260 +3827,Long Mushrooms,1260 +3828,Envious Burrito,1260 +3829,Moist Fish,1261 +3830,Charming Fish,1261 +3831,Square Chicken,1261 +3832,Perfect Mushrooms,1261 +3833,Hilarious Burrito,1261 +3834,Mysterious Bread,1262 +3835,Vivacious Bread,1262 +3836,Average Greens,1263 +3837,Tame Greens,1264 +3838,Vast Fish,1264 +3839,Petite Burrito,1264 +3840,Faithful Chicken,1264 +3841,Rapid Mushrooms,1265 +3842,Eager Beets,1266 +3843,Blue Fish,1267 +3844,Loose Pretzel,1267 +3845,Salty Bread,1268 +3846,Tough Honey,1268 +3847,Heavy Greens,1269 +3848,Tired Fruit,1269 +3849,Big Beets,1269 +3850,Depressed Greens,1269 +3851,Round Beets,1270 +3852,Righteous Fruit,1270 +3853,Sour Burrito,1270 +3854,Comfortable Greens,1271 +3855,Evil Fish,1271 +3856,Witty Beef,1271 +3857,Grieving Burrito,1271 +3858,Nutty Pretzel,1272 +3859,Voiceless Chicken,1272 +3860,Square Honey,1273 +3861,Combative Pretzel,1273 +3862,Pretty Beef,1273 +3863,Good Greens,1273 +3864,Slow Burrito,1273 +3865,Disturbed Mushrooms,1274 +3866,Successful Honey,1274 +3867,Kind Beef,1274 +3868,Sad Beef,1274 +3869,Horrible Mushrooms,1275 +3870,Scary Bread,1275 +3871,Wicked Mushrooms,1275 +3872,Great Pretzel,1275 +3873,Few Honey,1276 +3874,Nutty Beef,1276 +3875,Faithful Chicken,1277 +3876,Pleasant Apples,1277 +3877,Fluffy Mushrooms,1277 +3878,Cool Chicken,1277 +3879,Prickly Bread,1278 +3880,Cool Fish,1278 +3881,Itchy Greens,1278 +3882,Light Apples,1278 +3883,Elated Burrito,1278 +3884,Jealous Greens,1279 +3885,Nosy Fish,1279 +3886,Bitter Honey,1279 +3887,Long Carrots,1279 +3888,Light Carrots,1279 +3889,Uneven Carrots,1280 +3890,Big Beets,1281 +3891,Sharp Beets,1281 +3892,Straight Beets,1281 +3893,Icy Honey,1281 +3894,Boiling Honey,1281 +3895,Edible Burrito,1282 +3896,New Beef,1282 +3897,Rare Mushrooms,1283 +3898,Small Mushrooms,1283 +3899,Incredible Pretzel,1283 +3900,Filthy Mushrooms,1284 +3901,Great Pretzel,1284 +3902,Wooden Mushrooms,1284 +3903,Dizzy Chicken,1285 +3904,Perfect Pretzel,1285 +3905,Heavy Carrots,1286 +3906,Testy Carrots,1287 +3907,Yummy Bread,1287 +3908,Hushed Beets,1288 +3909,Upset Apples,1288 +3910,Weary Beets,1288 +3911,Icy Mushrooms,1289 +3912,Quiet Beets,1289 +3913,Delightful Apples,1289 +3914,Terrible Bread,1290 +3915,Precious Pretzel,1290 +3916,Jealous Pretzel,1291 +3917,Pretty Honey,1292 +3918,Chilly Beef,1292 +3919,Thundering Pretzel,1292 +3920,Sticky Fruit,1292 +3921,Jealous Carrots,1292 +3922,Rapid Apples,1293 +3923,Great Apples,1293 +3924,Incredible Fish,1293 +3925,Boring Fruit,1293 +3926,Sour Bread,1293 +3927,Quiet Burrito,1294 +3928,Boom-town Apples,1294 +3929,Relieved Mushrooms,1294 +3930,Low Fruit,1294 +3931,Agreeable Chicken,1294 +3932,Courageous Carrots,1295 +3933,Thoughtless Carrots,1295 +3934,Grieving Apples,1295 +3935,Fluffy Carrots,1295 +3936,Dangerous Greens,1295 +3937,Vivacious Mushrooms,1296 +3938,Faint Chicken,1296 +3939,Cool Bread,1296 +3940,Healthy Carrots,1296 +3941,Brief Mushrooms,1296 +3942,Loud Honey,1297 +3943,Dangerous Bread,1297 +3944,Ugliest Beef,1298 +3945,Vivacious Honey,1298 +3946,Panicky Bread,1298 +3947,Salty Apples,1298 +3948,Early Beets,1299 +3949,Mysterious Beets,1299 +3950,Pickled Fruit,1299 +3951,Raspy Beef,1299 +3952,Calm Greens,1300 +3953,Strong Chicken,1300 +3954,Courageous Mushrooms,1300 +3955,Successful Burrito,1301 +3956,Narrow Pretzel,1302 +3957,Little Beef,1302 +3958,Fat Beets,1302 +3959,Greasy Bread,1303 +3960,Mysterious Carrots,1303 +3961,Incredible Honey,1303 +3962,Shaggy Mushrooms,1303 +3963,Cool Fruit,1304 +3964,Depressed Fish,1305 +3965,Grand Honey,1305 +3966,Encouraging Burrito,1305 +3967,Steady Bread,1306 +3968,Faithful Beef,1306 +3969,Stale Bread,1306 +3970,Vivacious Bread,1306 +3971,Loose Apples,1307 +3972,Early Pretzel,1307 +3973,Wide Apples,1307 +3974,Cuddly Mushrooms,1307 +3975,Itchy Beets,1308 +3976,Black Bread,1308 +3977,Rapid Chicken,1308 +3978,Low Pretzel,1308 +3979,Tasty Pretzel,1309 +3980,Grubby Beef,1310 +3981,Bright Honey,1310 +3982,Grumpy Bread,1310 +3983,Nervous Honey,1310 +3984,Fair Apples,1310 +3985,Tasty Carrots,1311 +3986,Loose Honey,1311 +3987,Great Beef,1311 +3988,Nutty Fruit,1312 +3989,Stupendous Apples,1312 +3990,Witty Fruit,1312 +3991,Pleasant Burrito,1312 +3992,Better Fruit,1313 +3993,Big Carrots,1313 +3994,Enthusiastic Honey,1313 +3995,Robust Mushrooms,1313 +3996,Fast Beef,1313 +3997,– Beets,1314 +3998,Weak Carrots,1314 +3999,Loud Beets,1314 +4000,Curved Beef,1314 +4001,Solid Mushrooms,1315 +4002,Amused Bread,1315 +4003,Screeching Apples,1315 +4004,Weak Apples,1315 +4005,Bright Bread,1316 +4006,Numerous Fish,1316 +4007,Empty Honey,1316 +4008,Salty Apples,1316 +4009,Awful Burrito,1317 +4010,Fair Bread,1317 +4011,Helpless Bread,1317 +4012,Defiant Beets,1317 +4013,Fat Fish,1318 +4014,Funny Bread,1318 +4015,Tense Burrito,1319 +4016,Filthy Chicken,1320 +4017,Curved Greens,1320 +4018,Curly Bread,1321 +4019,Brave Beets,1321 +4020,R Pretzel,1321 +4021,Fine Beets,1322 +4022,Greasy Beef,1323 +4023,Long Mushrooms,1323 +4024,Orange Beef,1324 +4025,Delightful Honey,1324 +4026,Roasted Apples,1324 +4027,Greasy Burrito,1324 +4028,Kickin' Mushrooms,1324 +4029,Bright Mushrooms,1325 +4030,Harsh Fish,1325 +4031,Ancient Burrito,1326 +4032,Dizzy Apples,1326 +4033,Bad Greens,1326 +4034,Fast Pretzel,1327 +4035,Screeching Chicken,1328 +4036,Greasy Fish,1328 +4037,Wide-eyed Greens,1328 +4038,Huge Carrots,1328 +4039,Testy Pretzel,1329 +4040,Vast Carrots,1329 +4041,Many Bread,1329 +4042,Cold Chicken,1329 +4043,Boom-town Beef,1330 +4044,Helpless Beets,1331 +4045,Frantic Mushrooms,1331 +4046,Sour Beets,1331 +4047,Gigantic Carrots,1331 +4048,Relieved Fruit,1332 +4049,Miniature Fish,1332 +4050,Fair Beef,1333 +4051,Witty Beef,1333 +4052,Testy Honey,1334 +4053,Better Pretzel,1334 +4054,Swift Bread,1334 +4055,Nice Fruit,1335 +4056,Whispering Beets,1336 +4057,Cuddly Bread,1336 +4058,Fine Fish,1336 +4059,Uptight Burrito,1336 +4060,Quaint Beets,1337 +4061,Jolly Mushrooms,1337 +4062,Handsome Apples,1337 +4063,Grubby Pretzel,1337 +4064,Blue Apples,1338 +4065,Tight Beef,1338 +4066,Ordinary Beef,1338 +4067,Lazy Burrito,1338 +4068,Many Beets,1338 +4069,R Beef,1339 +4070,Nom nom Greens,1340 +4071,Icy Apples,1340 +4072,Relieved Chicken,1340 +4073,Dangerous Apples,1340 +4074,Watery Fish,1340 +4075,Lovely Fruit,1341 +4076,Pleasant Beef,1341 +4077,Thundering Greens,1342 +4078,Roasted Beef,1343 +4079,Breezy Mushrooms,1343 +4080,Hurt Mushrooms,1344 +4081,Modern Greens,1344 +4082,Mysterious Carrots,1345 +4083,Victorious Carrots,1346 +4084,Orange Honey,1346 +4085,Nutty Beef,1347 +4086,Perfect Greens,1347 +4087,Mighty Pretzel,1347 +4088,Frantic Carrots,1347 +4089,Silky Carrots,1348 +4090,Lonely Apples,1349 +4091,Jealous Carrots,1349 +4092,Slimy Burrito,1350 +4093,Creepy Beets,1350 +4094,Scattered Chicken,1350 +4095,Victorious Pretzel,1350 +4096,Enthusiastic Beef,1351 +4097,Faint Honey,1351 +4098,Lucky Burrito,1351 +4099,Purring Apples,1351 +4100,Skinny Fish,1351 +4101,Funny Beets,1352 +4102,Salty Chicken,1352 +4103,Depressed Burrito,1353 +4104,Grumpy Beef,1353 +4105,Smooth Honey,1353 +4106,Shaggy Burrito,1354 +4107,Fine Fish,1354 +4108,Eager Greens,1355 +4109,Wasteful Beef,1355 +4110,Nutty Burrito,1356 +4111,Boom-town Mushrooms,1356 +4112,Skinny Bread,1356 +4113,Dangerous Greens,1356 +4114,Charming Burrito,1357 +4115,Pretty Honey,1357 +4116,Ugly Beets,1358 +4117,Skinny Pretzel,1358 +4118,Smooth Fish,1358 +4119,Whispering Apples,1358 +4120,Horrible Mushrooms,1359 +4121,Mute Beets,1359 +4122,Rapid Pretzel,1359 +4123,Black Greens,1359 +4124,Mute Beets,1359 +4125,Spicy Carrots,1360 +4126,Ancient Fish,1360 +4127,Skinny Mushrooms,1360 +4128,Sore Apples,1360 +4129,Uptight Honey,1361 +4130,Cruel Burrito,1361 +4131,Grieving Beef,1361 +4132,Tricky Honey,1361 +4133,Screeching Bread,1361 +4134,Swift Apples,1362 +4135,Determined Mushrooms,1362 +4136,Disgusted Fish,1363 +4137,Healthy Mushrooms,1363 +4138,Yellow Burrito,1364 +4139,Cruel Greens,1365 +4140,Defiant Honey,1365 +4141,Perfect Greens,1365 +4142,Broad Fruit,1365 +4143,Smooth Fish,1365 +4144,Comfortable Pretzel,1366 +4145,Blue Honey,1366 +4146,Wide Honey,1366 +4147,Selfish Apples,1367 +4148,Brief Greens,1367 +4149,Tense Honey,1367 +4150,Colossal Burrito,1367 +4151,Tight Carrots,1368 +4152,Nosy Mushrooms,1368 +4153,Big Beets,1369 +4154,Fantastic Honey,1369 +4155,– Beef,1369 +4156,Fuzzy Mushrooms,1370 +4157,Fresh Greens,1370 +4158,Shivering Fruit,1370 +4159,Cool Honey,1371 +4160,Prickly Beef,1371 +4161,Energetic Chicken,1371 +4162,Healthy Fish,1371 +4163,Loud Fish,1371 +4164,Fluffy Burrito,1372 +4165,Thoughtful Pretzel,1372 +4166,Mammoth Beets,1372 +4167,Many Pretzel,1372 +4168,Helpless Fruit,1372 +4169,Ashamed Beets,1373 +4170,Arrogant Fish,1373 +4171,Nosy Apples,1373 +4172,Fuzzy Honey,1373 +4173,Scrawny Greens,1373 +4174,Tame Mushrooms,1374 +4175,Average Fish,1374 +4176,Spotty Pretzel,1374 +4177,Obedient Apples,1374 +4178,Successful Carrots,1375 +4179,Frail Greens,1375 +4180,Energetic Carrots,1376 +4181,Grumpy Chicken,1376 +4182,Sour Beets,1376 +4183,Rare Pretzel,1377 +4184,Kind Apples,1377 +4185,Relieved Chicken,1377 +4186,Envious Greens,1377 +4187,Green Apples,1377 +4188,Wicked Fish,1378 +4189,Mysterious Greens,1378 +4190,Slow Fruit,1378 +4191,Quickest Carrots,1379 +4192,Wasteful Burrito,1380 +4193,Spotty Pretzel,1380 +4194,Homeless Mushrooms,1380 +4195,Tasty Burrito,1381 +4196,Defiant Honey,1382 +4197,Magnificent Greens,1382 +4198,High Beef,1383 +4199,Depressed Fish,1383 +4200,Sour Fruit,1384 +4201,Splendid Beets,1384 +4202,Mammoth Beef,1384 +4203,Arrogant Greens,1384 +4204,Cooing Burrito,1384 +4205,Boring Beets,1385 +4206,Solid Apples,1386 +4207,Round Fish,1386 +4208,Purple Beets,1386 +4209,Annoyed Beets,1386 +4210,Flaky Fruit,1386 +4211,Jealous Honey,1387 +4212,Embarrassed Fish,1387 +4213,Friendly Beef,1387 +4214,Rare Bread,1387 +4215,Curly Beets,1388 +4216,Obedient Burrito,1388 +4217,Uptight Beets,1388 +4218,Tasteless Mushrooms,1389 +4219,Scary Pretzel,1389 +4220,Helpful Beef,1389 +4221,Rare Burrito,1390 +4222,Magnificent Fish,1391 +4223,Jittery Mushrooms,1391 +4224,Large Apples,1392 +4225,Round Greens,1392 +4226,Green Greens,1392 +4227,Panicky Pretzel,1392 +4228,Weak Beef,1393 +4229,Great Fish,1393 +4230,Immense Greens,1393 +4231,Hot Pretzel,1393 +4232,Spicy Fruit,1394 +4233,Boom-town Pretzel,1394 +4234,Sad Fruit,1394 +4235,Cheesy Greens,1394 +4236,Kind Mushrooms,1394 +4237,Lovely Honey,1395 +4238,Tame Chicken,1395 +4239,Wasteful Mushrooms,1395 +4240,Shrill Bread,1395 +4241,Fat Apples,1395 +4242,Tasty Mushrooms,1396 +4243,Hot Fruit,1396 +4244,Giant Greens,1396 +4245,Sweet Apples,1397 +4246,Weak Fish,1397 +4247,Hard Fish,1398 +4248,Ugliest Beef,1398 +4249,Tasty Apples,1398 +4250,Steady Greens,1399 +4251,Huge Chicken,1399 +4252,Beautiful Beef,1399 +4253,Resonant Fruit,1399 +4254,Sad Beets,1399 +4255,Tiny Chicken,1400 +4256,Nice Honey,1400 +4257,Damp Honey,1400 +4258,Plastic Fruit,1400 +4259,Melodic Honey,1401 +4260,Outrageous Burrito,1401 +4261,Itchy Greens,1401 +4262,Odd Apples,1401 +4263,Moist Carrots,1402 +4264,Robust Fruit,1402 +4265,Smiling Beets,1402 +4266,Huge Mushrooms,1402 +4267,Tender Burrito,1403 +4268,Whispering Honey,1403 +4269,Nosy Pretzel,1403 +4270,Frightened Greens,1403 +4271,Petite Beets,1404 +4272,Flaky Apples,1404 +4273,Obedient Honey,1404 +4274,Screeching Beets,1405 +4275,Wet Carrots,1405 +4276,Boring Honey,1405 +4277,Roasted Beef,1405 +4278,Steady Bread,1405 +4279,Straight Mushrooms,1406 +4280,Determined Carrots,1407 +4281,Fuzzy Bread,1407 +4282,Worried Burrito,1407 +4283,Colossal Mushrooms,1408 +4284,Tasteless Pretzel,1408 +4285,Young Honey,1409 +4286,Combative Honey,1410 +4287,Thirsty Chicken,1410 +4288,Curved Greens,1410 +4289,Old Honey,1410 +4290,Puny Fish,1410 +4291,Nice Fish,1411 +4292,Great Pretzel,1411 +4293,Stingy Chicken,1411 +4294,Brief Beef,1411 +4295,Mighty Honey,1411 +4296,Obedient Apples,1412 +4297,Steady Pretzel,1413 +4298,Rare Mushrooms,1413 +4299,Precious Fruit,1414 +4300,Sweet Fish,1414 +4301,Rotten Fish,1414 +4302,Dull Fish,1415 +4303,Spicy Mushrooms,1415 +4304,Silky Chicken,1416 +4305,Melodic Burrito,1417 +4306,Crazy Mushrooms,1417 +4307,Thundering Burrito,1418 +4308,Juicy Fish,1418 +4309,Flaky Chicken,1419 +4310,Spicy Fruit,1419 +4311,Empty Beef,1419 +4312,Hot Beets,1420 +4313,Prickly Carrots,1420 +4314,Envious Chicken,1420 +4315,Dirty Bread,1421 +4316,Flat Chicken,1422 +4317,Brief Carrots,1422 +4318,Ill Carrots,1422 +4319,Sad Carrots,1423 +4320,Silent Carrots,1423 +4321,Soft Fish,1424 +4322,Dirty Apples,1424 +4323,Chilly Fruit,1424 +4324,Scrawny Carrots,1424 +4325,Jolly Pretzel,1424 +4326,Tiny Chicken,1425 +4327,Red Greens,1425 +4328,Moaning Burrito,1426 +4329,Pretty Beef,1426 +4330,Numerous Fish,1426 +4331,Arrogant Beef,1426 +4332,Clumsy Fish,1426 +4333,Pickled Greens,1427 +4334,Defiant Mushrooms,1427 +4335,Helpful Apples,1427 +4336,Precious Greens,1427 +4337,Straight Beets,1427 +4338,Funny Fish,1428 +4339,Witty Fruit,1428 +4340,Frail Greens,1429 +4341,Frail Fish,1429 +4342,Plain Bread,1430 +4343,Gorgeous Honey,1430 +4344,Thirsty Beets,1431 +4345,Whispering Carrots,1431 +4346,S Burrito,1432 +4347,Clumsy Carrots,1433 +4348,Savory Carrots,1433 +4349,Floppy Beef,1434 +4350,Grieving Carrots,1434 +4351,Lazy Apples,1435 +4352,Fine Apples,1435 +4353,Ancient Apples,1435 +4354,Bad Chicken,1435 +4355,Awful Honey,1436 +4356,Sad Beef,1436 +4357,Immense Apples,1436 +4358,Jittery Greens,1436 +4359,Boom-town Beef,1436 +4360,Zany Beef,1437 +4361,Lazy Fish,1437 +4362,Weak Beets,1438 +4363,Brave Carrots,1439 +4364,Many Mushrooms,1439 +4365,Tame Apples,1439 +4366,Giant Apples,1439 +4367,Shrill Pretzel,1440 +4368,Huge Fruit,1440 +4369,Boom-town Pretzel,1440 +4370,Tart Greens,1440 +4371,Numerous Honey,1440 +4372,Steep Beets,1441 +4373,Eager Burrito,1441 +4374,Grand Burrito,1441 +4375,Slow Apples,1441 +4376,Nervous Bread,1441 +4377,Faint Pretzel,1442 +4378,Ordinary Honey,1442 +4379,Victorious Greens,1442 +4380,Slippery Pretzel,1442 +4381,Average Greens,1443 +4382,Thundering Burrito,1443 +4383,Hissing Carrots,1443 +4384,Shivering Apples,1443 +4385,Mammoth Beef,1443 +4386,Wonderful Pretzel,1444 +4387,Relieved Pretzel,1444 +4388,Silky Beets,1444 +4389,Happy Fruit,1444 +4390,Curved Mushrooms,1444 +4391,Slimy Apples,1445 +4392,Dirty Fish,1445 +4393,Miniature Honey,1445 +4394,Charming Honey,1445 +4395,Clumsy Apples,1446 +4396,Savory Honey,1446 +4397,Cruel Chicken,1447 +4398,Lazy Beets,1447 +4399,Righteous Bread,1448 +4400,Strong Honey,1448 +4401,Straight Chicken,1448 +4402,Hurt Fruit,1448 +4403,Moaning Fruit,1448 +4404,Loud Pretzel,1449 +4405,Sad Greens,1449 +4406,Quick Fish,1449 +4407,Nosy Carrots,1449 +4408,Nasty Bread,1450 +4409,Fat Greens,1451 +4410,Lively Apples,1451 +4411,Worried Mushrooms,1452 +4412,R Carrots,1452 +4413,Jumpin' Pretzel,1452 +4414,Hard Chicken,1452 +4415,Late Apples,1453 +4416,Confused Bread,1454 +4417,Tall Burrito,1454 +4418,Ill Chicken,1454 +4419,Vivacious Beef,1454 +4420,Shaky Apples,1454 +4421,Nosy Fruit,1455 +4422,Fair Chicken,1455 +4423,Great Honey,1455 +4424,Raspy Bread,1455 +4425,Nice Fish,1455 +4426,Fine Bread,1456 +4427,Nervous Beef,1456 +4428,– Mushrooms,1456 +4429,Pretty Honey,1456 +4430,Heavy Fish,1457 +4431,Evil Apples,1457 +4432,Damp Carrots,1458 +4433,Broad Burrito,1458 +4434,Dull Beef,1458 +4435,Enthusiastic Fruit,1458 +4436,Foolish Fish,1459 +4437,Silent Chicken,1459 +4438,Silent Beef,1459 +4439,Old Chicken,1460 +4440,Blue Chicken,1461 +4441,Silly Pretzel,1461 +4442,Colossal Fruit,1461 +4443,Husky Greens,1461 +4444,Mysterious Chicken,1462 +4445,Quick Beef,1462 +4446,Mute Greens,1462 +4447,Filthy Mushrooms,1462 +4448,Savory Carrots,1463 +4449,Stingy Fruit,1464 +4450,Annoyed Mushrooms,1465 +4451,Greasy Burrito,1465 +4452,Tame Apples,1465 +4453,Confused Fruit,1466 +4454,Healthy Pretzel,1466 +4455,Stale Fruit,1467 +4456,Combative Fish,1467 +4457,Hard Mushrooms,1467 +4458,Nom nom Bread,1467 +4459,Thirsty Greens,1467 +4460,– Mushrooms,1468 +4461,Combative Chicken,1469 +4462,Proud Fruit,1469 +4463,Petite Beets,1470 +4464,Stingy Pretzel,1470 +4465,Anxious Fish,1471 +4466,Mysterious Burrito,1471 +4467,Greasy Burrito,1471 +4468,Striped Mushrooms,1472 +4469,Delicious Fruit,1472 +4470,Tan Carrots,1472 +4471,Delightful Honey,1472 +4472,Odd Pretzel,1473 +4473,Cuddly Fish,1474 +4474,Melted Beef,1474 +4475,New Chicken,1474 +4476,Shaky Bread,1474 +4477,Thundering Chicken,1474 +4478,Gentle Greens,1475 +4479,Robust Greens,1475 +4480,Uptight Burrito,1476 +4481,Arrogant Carrots,1476 +4482,Sweet Carrots,1476 +4483,Giant Mushrooms,1477 +4484,Envious Beets,1477 +4485,Depressed Carrots,1477 +4486,Savory Mushrooms,1477 +4487,Dry Beets,1478 +4488,Damp Chicken,1478 +4489,Long Chicken,1479 +4490,High Apples,1479 +4491,Fine Fish,1480 +4492,Splendid Mushrooms,1480 +4493,Straight Apples,1480 +4494,Helpless Pretzel,1480 +4495,Fierce Mushrooms,1481 +4496,Confused Mushrooms,1481 +4497,Comfortable Honey,1481 +4498,Better Pretzel,1481 +4499,Quick Fish,1482 +4500,Comfortable Fish,1482 +4501,New Chicken,1482 +4502,Small Fruit,1483 +4503,Helpless Honey,1483 +4504,Floppy Chicken,1484 +4505,Healthy Beef,1485 +4506,Combative Chicken,1485 +4507,Tense Fish,1485 +4508,Nasty Pretzel,1486 +4509,Terrible Bread,1486 +4510,Tricky Burrito,1486 +4511,Whispering Burrito,1486 +4512,Weary Beets,1487 +4513,Evil Honey,1488 +4514,Big Apples,1488 +4515,Cruel Mushrooms,1488 +4516,Vivacious Carrots,1488 +4517,Uneven Beef,1489 +4518,Frail Carrots,1490 +4519,Quaint Pretzel,1490 +4520,Frightened Beets,1490 +4521,Giant Apples,1490 +4522,Fantastic Mushrooms,1490 +4523,Repulsive Chicken,1491 +4524,Husky Fish,1491 +4525,Breezy Honey,1491 +4526,Hilarious Burrito,1491 +4527,Silky Fruit,1492 +4528,Harsh Fruit,1492 +4529,Thoughtful Burrito,1492 +4530,Boring Pretzel,1492 +4531,Fierce Beets,1493 +4532,Lazy Fruit,1493 +4533,Dizzy Fish,1493 +4534,Calm Mushrooms,1493 +4535,Nom nom Apples,1493 +4536,Heavy Greens,1494 +4537,Curved Beets,1494 +4538,Scrumptious Mushrooms,1495 +4539,Frail Fish,1496 +4540,Tender Beef,1496 +4541,Healthy Burrito,1496 +4542,Obnoxious Mushrooms,1496 +4543,Modern Bread,1497 +4544,M Burrito,1498 +4545,Harsh Fish,1498 +4546,Disturbed Honey,1498 +4547,Grand Beef,1498 +4548,Angry Greens,1498 +4549,Mighty Beef,1499 +4550,Whispering Fish,1499 +4551,Strong Honey,1500 +4552,Tasteless Fruit,1501 +4553,Jolly Apples,1502 +4554,Ugliest Fruit,1503 +4555,Delightful Beef,1503 +4556,Witty Bread,1503 +4557,Yellow Fruit,1503 +4558,Flaky Bread,1504 +4559,Funny Beef,1505 +4560,Harsh Greens,1505 +4561,Big Fish,1505 +4562,Nutty Mushrooms,1505 +4563,Late Beef,1505 +4564,Troubled Chicken,1506 +4565,Deep Chicken,1507 +4566,Stupendous Pretzel,1507 +4567,Scary Bread,1507 +4568,Scattered Beets,1508 +4569,Outrageous Bread,1508 +4570,Plastic Pretzel,1509 +4571,Little Beef,1509 +4572,Anxious Greens,1510 +4573,Gigantic Pretzel,1511 +4574,Swift Honey,1511 +4575,Bright Honey,1511 +4576,Narrow Pretzel,1511 +4577,Bumpy Fruit,1511 +4578,Cuddly Chicken,1512 +4579,Outrageous Apples,1512 +4580,Tiny Honey,1512 +4581,Spotty Burrito,1512 +4582,M Honey,1512 +4583,Late Fish,1513 +4584,Icy Greens,1514 +4585,Dry Mushrooms,1514 +4586,Many Apples,1514 +4587,Average Beets,1515 +4588,Broad Beef,1515 +4589,Clumsy Beets,1515 +4590,Selfish Beef,1516 +4591,Straight Fruit,1516 +4592,Vivacious Mushrooms,1516 +4593,Ratty Chicken,1516 +4594,Fuzzy Apples,1517 +4595,Ashamed Beef,1517 +4596,Massive Honey,1517 +4597,Delightful Greens,1517 +4598,Greasy Beets,1518 +4599,Many Burrito,1518 +4600,Scattered Pretzel,1518 +4601,Striped Beets,1518 +4602,Ordinary Fish,1519 +4603,Broad Chicken,1520 +4604,Faithful Chicken,1520 +4605,Small Fish,1520 +4606,Nasty Apples,1521 +4607,Swift Bread,1521 +4608,Evil Pretzel,1522 +4609,S Burrito,1522 +4610,Stale Mushrooms,1522 +4611,Great Beef,1523 +4612,Incredible Fish,1524 +4613,Melodic Burrito,1525 +4614,Quiet Fish,1525 +4615,Salty Carrots,1526 +4616,Robust Beets,1527 +4617,Dirty Bread,1527 +4618,Hungry Carrots,1528 +4619,R Beets,1528 +4620,Good Fish,1529 +4621,Elated Fruit,1529 +4622,Mysterious Burrito,1529 +4623,Round Fish,1530 +4624,Crazy Mushrooms,1530 +4625,Tasteless Beets,1530 +4626,Faint Burrito,1530 +4627,Ratty Carrots,1530 +4628,Round Greens,1531 +4629,Raspy Apples,1531 +4630,Spotty Apples,1531 +4631,Spicy Fruit,1532 +4632,Confused Beef,1532 +4633,Ashamed Beets,1532 +4634,Damp Fruit,1533 +4635,Square Fish,1533 +4636,Shrill Apples,1533 +4637,Smooth Chicken,1533 +4638,Kind Mushrooms,1533 +4639,Fat Fish,1534 +4640,Great Apples,1534 +4641,Determined Fruit,1534 +4642,Kickin' Honey,1534 +4643,Rainy Pretzel,1534 +4644,Immense Fruit,1535 +4645,Steep Mushrooms,1535 +4646,Broken Pretzel,1535 +4647,Rare Carrots,1535 +4648,Arrogant Beets,1536 +4649,Striped Fish,1537 +4650,Uptight Burrito,1537 +4651,Frightened Chicken,1537 +4652,Beautiful Chicken,1537 +4653,Dull Apples,1537 +4654,Scrawny Chicken,1538 +4655,Wide Beef,1538 +4656,Quick Mushrooms,1538 +4657,Ugly Beef,1538 +4658,Helpful Mushrooms,1539 +4659,Cold Chicken,1539 +4660,Prickly Apples,1539 +4661,Juicy Fish,1539 +4662,Obedient Honey,1539 +4663,Confused Greens,1540 +4664,Cheerful Fruit,1540 +4665,Puny Chicken,1540 +4666,Spotty Mushrooms,1540 +4667,Scrumptious Carrots,1540 +4668,Weak Fruit,1541 +4669,Many Honey,1541 +4670,Edible Greens,1541 +4671,Scary Beets,1542 +4672,Loose Mushrooms,1543 +4673,Amused Carrots,1544 +4674,Righteous Fruit,1544 +4675,– Burrito,1545 +4676,Plastic Apples,1545 +4677,Lucky Fish,1545 +4678,Energetic Honey,1545 +4679,Arrogant Greens,1546 +4680,Tiny Beef,1546 +4681,Weak Burrito,1546 +4682,Fierce Pretzel,1546 +4683,Happy Burrito,1547 +4684,Scary Bread,1547 +4685,Cool Apples,1547 +4686,Strong Beef,1548 +4687,Scattered Mushrooms,1548 +4688,Smiling Honey,1548 +4689,Handsome Beef,1548 +4690,Prickly Beets,1549 +4691,Sticky Beef,1549 +4692,Massive Beets,1549 +4693,Steep Mushrooms,1550 +4694,Average Pretzel,1550 +4695,Long Carrots,1551 +4696,Enthusiastic Apples,1551 +4697,Boiling Pretzel,1551 +4698,Shrill Greens,1551 +4699,Flaky Greens,1552 +4700,S Burrito,1552 +4701,Hot Bread,1552 +4702,Steady Beets,1553 +4703,Ugliest Greens,1553 +4704,Sore Burrito,1554 +4705,Cooperative Fish,1554 +4706,Juicy Pretzel,1555 +4707,Creepy Burrito,1555 +4708,Greasy Fruit,1555 +4709,Plain Beets,1555 +4710,Nervous Burrito,1556 +4711,Angry Burrito,1556 +4712,Floppy Burrito,1557 +4713,Scrawny Carrots,1558 +4714,Early Fruit,1558 +4715,Fuzzy Mushrooms,1558 +4716,Troubled Beets,1559 +4717,Resonant Chicken,1560 +4718,Tan Beets,1561 +4719,Tough Apples,1561 +4720,Itchy Burrito,1562 +4721,Funny Bread,1562 +4722,Tired Greens,1562 +4723,R Mushrooms,1563 +4724,Vivacious Pretzel,1563 +4725,Many Burrito,1564 +4726,Slow Honey,1564 +4727,Short Fruit,1565 +4728,Rotten Beets,1565 +4729,Jumpin' Burrito,1566 +4730,Happy Pretzel,1566 +4731,Juicy Carrots,1566 +4732,Calm Carrots,1566 +4733,Kickin' Burrito,1567 +4734,Repulsive Apples,1567 +4735,Tasty Beef,1567 +4736,Tired Fruit,1567 +4737,Wet Bread,1567 +4738,Red Burrito,1568 +4739,Grand Beef,1568 +4740,Combative Fruit,1568 +4741,Early Bread,1568 +4742,Stupendous Bread,1569 +4743,Wooden Greens,1569 +4744,New Greens,1569 +4745,Tan Burrito,1569 +4746,Wicked Carrots,1569 +4747,Upset Honey,1570 +4748,Ill Mushrooms,1570 +4749,Grumpy Fruit,1571 +4750,Kickin' Greens,1571 +4751,Incredible Chicken,1571 +4752,Shallow Bread,1572 +4753,Giant Bread,1572 +4754,Silly Chicken,1573 +4755,Puny Beets,1573 +4756,Arrogant Bread,1573 +4757,Smiling Bread,1573 +4758,Friendly Beef,1574 +4759,Icy Carrots,1574 +4760,Confused Fish,1574 +4761,Funny Burrito,1574 +4762,Straight Honey,1575 +4763,Naughty Beets,1576 +4764,Edible Chicken,1576 +4765,Boring Chicken,1576 +4766,Deafening Greens,1577 +4767,Delicious Mushrooms,1577 +4768,Ratty Burrito,1577 +4769,Spotty Beets,1578 +4770,Cool Beets,1578 +4771,Voiceless Pretzel,1578 +4772,Hungry Fruit,1579 +4773,Moaning Fish,1580 +4774,Dull Carrots,1580 +4775,Agreeable Fruit,1580 +4776,Sad Beets,1580 +4777,Hushed Beets,1581 +4778,Nom nom Burrito,1581 +4779,Old Beef,1581 +4780,Vivacious Bread,1582 +4781,Uneven Greens,1582 +4782,Flaky Greens,1582 +4783,Tasty Beets,1582 +4784,Mammoth Burrito,1582 +4785,Shrill Beef,1583 +4786,Dizzy Bread,1583 +4787,Tight Chicken,1583 +4788,Uneven Beef,1583 +4789,Mammoth Apples,1584 +4790,Purring Chicken,1584 +4791,Enthusiastic Carrots,1585 +4792,Ratty Pretzel,1585 +4793,Awful Beef,1585 +4794,Shaky Burrito,1586 +4795,Striped Apples,1587 +4796,Squealing Chicken,1587 +4797,Tame Honey,1587 +4798,Jolly Honey,1587 +4799,Swift Beets,1588 +4800,Dry Fruit,1588 +4801,Envious Mushrooms,1588 +4802,Tart Pretzel,1588 +4803,Handsome Pretzel,1589 +4804,Afraid Chicken,1589 +4805,Whispering Burrito,1589 +4806,Good Bread,1589 +4807,Disgusted Honey,1589 +4808,Uptight Bread,1590 +4809,Defiant Fruit,1590 +4810,Good Chicken,1591 +4811,Icy Apples,1592 +4812,Fuzzy Bread,1592 +4813,Bumpy Chicken,1593 +4814,Faint Mushrooms,1593 +4815,Gorgeous Fish,1593 +4816,Gigantic Burrito,1594 +4817,Weak Beef,1594 +4818,Testy Carrots,1594 +4819,Curved Greens,1595 +4820,Solid Chicken,1595 +4821,Pickled Bread,1595 +4822,Rainy Burrito,1596 +4823,Comfortable Carrots,1596 +4824,Giant Pretzel,1596 +4825,High Apples,1596 +4826,R Fish,1597 +4827,– Greens,1598 +4828,Uneven Carrots,1598 +4829,Red Greens,1598 +4830,Curved Carrots,1599 +4831,Salty Fruit,1599 +4832,Melted Greens,1599 +4833,Energetic Beets,1599 +4834,Fresh Pretzel,1599 +4835,Yummy Pretzel,1600 +4836,Worried Carrots,1600 +4837,Frail Greens,1600 +4838,Silly Bread,1600 +4839,Miniature Greens,1600 +4840,Mute Honey,1601 +4841,Sharp Beef,1601 +4842,R Apples,1602 +4843,Brief Chicken,1603 +4844,Flat Greens,1604 +4845,Tense Mushrooms,1604 +4846,Tiny Honey,1604 +4847,Horrible Mushrooms,1604 +4848,Magnificent Bread,1605 +4849,Plain Burrito,1605 +4850,Wooden Apples,1605 +4851,Tense Fish,1605 +4852,Brief Mushrooms,1606 +4853,Hurt Chicken,1606 +4854,Ashamed Carrots,1606 +4855,Relieved Greens,1606 +4856,Robust Beef,1606 +4857,Faithful Greens,1607 +4858,Slippery Beets,1607 +4859,Precious Carrots,1607 +4860,Bad Pretzel,1607 +4861,Striped Fruit,1607 +4862,Spicy Bread,1608 +4863,Hissing Burrito,1608 +4864,Frantic Bread,1608 +4865,Faithful Greens,1608 +4866,Gentle Burrito,1608 +4867,Victorious Fruit,1609 +4868,Comfortable Beets,1609 +4869,Delightful Mushrooms,1609 +4870,Hot Apples,1610 +4871,Relieved Beets,1610 +4872,Moaning Greens,1610 +4873,Soft Carrots,1610 +4874,Modern Carrots,1610 +4875,Shallow Greens,1611 +4876,Breezy Pretzel,1611 +4877,Obnoxious Apples,1611 +4878,Anxious Mushrooms,1611 +4879,Nervous Mushrooms,1612 +4880,Short Fruit,1612 +4881,Faint Greens,1612 +4882,Tight Honey,1612 +4883,Grumpy Bread,1613 +4884,Petite Fruit,1613 +4885,Nervous Mushrooms,1614 +4886,Scrumptious Fish,1614 +4887,Roasted Bread,1614 +4888,Depressed Greens,1614 +4889,Juicy Beef,1614 +4890,Lively Honey,1615 +4891,Deep Beef,1615 +4892,Tiny Mushrooms,1615 +4893,Salty Fruit,1616 +4894,Righteous Honey,1617 +4895,Swift Carrots,1618 +4896,Shivering Mushrooms,1618 +4897,Broken Beets,1618 +4898,Cruel Mushrooms,1618 +4899,Vast Fruit,1618 +4900,Small Burrito,1619 +4901,Friendly Beef,1619 +4902,Great Bread,1619 +4903,Yellow Greens,1620 +4904,Whispering Fruit,1621 +4905,Evil Chicken,1621 +4906,Gorgeous Bread,1621 +4907,Disgusted Pretzel,1622 +4908,Boring Mushrooms,1622 +4909,Frail Burrito,1622 +4910,Outrageous Mushrooms,1622 +4911,Jealous Bread,1622 +4912,Mysterious Mushrooms,1623 +4913,Fuzzy Bread,1623 +4914,Cooperative Honey,1623 +4915,Wet Fruit,1623 +4916,Whispering Apples,1624 +4917,Harsh Honey,1624 +4918,Spotty Fruit,1624 +4919,Dangerous Beef,1624 +4920,Odd Carrots,1624 +4921,Savory Burrito,1625 +4922,Purple Beef,1625 +4923,Evil Honey,1626 +4924,Spicy Fruit,1626 +4925,Bright Beets,1627 +4926,Flaky Apples,1627 +4927,Whispering Fish,1627 +4928,Energetic Mushrooms,1627 +4929,Fresh Carrots,1628 +4930,Jealous Fish,1628 +4931,Nervous Beef,1628 +4932,Bad Carrots,1629 +4933,Panicky Beets,1629 +4934,Foolish Fish,1630 +4935,Gigantic Chicken,1631 +4936,Strong Chicken,1631 +4937,Homeless Mushrooms,1631 +4938,Brave Carrots,1631 +4939,Helpful Beef,1631 +4940,Spicy Chicken,1632 +4941,R Mushrooms,1632 +4942,Jittery Mushrooms,1632 +4943,Purple Fruit,1632 +4944,Big Greens,1632 +4945,Straight Chicken,1633 +4946,Handsome Mushrooms,1633 +4947,Mute Bread,1634 +4948,Righteous Beef,1634 +4949,Plastic Beets,1634 +4950,Colossal Beets,1635 +4951,Fuzzy Chicken,1635 +4952,Strange Chicken,1635 +4953,Cheesy Bread,1636 +4954,Plastic Burrito,1636 +4955,Naughty Burrito,1636 +4956,Edible Beets,1636 +4957,Loud Chicken,1637 +4958,Hissing Burrito,1637 +4959,Friendly Fruit,1638 +4960,Cheerful Honey,1638 +4961,Fluffy Fruit,1638 +4962,Fluffy Greens,1638 +4963,Husky Greens,1638 +4964,Raspy Pretzel,1639 +4965,Eager Bread,1639 +4966,Enthusiastic Bread,1640 +4967,Few Fruit,1640 +4968,Husky Chicken,1641 +4969,Odd Pretzel,1641 +4970,Ratty Fish,1642 +4971,Watery Burrito,1642 +4972,Brief Beets,1642 +4973,Dirty Bread,1642 +4974,Tiny Greens,1642 +4975,Hushed Bread,1643 +4976,Loose Fish,1643 +4977,Weak Chicken,1644 +4978,Magnificent Fish,1644 +4979,Greasy Fish,1644 +4980,Silent Apples,1644 +4981,Watery Fish,1644 +4982,Silky Carrots,1645 +4983,Plain Bread,1645 +4984,Perfect Apples,1645 +4985,Delightful Fruit,1645 +4986,Silent Beets,1646 +4987,Quiet Chicken,1646 +4988,Hilarious Bread,1646 +4989,Fantastic Fruit,1646 +4990,Fierce Chicken,1646 +4991,Uneven Fruit,1647 +4992,Hot Greens,1648 +4993,Long Beets,1648 +4994,Funny Apples,1648 +4995,Thirsty Chicken,1648 +4996,Miniature Beef,1649 +4997,Young Fruit,1649 +4998,Swift Pretzel,1649 +4999,Ripe Fish,1649 +5000,Uneven Apples,1650 +5001,Spotty Mushrooms,1650 +5002,Sharp Pretzel,1650 +5003,Hard Greens,1650 +5004,Hot Pretzel,1650 +5005,Ugly Bread,1651 +5006,Fluffy Chicken,1651 +5007,Skinny Honey,1652 +5008,Cheesy Greens,1652 +5009,Flaky Burrito,1652 +5010,Arrogant Beets,1652 +5011,Defeated Honey,1652 +5012,Nutty Fruit,1653 +5013,Good Pretzel,1653 +5014,Icy Mushrooms,1654 +5015,Red Fish,1654 +5016,Afraid Fruit,1654 +5017,Breezy Fruit,1654 +5018,Enthusiastic Mushrooms,1654 +5019,Tough Fish,1655 +5020,Grubby Burrito,1655 +5021,Strange Pretzel,1655 +5022,Thirsty Fruit,1655 +5023,Wide-eyed Apples,1656 +5024,Kickin' Burrito,1657 +5025,Spotty Honey,1657 +5026,Hot Pretzel,1658 +5027,Worried Chicken,1658 +5028,Gentle Bread,1659 +5029,Fast Greens,1659 +5030,Afraid Fish,1659 +5031,Curly Fish,1660 +5032,Embarrassed Beets,1660 +5033,Bad Pretzel,1660 +5034,Silly Fruit,1661 +5035,Loud Bread,1662 +5036,Sore Carrots,1663 +5037,Nutty Fish,1663 +5038,Harsh Burrito,1663 +5039,Rainy Carrots,1663 +5040,Striped Burrito,1664 +5041,Energetic Burrito,1664 +5042,Cheesy Carrots,1665 +5043,Amused Fish,1665 +5044,Curved Pretzel,1665 +5045,Big Carrots,1665 +5046,Confused Fish,1666 +5047,Sad Pretzel,1666 +5048,Wide-eyed Greens,1666 +5049,Fantastic Burrito,1666 +5050,Envious Fish,1667 +5051,Wet Fruit,1667 +5052,Fluffy Pretzel,1667 +5053,Enthusiastic Fish,1667 +5054,Square Burrito,1668 +5055,Silent Apples,1669 +5056,– Bread,1669 +5057,Moist Fruit,1669 +5058,Outrageous Beets,1669 +5059,Silly Mushrooms,1669 +5060,Black Fruit,1670 +5061,Savory Burrito,1671 +5062,Zany Fruit,1671 +5063,Embarrassed Beets,1671 +5064,Ugly Bread,1672 +5065,Horrible Bread,1672 +5066,Handsome Burrito,1672 +5067,Hungry Beets,1672 +5068,Cruel Fish,1673 +5069,Victorious Chicken,1674 +5070,Tart Greens,1674 +5071,Quaint Carrots,1674 +5072,Afraid Greens,1675 +5073,Wasteful Chicken,1675 +5074,Perfect Beef,1676 +5075,Nasty Greens,1676 +5076,Cooing Beef,1676 +5077,Green Beef,1676 +5078,Slippery Pretzel,1676 +5079,Hollow Fruit,1677 +5080,Testy Chicken,1677 +5081,Nasty Fish,1677 +5082,Bitter Greens,1677 +5083,Edible Fruit,1677 +5084,Modern Fish,1678 +5085,Vast Bread,1678 +5086,Outrageous Pretzel,1678 +5087,Calm Beef,1678 +5088,Tiny Greens,1678 +5089,Puny Bread,1679 +5090,Dizzy Apples,1679 +5091,Disgusted Greens,1680 +5092,Grumpy Honey,1680 +5093,Agreeable Carrots,1681 +5094,Fantastic Beef,1681 +5095,Hollow Carrots,1681 +5096,Wet Bread,1681 +5097,Clumsy Apples,1681 +5098,Proud Beets,1682 +5099,Jealous Carrots,1683 +5100,Itchy Beef,1683 +5101,Dry Carrots,1683 +5102,Grieving Fruit,1683 +5103,Melodic Carrots,1683 +5104,Quickest Beets,1684 +5105,Mammoth Burrito,1684 +5106,Combative Pretzel,1685 +5107,Cooperative Pretzel,1685 +5108,Flaky Apples,1685 +5109,Broad Mushrooms,1685 +5110,Deafening Greens,1686 +5111,S Honey,1686 +5112,Envious Apples,1686 +5113,Energetic Honey,1686 +5114,Awful Fruit,1686 +5115,Curved Fruit,1687 +5116,Tiny Honey,1687 +5117,Numerous Burrito,1687 +5118,Funny Apples,1687 +5119,Scrawny Fish,1688 +5120,Skinny Pretzel,1688 +5121,Pleasant Honey,1688 +5122,Robust Fruit,1689 +5123,Squealing Bread,1689 +5124,Scrumptious Fish,1690 +5125,Creepy Apples,1691 +5126,Witty Mushrooms,1692 +5127,Thoughtless Beef,1692 +5128,M Mushrooms,1693 +5129,Repulsive Pretzel,1694 +5130,Breezy Beets,1694 +5131,Tame Chicken,1694 +5132,Floppy Bread,1695 +5133,Tight Chicken,1695 +5134,Hungry Fish,1695 +5135,Rapid Fish,1696 +5136,Round Honey,1696 +5137,Bland Burrito,1696 +5138,Worried Beef,1696 +5139,Quaint Apples,1697 +5140,Thoughtful Apples,1698 +5141,Worried Greens,1698 +5142,Flaky Fruit,1698 +5143,Quickest Bread,1699 +5144,Good Beets,1700 +5145,Jealous Carrots,1700 +5146,Gentle Chicken,1701 +5147,Horrible Chicken,1701 +5148,Straight Carrots,1701 +5149,Shallow Chicken,1701 +5150,Old Bread,1701 +5151,Raspy Greens,1702 +5152,Spicy Chicken,1702 +5153,Elated Burrito,1702 +5154,Worried Carrots,1702 +5155,Rainy Mushrooms,1702 +5156,Successful Chicken,1703 +5157,Clumsy Fruit,1703 +5158,Big Apples,1703 +5159,Encouraging Greens,1703 +5160,Nosy Pretzel,1703 +5161,Nom nom Apples,1704 +5162,Melodic Fish,1704 +5163,Enthusiastic Carrots,1704 +5164,Naughty Apples,1704 +5165,Ancient Bread,1704 +5166,Faithful Honey,1705 +5167,Orange Mushrooms,1705 +5168,Harsh Mushrooms,1706 +5169,Elated Burrito,1706 +5170,Slow Chicken,1706 +5171,Scary Burrito,1706 +5172,Giant Mushrooms,1707 +5173,Silly Fruit,1707 +5174,Tasty Carrots,1707 +5175,Excited Pretzel,1707 +5176,Grubby Greens,1707 +5177,Jittery Pretzel,1708 +5178,Weary Pretzel,1708 +5179,Whispering Beef,1708 +5180,Fantastic Greens,1708 +5181,Early Mushrooms,1709 +5182,Immense Apples,1710 +5183,Tame Pretzel,1710 +5184,Greasy Burrito,1710 +5185,Nervous Mushrooms,1710 +5186,Low Chicken,1711 +5187,Prickly Honey,1711 +5188,Scrumptious Greens,1711 +5189,Narrow Greens,1711 +5190,Jealous Fruit,1711 +5191,Wonderful Honey,1712 +5192,Nosy Honey,1712 +5193,Calm Beef,1712 +5194,Fast Mushrooms,1712 +5195,Cruel Fruit,1713 +5196,Repulsive Beets,1713 +5197,Skinny Fruit,1713 +5198,Ill Mushrooms,1713 +5199,Splendid Chicken,1713 +5200,Embarrassed Beef,1714 +5201,Better Fish,1714 +5202,Bright Burrito,1715 +5203,Sweet Apples,1715 +5204,Stale Beef,1715 +5205,Nervous Beef,1715 +5206,Flat Mushrooms,1716 +5207,Frightened Burrito,1716 +5208,Square Honey,1716 +5209,Funny Beets,1716 +5210,Fat Burrito,1716 +5211,Boiling Pretzel,1717 +5212,High Carrots,1717 +5213,Encouraging Bread,1717 +5214,Thoughtless Burrito,1717 +5215,Hurt Beets,1718 +5216,Obnoxious Chicken,1718 +5217,Energetic Beets,1718 +5218,Puny Beets,1718 +5219,Annoyed Greens,1718 +5220,Fuzzy Carrots,1719 +5221,Jittery Carrots,1719 +5222,Ancient Honey,1719 +5223,Perfect Beets,1719 +5224,Calm Carrots,1719 +5225,Dry Beets,1720 +5226,Melodic Chicken,1720 +5227,Pickled Apples,1720 +5228,Resonant Carrots,1720 +5229,Eager Honey,1721 +5230,Successful Fish,1722 +5231,Quickest Bread,1723 +5232,Scary Mushrooms,1724 +5233,Combative Bread,1724 +5234,Ill Apples,1724 +5235,Dirty Mushrooms,1724 +5236,Ripe Bread,1724 +5237,Mysterious Mushrooms,1725 +5238,Healthy Bread,1726 +5239,Wicked Chicken,1726 +5240,Smooth Carrots,1726 +5241,Harsh Fish,1726 +5242,Puny Apples,1727 +5243,Mute Apples,1727 +5244,Dry Fruit,1727 +5245,Quiet Chicken,1727 +5246,Spicy Honey,1727 +5247,Tall Apples,1728 +5248,Wonderful Honey,1729 +5249,Roasted Carrots,1730 +5250,Pleasant Fruit,1730 +5251,Wicked Mushrooms,1730 +5252,Hurt Carrots,1731 +5253,Salty Greens,1732 +5254,Outrageous Apples,1732 +5255,Pretty Carrots,1732 +5256,Sad Mushrooms,1732 +5257,Evil Fish,1732 +5258,Awful Mushrooms,1733 +5259,Weary Beef,1733 +5260,Robust Carrots,1733 +5261,Fierce Honey,1733 +5262,Small Burrito,1733 +5263,Horrible Beets,1734 +5264,Better Fruit,1735 +5265,Healthy Chicken,1735 +5266,Ill Honey,1735 +5267,Jealous Burrito,1735 +5268,Healthy Mushrooms,1736 +5269,Bright Burrito,1736 +5270,Huge Apples,1736 +5271,Tense Fish,1736 +5272,Repulsive Apples,1737 +5273,– Fruit,1737 +5274,Deafening Burrito,1737 +5275,Squealing Greens,1738 +5276,Nice Bread,1738 +5277,Precious Chicken,1738 +5278,Exuberant Bread,1738 +5279,Cheerful Greens,1739 +5280,Beautiful Bread,1739 +5281,Uptight Chicken,1740 +5282,Crazy Mushrooms,1740 +5283,Floppy Beef,1740 +5284,Handsome Apples,1740 +5285,Shaggy Greens,1741 +5286,Curved Fish,1741 +5287,Few Greens,1742 +5288,Melted Bread,1742 +5289,Spicy Burrito,1742 +5290,Steep Apples,1742 +5291,Calm Beets,1743 +5292,Sour Pretzel,1743 +5293,Handsome Beef,1743 +5294,Tricky Pretzel,1744 +5295,Late Greens,1745 +5296,Late Pretzel,1745 +5297,Tense Beef,1745 +5298,Frightened Mushrooms,1745 +5299,Silly Greens,1745 +5300,Nutty Carrots,1746 +5301,Soft Carrots,1746 +5302,Magnificent Chicken,1747 +5303,Swift Mushrooms,1748 +5304,Cheerful Fish,1749 +5305,Tall Fruit,1750 +5306,Naughty Mushrooms,1750 +5307,Odd Fish,1751 +5308,Scattered Apples,1751 +5309,Blue Apples,1751 +5310,Anxious Bread,1752 +5311,Boiling Pretzel,1752 +5312,Tasteless Honey,1752 +5313,Funny Beets,1753 +5314,Incredible Mushrooms,1753 +5315,Hushed Fruit,1753 +5316,Courageous Mushrooms,1754 +5317,Dizzy Fruit,1754 +5318,Tough Burrito,1754 +5319,Funny Greens,1754 +5320,Tender Greens,1754 +5321,Juicy Honey,1755 +5322,Funny Beef,1755 +5323,Embarrassed Pretzel,1755 +5324,Flaky Fish,1756 +5325,Miniature Greens,1756 +5326,Ashamed Apples,1756 +5327,Great Mushrooms,1757 +5328,Silky Beef,1757 +5329,Rough Burrito,1757 +5330,Square Greens,1757 +5331,Spicy Carrots,1757 +5332,Bitter Chicken,1758 +5333,Shrill Honey,1759 +5334,Cold Beef,1759 +5335,Tasty Fruit,1759 +5336,Red Fish,1759 +5337,Cuddly Greens,1760 +5338,Moaning Beets,1760 +5339,Odd Bread,1761 +5340,Raspy Chicken,1762 +5341,Dry Chicken,1762 +5342,Brief Pretzel,1762 +5343,Smooth Honey,1762 +5344,Stupendous Greens,1762 +5345,Orange Fish,1763 +5346,Brave Honey,1764 +5347,Boring Mushrooms,1764 +5348,Shivering Pretzel,1764 +5349,Hilarious Fruit,1765 +5350,Rotten Burrito,1765 +5351,Lazy Greens,1765 +5352,Ancient Fruit,1766 +5353,R Fish,1766 +5354,Splendid Burrito,1766 +5355,Fast Fruit,1767 +5356,Green Beets,1767 +5357,Silent Pretzel,1767 +5358,Pickled Beets,1767 +5359,Embarrassed Honey,1767 +5360,– Greens,1768 +5361,Moaning Mushrooms,1769 +5362,Encouraging Mushrooms,1769 +5363,Encouraging Honey,1769 +5364,Fresh Carrots,1769 +5365,Tasteless Honey,1769 +5366,Hollow Fish,1770 +5367,Empty Fish,1770 +5368,Spotty Fruit,1770 +5369,Yummy Fish,1770 +5370,Upset Burrito,1771 +5371,Tense Beef,1771 +5372,Scary Honey,1772 +5373,Salty Fish,1773 +5374,Obnoxious Bread,1773 +5375,Rapid Bread,1773 +5376,Nom nom Pretzel,1774 +5377,Chilly Carrots,1775 +5378,Agreeable Greens,1775 +5379,Delicious Carrots,1775 +5380,Bland Bread,1775 +5381,Incredible Beets,1775 +5382,Rotten Bread,1776 +5383,Greasy Greens,1776 +5384,Better Bread,1776 +5385,Tough Greens,1776 +5386,Energetic Honey,1777 +5387,Delicious Fruit,1778 +5388,Ugliest Fruit,1778 +5389,Prickly Mushrooms,1778 +5390,Little Fish,1778 +5391,Perfect Fruit,1778 +5392,Large Greens,1779 +5393,Gorgeous Bread,1779 +5394,Tricky Fruit,1779 +5395,Spotty Carrots,1779 +5396,Magnificent Fish,1780 +5397,Victorious Bread,1780 +5398,Encouraging Mushrooms,1780 +5399,Ratty Apples,1780 +5400,Slippery Mushrooms,1781 +5401,Moist Greens,1781 +5402,Hot Fruit,1781 +5403,Great Greens,1782 +5404,Jittery Fruit,1782 +5405,Filthy Fish,1782 +5406,Damp Carrots,1782 +5407,Late Bread,1783 +5408,Dull Beets,1783 +5409,Horrible Mushrooms,1783 +5410,Selfish Beef,1783 +5411,Handsome Mushrooms,1783 +5412,Witty Bread,1784 +5413,Moist Mushrooms,1785 +5414,Righteous Fruit,1785 +5415,Bright Beets,1786 +5416,Eager Burrito,1786 +5417,Foolish Beef,1786 +5418,Lovely Carrots,1787 +5419,Puny Greens,1787 +5420,Better Apples,1787 +5421,Upset Burrito,1787 +5422,Hungry Beets,1788 +5423,Confused Burrito,1788 +5424,Foolish Bread,1788 +5425,Jumpin' Carrots,1788 +5426,Thoughtful Pretzel,1789 +5427,Awful Beef,1789 +5428,Giant Fruit,1789 +5429,Nervous Apples,1789 +5430,Hungry Honey,1789 +5431,Wooden Carrots,1790 +5432,Upset Pretzel,1791 +5433,Tall Pretzel,1791 +5434,Bland Pretzel,1791 +5435,Excited Bread,1791 +5436,Friendly Chicken,1791 +5437,Hard Burrito,1792 +5438,Fast Beets,1792 +5439,Blue Apples,1793 +5440,Agreeable Bread,1793 +5441,Short Chicken,1793 +5442,Green Honey,1793 +5443,Flat Greens,1793 +5444,Creepy Burrito,1794 +5445,Mammoth Beef,1794 +5446,Deafening Fish,1795 +5447,Handsome Carrots,1796 +5448,Nice Beef,1796 +5449,Sore Honey,1796 +5450,Smiling Beets,1796 +5451,Happy Apples,1797 +5452,Mighty Fish,1797 +5453,Empty Chicken,1798 +5454,Crazy Pretzel,1799 +5455,Mysterious Pretzel,1800 +5456,Scrumptious Greens,1800 +5457,Watery Mushrooms,1800 +5458,Great Apples,1800 +5459,Greasy Beets,1800 +5460,Uneven Chicken,1801 +5461,Stale Fish,1802 +5462,Wasteful Bread,1803 +5463,Incredible Pretzel,1803 +5464,Young Pretzel,1804 +5465,Roasted Burrito,1804 +5466,M Pretzel,1805 +5467,Terrible Bread,1805 +5468,Prickly Beets,1805 +5469,Relieved Fish,1806 +5470,Chilly Pretzel,1806 +5471,Odd Greens,1806 +5472,Loud Bread,1806 +5473,Broken Apples,1806 +5474,Hilarious Pretzel,1807 +5475,Disturbed Mushrooms,1808 +5476,Melted Greens,1808 +5477,Ratty Beets,1808 +5478,Ashamed Honey,1808 +5479,Hard Mushrooms,1808 +5480,Eager Beef,1809 +5481,Plain Mushrooms,1809 +5482,Solid Fish,1809 +5483,Tasty Chicken,1809 +5484,Disturbed Honey,1810 +5485,Solid Chicken,1810 +5486,Ordinary Pretzel,1810 +5487,Rare Bread,1811 +5488,Tan Bread,1811 +5489,Squealing Honey,1811 +5490,Tasteless Fruit,1811 +5491,Agreeable Apples,1812 +5492,Delicious Greens,1812 +5493,Calm Carrots,1812 +5494,Lazy Burrito,1812 +5495,Naughty Fruit,1812 +5496,Whispering Fruit,1813 +5497,Short Pretzel,1814 +5498,Large Mushrooms,1815 +5499,Tired Chicken,1815 +5500,Hard Chicken,1815 +5501,Combative Fish,1815 +5502,Foolish Burrito,1816 +5503,Faint Bread,1816 +5504,Stingy Greens,1817 +5505,Jittery Pretzel,1817 +5506,Long Bread,1818 +5507,Odd Beef,1818 +5508,Floppy Mushrooms,1818 +5509,Beautiful Pretzel,1818 +5510,Encouraging Mushrooms,1818 +5511,Salty Beets,1819 +5512,Jolly Honey,1819 +5513,Yellow Mushrooms,1819 +5514,Depressed Fruit,1819 +5515,R Beets,1820 +5516,Hushed Carrots,1820 +5517,Quiet Bread,1820 +5518,Cool Fish,1820 +5519,Melodic Fruit,1820 +5520,Gigantic Beets,1821 +5521,Edible Greens,1822 +5522,Disturbed Bread,1822 +5523,Mighty Beef,1823 +5524,Creepy Pretzel,1823 +5525,Testy Carrots,1823 +5526,Creepy Fish,1823 +5527,Crazy Beef,1824 +5528,Fair Pretzel,1824 +5529,Harsh Fish,1825 +5530,Salty Mushrooms,1825 +5531,Solid Chicken,1826 +5532,Quick Beets,1826 +5533,Silky Bread,1826 +5534,Shrill Beets,1826 +5535,Helpful Honey,1827 +5536,Greasy Greens,1828 +5537,Screeching Greens,1828 +5538,Fat Burrito,1828 +5539,Fantastic Greens,1828 +5540,Squealing Beets,1828 +5541,Better Honey,1829 +5542,High Greens,1829 +5543,Ugly Honey,1829 +5544,Defiant Mushrooms,1829 +5545,Massive Carrots,1830 +5546,Vast Fruit,1830 +5547,Roasted Honey,1831 +5548,Mighty Beef,1831 +5549,Blue Pretzel,1832 +5550,Excited Beef,1832 +5551,Rainy Carrots,1832 +5552,Shaky Honey,1832 +5553,Bitter Apples,1832 +5554,Lovely Pretzel,1833 +5555,Bitter Beef,1833 +5556,Beautiful Burrito,1834 +5557,Tan Honey,1834 +5558,Whispering Chicken,1834 +5559,Cuddly Bread,1834 +5560,Handsome Pretzel,1835 +5561,Tender Beets,1835 +5562,Green Chicken,1835 +5563,Selfish Pretzel,1835 +5564,Nutty Honey,1835 +5565,Tasty Fish,1836 +5566,Fat Greens,1836 +5567,Tart Apples,1836 +5568,Juicy Pretzel,1836 +5569,Large Chicken,1836 +5570,Few Beef,1837 +5571,Tan Fruit,1837 +5572,Hushed Carrots,1837 +5573,Terrible Honey,1837 +5574,Precious Mushrooms,1837 +5575,Elated Mushrooms,1838 +5576,Naughty Fruit,1839 +5577,Solid Pretzel,1839 +5578,Heavy Mushrooms,1839 +5579,Disturbed Burrito,1839 +5580,Blue Apples,1839 +5581,High Greens,1840 +5582,Silky Beets,1840 +5583,Jittery Mushrooms,1840 +5584,Envious Chicken,1840 +5585,Disturbed Pretzel,1840 +5586,Greasy Greens,1841 +5587,Perfect Chicken,1841 +5588,Frail Burrito,1841 +5589,Scrumptious Beets,1842 +5590,Horrible Beets,1842 +5591,Sticky Chicken,1843 +5592,Cooperative Bread,1843 +5593,R Greens,1843 +5594,Terrible Apples,1844 +5595,Wasteful Fish,1844 +5596,Sharp Fruit,1844 +5597,Spicy Carrots,1844 +5598,Weary Burrito,1845 +5599,Curly Chicken,1846 +5600,Huge Beets,1846 +5601,– Honey,1847 +5602,Obnoxious Carrots,1848 +5603,Spotty Carrots,1848 +5604,Clumsy Greens,1849 +5605,Pleasant Pretzel,1850 +5606,Fluffy Apples,1850 +5607,Sore Apples,1850 +5608,Sweet Pretzel,1850 +5609,Cooing Burrito,1850 +5610,Jumpin' Fish,1851 +5611,Yellow Pretzel,1851 +5612,Broken Bread,1852 +5613,Confused Greens,1852 +5614,Arrogant Fish,1853 +5615,Juicy Carrots,1854 +5616,Yellow Burrito,1854 +5617,Smooth Honey,1854 +5618,Fluffy Chicken,1854 +5619,Eager Fruit,1854 +5620,Pretty Greens,1855 +5621,Broad Beets,1855 +5622,High Chicken,1856 +5623,Afraid Fish,1856 +5624,Great Chicken,1856 +5625,Crazy Carrots,1856 +5626,Shrill Beets,1856 +5627,Robust Chicken,1857 +5628,Scary Pretzel,1857 +5629,Slippery Mushrooms,1857 +5630,Tart Fish,1857 +5631,Grieving Honey,1857 +5632,Thundering Burrito,1858 +5633,Wicked Honey,1858 +5634,Fierce Carrots,1858 +5635,Prickly Apples,1858 +5636,Strange Fish,1858 +5637,Depressed Burrito,1859 +5638,Nice Mushrooms,1859 +5639,Friendly Fruit,1859 +5640,Nervous Burrito,1859 +5641,Silky Mushrooms,1859 +5642,Pretty Fish,1860 +5643,Hot Apples,1860 +5644,Cuddly Fish,1861 +5645,Boiling Honey,1861 +5646,Righteous Fruit,1862 +5647,R Greens,1863 +5648,Smiling Beef,1863 +5649,Fierce Beets,1863 +5650,High Beets,1863 +5651,Repulsive Burrito,1864 +5652,Amused Carrots,1864 +5653,Purring Bread,1864 +5654,Few Honey,1865 +5655,Jolly Burrito,1865 +5656,Many Chicken,1865 +5657,Splendid Pretzel,1865 +5658,Juicy Burrito,1865 +5659,Lucky Bread,1866 +5660,Bland Beets,1866 +5661,Tight Honey,1866 +5662,Angry Greens,1866 +5663,Melodic Mushrooms,1867 +5664,Angry Bread,1867 +5665,Hissing Burrito,1867 +5666,Jittery Bread,1867 +5667,Homeless Pretzel,1867 +5668,Tense Bread,1868 +5669,Better Apples,1868 +5670,Wet Beef,1869 +5671,Rapid Chicken,1870 +5672,Frightened Apples,1871 +5673,Troubled Fruit,1872 +5674,Deep Burrito,1872 +5675,Spotty Pretzel,1872 +5676,Cooing Burrito,1873 +5677,Thirsty Burrito,1874 +5678,Grubby Greens,1874 +5679,Moist Honey,1874 +5680,Nosy Beef,1874 +5681,Wide Mushrooms,1875 +5682,Nutty Beets,1875 +5683,Quickest Fruit,1875 +5684,Ordinary Mushrooms,1875 +5685,Funny Mushrooms,1876 +5686,Shaggy Burrito,1876 +5687,Slippery Pretzel,1877 +5688,Skinny Honey,1878 +5689,Scrumptious Bread,1879 +5690,Jealous Bread,1879 +5691,Short Carrots,1879 +5692,Uptight Apples,1879 +5693,Dirty Burrito,1880 +5694,Chilly Beets,1880 +5695,Dangerous Beef,1880 +5696,Tired Mushrooms,1880 +5697,Stingy Greens,1881 +5698,Fast Apples,1881 +5699,Weary Chicken,1881 +5700,Cool Mushrooms,1882 +5701,Mammoth Fish,1882 +5702,Ill Fish,1882 +5703,Quickest Pretzel,1882 +5704,Selfish Fruit,1883 +5705,Sour Beets,1884 +5706,Envious Carrots,1884 +5707,Combative Fruit,1884 +5708,Dull Fish,1884 +5709,Itchy Apples,1884 +5710,Grieving Burrito,1885 +5711,Happy Bread,1885 +5712,Tiny Fish,1885 +5713,Ripe Beef,1885 +5714,Plastic Beef,1885 +5715,Annoyed Chicken,1886 +5716,Horrible Fish,1886 +5717,Envious Beets,1886 +5718,Nom nom Beets,1886 +5719,Nervous Beef,1886 +5720,Magnificent Fruit,1887 +5721,Bumpy Honey,1887 +5722,Orange Fish,1887 +5723,Wasteful Apples,1887 +5724,Funny Carrots,1888 +5725,Fair Carrots,1888 +5726,Thoughtful Burrito,1888 +5727,Dull Apples,1888 +5728,Shrill Pretzel,1889 +5729,Elated Apples,1889 +5730,Shallow Apples,1889 +5731,Chilly Honey,1889 +5732,Robust Mushrooms,1890 +5733,Agreeable Fish,1890 +5734,– Fish,1890 +5735,Troubled Carrots,1890 +5736,Victorious Honey,1890 +5737,Ripe Fish,1891 +5738,Terrible Mushrooms,1892 +5739,M Greens,1892 +5740,Grand Greens,1893 +5741,Righteous Fruit,1893 +5742,Jittery Burrito,1893 +5743,Great Mushrooms,1893 +5744,Modern Bread,1894 +5745,Weak Chicken,1894 +5746,Round Greens,1894 +5747,Tall Burrito,1895 +5748,New Beef,1895 +5749,Mighty Greens,1895 +5750,Cool Pretzel,1896 +5751,Floppy Burrito,1896 +5752,Arrogant Burrito,1896 +5753,Cuddly Beef,1896 +5754,Large Honey,1896 +5755,Bland Carrots,1897 +5756,Nosy Beets,1897 +5757,Mute Fish,1898 +5758,Screeching Fish,1898 +5759,Arrogant Apples,1898 +5760,Nutty Beef,1898 +5761,Envious Greens,1899 +5762,Victorious Bread,1899 +5763,Nervous Beef,1899 +5764,Blue Bread,1899 +5765,Fresh Carrots,1899 +5766,Silent Chicken,1900 +5767,Great Beef,1901 +5768,Numerous Fish,1902 +5769,Rainy Fish,1902 +5770,Sharp Fruit,1902 +5771,Brief Chicken,1903 +5772,Few Carrots,1904 +5773,Disgusted Mushrooms,1904 +5774,Ratty Apples,1905 +5775,Nutty Greens,1905 +5776,Ashamed Fruit,1905 +5777,Relieved Chicken,1905 +5778,High Beef,1906 +5779,Melodic Apples,1906 +5780,Lonely Burrito,1906 +5781,Tasteless Burrito,1906 +5782,Quiet Bread,1907 +5783,Evil Apples,1908 +5784,Cooing Burrito,1909 +5785,Proud Fish,1909 +5786,Calm Pretzel,1909 +5787,Stale Honey,1910 +5788,Uneven Greens,1910 +5789,Brave Pretzel,1911 +5790,Loud Fruit,1911 +5791,Ill Greens,1911 +5792,Green Carrots,1912 +5793,Relieved Beets,1913 +5794,Juicy Apples,1913 +5795,Relieved Greens,1913 +5796,Cuddly Apples,1913 +5797,Obedient Fish,1914 +5798,Arrogant Beef,1914 +5799,Incredible Fish,1914 +5800,Ripe Chicken,1915 +5801,Swift Chicken,1915 +5802,Small Apples,1915 +5803,Resonant Mushrooms,1916 +5804,Fierce Fish,1916 +5805,Breezy Carrots,1916 +5806,Purple Beef,1916 +5807,Resonant Beef,1916 +5808,Moaning Beets,1917 +5809,Rainy Beets,1918 +5810,Nutty Pretzel,1918 +5811,Vast Apples,1918 +5812,Rapid Honey,1918 +5813,Robust Burrito,1919 +5814,Mammoth Beets,1919 +5815,Outrageous Chicken,1919 +5816,Jittery Mushrooms,1919 +5817,Scrawny Chicken,1919 +5818,Ugly Beef,1920 +5819,Sore Pretzel,1920 +5820,Silly Apples,1921 +5821,Juicy Honey,1921 +5822,Deafening Apples,1921 +5823,Brave Greens,1921 +5824,Melodic Fish,1922 +5825,Silly Fruit,1922 +5826,Large Greens,1923 +5827,Light Beets,1924 +5828,Uptight Fruit,1925 +5829,Small Fish,1925 +5830,Angry Pretzel,1925 +5831,Boiling Pretzel,1925 +5832,Rotten Chicken,1925 +5833,Ancient Honey,1926 +5834,Gentle Chicken,1926 +5835,Energetic Honey,1927 +5836,Jolly Chicken,1927 +5837,Fantastic Fish,1928 +5838,Agreeable Greens,1928 +5839,Jumpin' Honey,1928 +5840,Energetic Burrito,1928 +5841,Crazy Chicken,1929 +5842,Energetic Beef,1929 +5843,Defeated Beets,1930 +5844,Broad Mushrooms,1930 +5845,Proud Beef,1930 +5846,Hollow Burrito,1930 +5847,Dangerous Beef,1931 +5848,Moaning Apples,1931 +5849,Charming Honey,1931 +5850,Loose Beef,1931 +5851,Horrible Honey,1932 +5852,Slippery Beets,1932 +5853,Green Fruit,1932 +5854,Salty Fruit,1933 +5855,Yellow Honey,1933 +5856,Bitter Beets,1933 +5857,Successful Fruit,1933 +5858,Handsome Beets,1934 +5859,Magnificent Honey,1935 +5860,Empty Honey,1935 +5861,Wet Greens,1935 +5862,Testy Carrots,1936 +5863,Rough Pretzel,1936 +5864,Charming Apples,1936 +5865,Flat Apples,1936 +5866,Immense Fish,1936 +5867,Fast Fish,1937 +5868,Tender Fish,1937 +5869,Low Burrito,1937 +5870,Lazy Apples,1937 +5871,Scattered Greens,1937 +5872,Roasted Honey,1938 +5873,Strange Bread,1938 +5874,Empty Honey,1939 +5875,Red Pretzel,1939 +5876,Enthusiastic Beets,1939 +5877,Energetic Pretzel,1939 +5878,Huge Beef,1940 +5879,Cheerful Burrito,1940 +5880,Roasted Fruit,1940 +5881,Testy Apples,1940 +5882,Fine Mushrooms,1941 +5883,Spicy Beets,1942 +5884,Big Mushrooms,1942 +5885,Smooth Pretzel,1943 +5886,Itchy Chicken,1943 +5887,Funny Chicken,1944 +5888,Short Carrots,1944 +5889,Delicious Chicken,1944 +5890,Ancient Burrito,1944 +5891,Flat Greens,1945 +5892,Roasted Honey,1945 +5893,Upset Chicken,1945 +5894,Cool Beets,1945 +5895,Frail Pretzel,1946 +5896,Cooperative Greens,1946 +5897,Beautiful Mushrooms,1946 +5898,Shivering Bread,1946 +5899,Stingy Pretzel,1946 +5900,Spicy Chicken,1947 +5901,Fresh Pretzel,1947 +5902,Wet Honey,1948 +5903,Worried Honey,1948 +5904,Scrawny Mushrooms,1948 +5905,Rotten Pretzel,1948 +5906,Broken Greens,1949 +5907,Nom nom Bread,1949 +5908,Magnificent Fish,1949 +5909,Prickly Beets,1949 +5910,Tame Bread,1950 +5911,Cheesy Honey,1950 +5912,Thoughtless Apples,1950 +5913,Little Burrito,1951 +5914,Stingy Fish,1951 +5915,Uptight Mushrooms,1951 +5916,Frantic Pretzel,1952 +5917,Wonderful Fruit,1952 +5918,Colossal Beef,1952 +5919,Lovely Greens,1952 +5920,Evil Fish,1952 +5921,Delightful Mushrooms,1953 +5922,Black Honey,1953 +5923,Naughty Greens,1953 +5924,Boom-town Greens,1953 +5925,Wide Apples,1954 +5926,Awful Beets,1954 +5927,Husky Chicken,1954 +5928,Slow Fruit,1954 +5929,Pleasant Fruit,1955 +5930,Slippery Pretzel,1955 +5931,Friendly Fruit,1955 +5932,Spicy Pretzel,1955 +5933,Depressed Chicken,1956 +5934,Fresh Beef,1956 +5935,Arrogant Beets,1956 +5936,Wide Burrito,1956 +5937,Straight Apples,1956 +5938,Ancient Beef,1957 +5939,Great Beets,1957 +5940,Enthusiastic Greens,1957 +5941,Stale Apples,1957 +5942,Anxious Fish,1958 +5943,Afraid Apples,1958 +5944,Tiny Chicken,1958 +5945,Moaning Pretzel,1959 +5946,Smooth Carrots,1959 +5947,Naughty Pretzel,1959 +5948,Happy Beef,1960 +5949,Fresh Fish,1960 +5950,Nom nom Greens,1961 +5951,High Carrots,1961 +5952,Broken Burrito,1961 +5953,R Beef,1962 +5954,Dry Beets,1962 +5955,Lazy Greens,1962 +5956,Grumpy Fruit,1962 +5957,Moist Apples,1962 +5958,Shivering Pretzel,1963 +5959,Afraid Beets,1963 +5960,Scrumptious Bread,1963 +5961,Ugly Honey,1964 +5962,Black Fruit,1964 +5963,Fair Honey,1965 +5964,Scary Chicken,1965 +5965,Homeless Beets,1965 +5966,Salty Pretzel,1965 +5967,Soft Beef,1965 +5968,Gigantic Beef,1966 +5969,Breezy Mushrooms,1966 +5970,Envious Apples,1966 +5971,Chilly Honey,1966 +5972,R Bread,1966 +5973,Voiceless Honey,1967 +5974,Whispering Fruit,1967 +5975,Wide Fruit,1967 +5976,Modern Honey,1967 +5977,Nutty Burrito,1967 +5978,Steep Carrots,1968 +5979,Old Burrito,1968 +5980,Pretty Pretzel,1969 +5981,Vast Burrito,1969 +5982,Chilly Bread,1969 +5983,Tricky Beets,1969 +5984,Strange Greens,1969 +5985,Mammoth Greens,1970 +5986,Great Beef,1970 +5987,Scary Greens,1971 +5988,Cheesy Beets,1971 +5989,Great Pretzel,1972 +5990,Tired Beets,1972 +5991,Annoyed Burrito,1972 +5992,Rough Fruit,1972 +5993,Boring Honey,1973 +5994,Healthy Fish,1974 +5995,Shivering Beets,1974 +5996,Pleasant Beef,1974 +5997,Fluffy Mushrooms,1975 +5998,Sticky Honey,1976 +5999,Breezy Greens,1977 +6000,Jumpin' Pretzel,1977 +6001,Vast Mushrooms,1977 +6002,Colossal Beets,1978 +6003,Boiling Fish,1978 +6004,Obedient Fruit,1979 +6005,S Bread,1979 +6006,Wet Honey,1979 +6007,Tame Mushrooms,1979 +6008,Moaning Beets,1979 +6009,Splendid Apples,1980 +6010,Rotten Burrito,1980 +6011,Nosy Mushrooms,1980 +6012,Tight Fruit,1980 +6013,Wide-eyed Apples,1981 +6014,Yummy Apples,1981 +6015,Selfish Pretzel,1981 +6016,Stale Fruit,1982 +6017,Tender Beets,1982 +6018,Quick Burrito,1983 +6019,Fat Apples,1983 +6020,Calm Carrots,1983 +6021,Silent Fruit,1983 +6022,Purple Bread,1983 +6023,Pleasant Bread,1984 +6024,Huge Chicken,1984 +6025,Vast Burrito,1985 +6026,Hot Carrots,1985 +6027,Damp Honey,1986 +6028,Magnificent Honey,1986 +6029,Watery Beets,1986 +6030,Skinny Fruit,1986 +6031,Numerous Chicken,1986 +6032,Naughty Fish,1987 +6033,Bright Beets,1987 +6034,Watery Fish,1987 +6035,Defeated Chicken,1987 +6036,Melodic Fruit,1988 +6037,Greasy Fruit,1988 +6038,Jumpin' Burrito,1988 +6039,Nice Pretzel,1988 +6040,Short Fish,1989 +6041,Pretty Mushrooms,1989 +6042,Orange Pretzel,1990 +6043,Narrow Mushrooms,1990 +6044,Hilarious Burrito,1990 +6045,Wasteful Chicken,1991 +6046,Wet Honey,1991 +6047,Ripe Bread,1991 +6048,Heavy Greens,1992 +6049,Uptight Fruit,1993 +6050,Quiet Burrito,1993 +6051,Broad Mushrooms,1993 +6052,Bland Beef,1993 +6053,Terrible Beef,1993 +6054,Immense Pretzel,1994 +6055,Jolly Pretzel,1994 +6056,Slow Beef,1995 +6057,Boiling Pretzel,1995 +6058,Thoughtful Pretzel,1995 +6059,Square Beets,1995 +6060,Robust Beef,1996 +6061,Pleasant Fish,1996 +6062,Afraid Apples,1996 +6063,Handsome Honey,1997 +6064,Obnoxious Bread,1997 +6065,Arrogant Beets,1997 +6066,Immense Apples,1998 +6067,Tight Apples,1998 +6068,Dry Honey,1998 +6069,Flaky Beets,1998 +6070,Puny Greens,1998 +6071,Stingy Chicken,1999 +6072,Dirty Burrito,1999 +6073,Thoughtful Fruit,1999 +6074,Skinny Chicken,1999 +6075,Squealing Pretzel,1999 +6076,Petite Chicken,2000 +6077,Strange Beef,2001 +6078,Jittery Apples,2001 +6079,Young Apples,2001 +6080,Tender Pretzel,2002 +6081,Sharp Apples,2002 +6082,Orange Carrots,2002 +6083,Nosy Fruit,2002 +6084,Shaky Apples,2002 +6085,Massive Burrito,2003 +6086,Jittery Honey,2004 +6087,Steep Chicken,2004 +6088,Old Beets,2004 +6089,Spicy Chicken,2004 +6090,Watery Bread,2005 +6091,Strange Honey,2005 +6092,Boring Fish,2006 +6093,Rotten Beets,2006 +6094,Awful Burrito,2006 +6095,Miniature Mushrooms,2006 +6096,Cheerful Greens,2006 +6097,Great Honey,2007 +6098,Annoyed Beef,2007 +6099,Moist Beets,2007 +6100,Tasty Chicken,2007 +6101,Wide Bread,2007 +6102,Savory Beef,2008 +6103,Rare Fish,2008 +6104,Deep Fish,2008 +6105,Silky Apples,2009 +6106,Frightened Bread,2009 +6107,Nosy Mushrooms,2009 +6108,Colossal Bread,2010 +6109,Curly Mushrooms,2010 +6110,Moist Fruit,2010 +6111,Testy Pretzel,2010 +6112,Flat Greens,2011 +6113,Combative Beef,2011 +6114,Bumpy Greens,2011 +6115,Thundering Apples,2012 +6116,Plain Chicken,2012 +6117,Dry Honey,2012 +6118,Great Pretzel,2013 +6119,Slimy Bread,2013 +6120,Clumsy Pretzel,2013 +6121,Great Beets,2013 +6122,Roasted Fruit,2013 +6123,Tender Beef,2014 +6124,Funny Greens,2014 +6125,Floppy Mushrooms,2014 +6126,Obedient Chicken,2014 +6127,Long Fruit,2015 +6128,Fuzzy Chicken,2015 +6129,Happy Greens,2016 +6130,Curved Beef,2016 +6131,– Greens,2016 +6132,Disgusted Fruit,2016 +6133,Great Mushrooms,2016 +6134,Ordinary Fruit,2017 +6135,Roasted Beef,2017 +6136,Scrawny Greens,2018 +6137,Dirty Apples,2018 +6138,Jealous Bread,2018 +6139,Fierce Beets,2019 +6140,Squealing Beef,2020 +6141,Gigantic Apples,2020 +6142,Ordinary Mushrooms,2020 +6143,Encouraging Apples,2020 +6144,Worried Greens,2020 +6145,Tense Apples,2021 +6146,Grubby Mushrooms,2021 +6147,Rough Mushrooms,2021 +6148,Melodic Apples,2021 +6149,Worried Burrito,2021 +6150,Raspy Bread,2022 +6151,– Fruit,2022 +6152,Damp Beets,2022 +6153,Purple Fruit,2023 +6154,Blue Beets,2023 +6155,Cuddly Bread,2024 +6156,Light Pretzel,2024 +6157,Uptight Honey,2025 +6158,Dusty Honey,2025 +6159,Gentle Fish,2025 +6160,Ugliest Burrito,2025 +6161,Good Honey,2026 +6162,Creepy Carrots,2026 +6163,Depressed Honey,2026 +6164,Shaky Beef,2026 +6165,Shrill Fish,2027 +6166,Hollow Carrots,2028 +6167,Lucky Beets,2028 +6168,Cheerful Honey,2028 +6169,Wasteful Bread,2029 +6170,Pickled Honey,2030 +6171,Good Fish,2030 +6172,Green Beets,2030 +6173,Yummy Mushrooms,2031 +6174,Plain Apples,2032 +6175,Great Chicken,2032 +6176,Fluffy Bread,2032 +6177,Ugly Mushrooms,2033 +6178,Dry Greens,2033 +6179,Quiet Carrots,2033 +6180,Heavy Bread,2034 +6181,Relieved Greens,2034 +6182,Enthusiastic Greens,2035 +6183,Jumpin' Pretzel,2036 +6184,Puny Fruit,2036 +6185,Ugliest Burrito,2037 +6186,Excited Apples,2038 +6187,Strange Carrots,2038 +6188,Worried Honey,2038 +6189,Cuddly Greens,2039 +6190,Few Carrots,2039 +6191,Exuberant Bread,2039 +6192,Deafening Carrots,2039 +6193,Ancient Greens,2039 +6194,Average Beets,2040 +6195,Amused Honey,2040 +6196,Fast Bread,2041 +6197,Damp Burrito,2041 +6198,Juicy Beef,2041 +6199,Annoyed Beef,2041 +6200,Bad Beef,2042 +6201,Boiling Chicken,2042 +6202,Kickin' Pretzel,2042 +6203,Magnificent Beets,2042 +6204,Rare Chicken,2043 +6205,Cooperative Fruit,2044 +6206,Exuberant Fish,2045 +6207,Puny Fruit,2045 +6208,Mammoth Burrito,2045 +6209,Late Fruit,2045 +6210,Cooing Burrito,2045 +6211,Defiant Beets,2046 +6212,Fresh Greens,2046 +6213,Dizzy Apples,2046 +6214,Pleasant Beets,2047 +6215,Rapid Burrito,2047 +6216,Boring Burrito,2047 +6217,Angry Greens,2047 +6218,Testy Fruit,2047 +6219,Tired Bread,2048 +6220,Tense Beef,2048 +6221,Grieving Burrito,2049 +6222,Curly Bread,2049 +6223,Lucky Bread,2049 +6224,Broad Burrito,2049 +6225,Wicked Beef,2049 +6226,Wonderful Beets,2050 +6227,Vast Fish,2050 +6228,Robust Fish,2050 +6229,Colossal Apples,2051 +6230,Quiet Beets,2051 +6231,Yellow Fish,2051 +6232,Disgusted Fish,2051 +6233,Quickest Pretzel,2051 +6234,Big Apples,2052 +6235,Fierce Greens,2052 +6236,Vast Bread,2053 +6237,Zany Burrito,2053 +6238,Gigantic Beef,2053 +6239,Ugliest Beef,2053 +6240,Disgusted Carrots,2054 +6241,Melodic Honey,2054 +6242,Red Carrots,2055 +6243,Silent Chicken,2055 +6244,Empty Beef,2056 +6245,Boom-town Chicken,2056 +6246,Watery Bread,2056 +6247,Broad Mushrooms,2056 +6248,Jumpin' Greens,2056 +6249,Purring Chicken,2057 +6250,Fluffy Chicken,2058 +6251,Upset Apples,2058 +6252,Fantastic Chicken,2058 +6253,Harsh Bread,2058 +6254,Stale Mushrooms,2058 +6255,Magnificent Chicken,2059 +6256,Steady Chicken,2059 +6257,Proud Beets,2060 +6258,Shaky Beef,2060 +6259,Prickly Bread,2061 +6260,Terrible Bread,2061 +6261,Fluffy Chicken,2061 +6262,Outrageous Fruit,2061 +6263,Husky Honey,2061 +6264,Colossal Beets,2062 +6265,Quickest Apples,2062 +6266,Greasy Greens,2063 +6267,Stale Chicken,2063 +6268,Horrible Beef,2063 +6269,Chilly Honey,2063 +6270,Watery Beets,2064 +6271,Petite Burrito,2065 +6272,Small Burrito,2065 +6273,Strange Pretzel,2066 +6274,Sticky Chicken,2066 +6275,Precious Greens,2066 +6276,Angry Greens,2067 +6277,Arrogant Chicken,2067 +6278,Nom nom Beets,2067 +6279,Shivering Pretzel,2067 +6280,Quickest Pretzel,2068 +6281,Puny Pretzel,2068 +6282,Large Beef,2068 +6283,Crazy Apples,2068 +6284,Tender Burrito,2068 +6285,Arrogant Chicken,2069 +6286,Nice Beef,2069 +6287,Late Beets,2070 +6288,Strong Honey,2070 +6289,Few Honey,2071 +6290,Thirsty Pretzel,2072 +6291,High Fish,2072 +6292,Tricky Chicken,2072 +6293,Zany Beets,2072 +6294,Bitter Fruit,2072 +6295,Savory Honey,2073 +6296,Black Burrito,2073 +6297,Uptight Apples,2074 +6298,Wicked Honey,2075 +6299,Thoughtless Fruit,2075 +6300,Comfortable Greens,2075 +6301,Troubled Burrito,2075 +6302,Quiet Mushrooms,2076 +6303,Scattered Burrito,2076 +6304,Healthy Bread,2076 +6305,Damp Honey,2076 +6306,Tasteless Beef,2077 +6307,Grumpy Carrots,2077 +6308,Huge Fish,2077 +6309,Ugliest Carrots,2077 +6310,Clumsy Chicken,2078 +6311,Wasteful Fruit,2078 +6312,Precious Fish,2078 +6313,Fast Beef,2079 +6314,Squealing Apples,2080 +6315,Tall Honey,2080 +6316,Sharp Fish,2081 +6317,Creepy Beef,2081 +6318,Defiant Greens,2081 +6319,Tall Pretzel,2081 +6320,Huge Chicken,2081 +6321,Defeated Chicken,2082 +6322,Pickled Carrots,2082 +6323,Rainy Beef,2083 +6324,Frantic Bread,2083 +6325,Damp Mushrooms,2083 +6326,Gorgeous Fish,2084 +6327,Sad Mushrooms,2084 +6328,Embarrassed Fruit,2084 +6329,Little Honey,2085 +6330,Jumpin' Carrots,2085 +6331,Frightened Apples,2085 +6332,Confused Greens,2086 +6333,Troubled Apples,2086 +6334,High Fruit,2086 +6335,Round Apples,2086 +6336,Sharp Greens,2086 +6337,Angry Bread,2087 +6338,Weary Beef,2087 +6339,Itchy Pretzel,2088 +6340,Encouraging Bread,2088 +6341,Vast Beef,2088 +6342,Annoyed Fruit,2088 +6343,Silky Burrito,2088 +6344,Testy Beef,2089 +6345,Annoyed Apples,2089 +6346,Tense Carrots,2089 +6347,Salty Beets,2089 +6348,Thirsty Carrots,2089 +6349,Nasty Chicken,2090 +6350,Victorious Fish,2090 +6351,Happy Beets,2090 +6352,Old Burrito,2091 +6353,Happy Mushrooms,2091 +6354,Charming Greens,2091 +6355,Delicious Beef,2091 +6356,Flaky Beef,2091 +6357,Cooperative Beets,2092 +6358,Determined Beets,2092 +6359,Loose Bread,2093 +6360,Precious Apples,2093 +6361,Bitter Carrots,2094 +6362,M Greens,2094 +6363,Annoyed Beets,2095 +6364,Tricky Chicken,2095 +6365,Ordinary Bread,2095 +6366,Scattered Fruit,2095 +6367,Tan Chicken,2096 +6368,Perfect Mushrooms,2096 +6369,Fuzzy Beef,2096 +6370,Low Burrito,2097 +6371,Curved Beets,2097 +6372,Selfish Greens,2097 +6373,Helpful Honey,2097 +6374,Savory Carrots,2097 +6375,Smiling Apples,2098 +6376,Sour Carrots,2098 +6377,Splendid Chicken,2098 +6378,Hurt Apples,2098 +6379,Kind Fish,2098 +6380,Broken Beets,2099 +6381,Petite Burrito,2099 +6382,Rough Pretzel,2099 +6383,Hushed Apples,2099 +6384,Fine Chicken,2099 +6385,Curved Pretzel,2100 +6386,Ugly Pretzel,2100 +6387,Crazy Fish,2100 +6388,Rapid Chicken,2100 +6389,Stale Beef,2100 +6390,Quickest Mushrooms,2101 +6391,Big Beets,2102 +6392,Combative Beets,2103 +6393,Ripe Apples,2103 +6394,Curly Chicken,2103 +6395,Soft Beets,2104 +6396,Scattered Beets,2104 +6397,Slow Fruit,2104 +6398,Magnificent Chicken,2105 +6399,Dusty Fruit,2105 +6400,Massive Greens,2105 +6401,Dry Greens,2106 +6402,Curved Beets,2106 +6403,Fuzzy Greens,2106 +6404,Hurt Carrots,2107 +6405,Strange Chicken,2107 +6406,Skinny Chicken,2108 +6407,Stale Honey,2108 +6408,Envious Apples,2108 +6409,Sad Carrots,2108 +6410,Quaint Beets,2108 +6411,Faithful Bread,2109 +6412,Plain Bread,2109 +6413,Thundering Greens,2109 +6414,Dull Pretzel,2109 +6415,Hungry Bread,2110 +6416,Comfortable Beef,2110 +6417,Dizzy Apples,2110 +6418,Broken Mushrooms,2110 +6419,Numerous Beets,2111 +6420,Immense Bread,2111 +6421,Brief Apples,2112 +6422,Fierce Beef,2113 +6423,Wonderful Carrots,2113 +6424,Annoyed Honey,2113 +6425,Great Mushrooms,2113 +6426,Grand Apples,2113 +6427,Deep Apples,2114 +6428,Outrageous Carrots,2114 +6429,Embarrassed Beets,2114 +6430,Dull Honey,2115 +6431,Quickest Chicken,2115 +6432,– Greens,2116 +6433,Prickly Beets,2116 +6434,Grieving Apples,2116 +6435,Tender Pretzel,2116 +6436,Incredible Mushrooms,2116 +6437,Ordinary Beets,2117 +6438,Narrow Apples,2117 +6439,Helpless Honey,2118 +6440,Tart Carrots,2118 +6441,Deep Carrots,2118 +6442,Strange Greens,2118 +6443,Bright Burrito,2119 +6444,Icy Chicken,2119 +6445,Cuddly Carrots,2120 +6446,Little Greens,2120 +6447,Courageous Fruit,2120 +6448,Exuberant Fish,2120 +6449,Strange Beets,2120 +6450,Cuddly Honey,2121 +6451,S Burrito,2121 +6452,Arrogant Fruit,2121 +6453,Thoughtless Greens,2122 +6454,Sore Greens,2123 +6455,Brave Mushrooms,2123 +6456,Annoyed Mushrooms,2123 +6457,Curly Fish,2123 +6458,Happy Burrito,2124 +6459,Thoughtful Chicken,2124 +6460,Elated Chicken,2124 +6461,Smiling Greens,2124 +6462,Smiling Apples,2124 +6463,Precious Fruit,2125 +6464,– Pretzel,2125 +6465,Tricky Bread,2125 +6466,Juicy Chicken,2125 +6467,High Mushrooms,2126 +6468,Tender Greens,2126 +6469,Thundering Carrots,2126 +6470,Wasteful Chicken,2127 +6471,Stale Beets,2127 +6472,Upset Pretzel,2127 +6473,Colossal Burrito,2127 +6474,Fluffy Apples,2127 +6475,Kind Mushrooms,2128 +6476,Wide Beets,2128 +6477,High Pretzel,2128 +6478,Little Beets,2128 +6479,Eager Chicken,2128 +6480,Thoughtful Greens,2129 +6481,Early Honey,2129 +6482,Tart Burrito,2129 +6483,Old Fruit,2130 +6484,Jealous Fruit,2130 +6485,Agreeable Fruit,2130 +6486,Boring Mushrooms,2130 +6487,R Mushrooms,2131 +6488,Upset Carrots,2131 +6489,Wooden Mushrooms,2131 +6490,Soft Honey,2131 +6491,Foolish Mushrooms,2132 +6492,Fantastic Apples,2132 +6493,Obnoxious Bread,2132 +6494,Sour Fish,2132 +6495,Prickly Burrito,2132 +6496,Floppy Beef,2133 +6497,Salty Apples,2133 +6498,Sweet Beef,2133 +6499,Anxious Carrots,2133 +6500,Incredible Chicken,2133 +6501,Relieved Beef,2134 +6502,Wide-eyed Greens,2134 +6503,Perfect Chicken,2134 +6504,Empty Chicken,2134 +6505,Late Fish,2134 +6506,Friendly Beets,2135 +6507,Tricky Chicken,2135 +6508,Greasy Beets,2136 +6509,Colossal Burrito,2136 +6510,Smooth Bread,2136 +6511,Tasteless Fruit,2137 +6512,Quaint Honey,2137 +6513,Disgusted Burrito,2137 +6514,Weak Mushrooms,2137 +6515,Stale Mushrooms,2138 +6516,Friendly Fish,2138 +6517,Jittery Carrots,2139 +6518,Splendid Fish,2139 +6519,Rainy Beef,2139 +6520,Pleasant Bread,2140 +6521,Testy Beets,2140 +6522,Hurt Apples,2141 +6523,Defiant Apples,2141 +6524,R Mushrooms,2141 +6525,Purring Greens,2141 +6526,Lonely Bread,2142 +6527,Scrumptious Apples,2143 +6528,Fat Burrito,2143 +6529,Robust Pretzel,2144 +6530,Skinny Carrots,2144 +6531,Fresh Fish,2145 +6532,Amused Burrito,2146 +6533,Curved Apples,2147 +6534,Breezy Burrito,2148 +6535,Witty Honey,2148 +6536,Purring Apples,2148 +6537,Flaky Apples,2149 +6538,Smiling Pretzel,2149 +6539,Pretty Pretzel,2150 +6540,Flaky Burrito,2150 +6541,Melodic Mushrooms,2150 +6542,Incredible Greens,2150 +6543,Great Carrots,2150 +6544,Melodic Carrots,2151 +6545,Lovely Apples,2151 +6546,Big Beets,2151 +6547,Yummy Chicken,2152 +6548,Wicked Beef,2152 +6549,Jumpin' Carrots,2152 +6550,Sharp Burrito,2152 +6551,Quick Carrots,2152 +6552,Huge Apples,2153 +6553,Greasy Pretzel,2153 +6554,Stingy Apples,2153 +6555,Faithful Greens,2154 +6556,Loud Fruit,2154 +6557,Handsome Carrots,2154 +6558,Splendid Carrots,2154 +6559,Dangerous Fruit,2154 +6560,Righteous Apples,2155 +6561,M Fruit,2155 +6562,Weak Greens,2155 +6563,Fierce Honey,2155 +6564,Many Honey,2156 +6565,Upset Greens,2156 +6566,Healthy Beef,2156 +6567,Defiant Pretzel,2156 +6568,Frightened Beef,2157 +6569,Elated Beets,2157 +6570,Combative Burrito,2157 +6571,Smooth Greens,2157 +6572,Thundering Bread,2157 +6573,Obnoxious Mushrooms,2158 +6574,Agreeable Fruit,2158 +6575,Round Greens,2158 +6576,Plain Chicken,2158 +6577,Harsh Carrots,2159 +6578,Exuberant Beef,2160 +6579,Silent Beef,2160 +6580,Thoughtful Bread,2160 +6581,Fuzzy Beef,2161 +6582,Petite Honey,2161 +6583,Troubled Fruit,2161 +6584,Homeless Burrito,2161 +6585,Juicy Beef,2162 +6586,Jealous Beef,2162 +6587,Troubled Burrito,2162 +6588,Better Apples,2162 +6589,Lucky Greens,2163 +6590,Spicy Apples,2164 +6591,Tricky Beef,2164 +6592,Hilarious Beef,2164 +6593,Yellow Beets,2164 +6594,Cruel Pretzel,2164 +6595,Spicy Greens,2165 +6596,Spotty Carrots,2165 +6597,Perfect Fruit,2165 +6598,Mysterious Fruit,2165 +6599,Fresh Apples,2166 +6600,New Beets,2167 +6601,Icy Beef,2167 +6602,Tough Chicken,2168 +6603,Quickest Chicken,2169 +6604,Proud Fish,2169 +6605,Large Burrito,2169 +6606,Repulsive Greens,2169 +6607,Ordinary Fruit,2169 +6608,Narrow Apples,2170 +6609,M Apples,2170 +6610,Husky Mushrooms,2171 +6611,Nervous Pretzel,2171 +6612,Frightened Fruit,2171 +6613,Uneven Bread,2172 +6614,Pretty Beets,2172 +6615,R Greens,2173 +6616,Hungry Carrots,2173 +6617,Disturbed Carrots,2173 +6618,Scrumptious Bread,2173 +6619,Rare Honey,2173 +6620,Low Apples,2174 +6621,Righteous Burrito,2174 +6622,Evil Chicken,2174 +6623,Tender Beets,2174 +6624,Late Pretzel,2174 +6625,Thundering Greens,2175 +6626,Greasy Burrito,2175 +6627,Nasty Honey,2176 +6628,Huge Mushrooms,2176 +6629,Large Mushrooms,2176 +6630,Steep Beets,2177 +6631,Early Pretzel,2178 +6632,Tall Apples,2178 +6633,Foolish Burrito,2179 +6634,Moist Beef,2180 +6635,Black Apples,2180 +6636,Encouraging Honey,2181 +6637,Shaky Honey,2181 +6638,Fuzzy Greens,2181 +6639,Ugliest Burrito,2181 +6640,Spicy Mushrooms,2182 +6641,Bumpy Carrots,2183 +6642,– Burrito,2184 +6643,Grieving Beets,2185 +6644,Slippery Carrots,2186 +6645,Dry Burrito,2186 +6646,Plain Fish,2187 +6647,Flat Pretzel,2187 +6648,Combative Beets,2187 +6649,Fuzzy Bread,2188 +6650,Scattered Apples,2188 +6651,Strange Fish,2189 +6652,Tired Burrito,2189 +6653,Green Chicken,2189 +6654,Mysterious Fish,2189 +6655,Ill Burrito,2189 +6656,Jolly Fruit,2190 +6657,Stale Fish,2190 +6658,Repulsive Fruit,2190 +6659,Better Honey,2190 +6660,Hungry Pretzel,2191 +6661,Black Chicken,2191 +6662,Hollow Honey,2191 +6663,Foolish Bread,2191 +6664,Shrill Fish,2191 +6665,Selfish Beets,2192 +6666,Fluffy Beets,2192 +6667,Terrible Carrots,2192 +6668,Courageous Chicken,2193 +6669,Few Mushrooms,2193 +6670,Breezy Beets,2193 +6671,Smiling Greens,2193 +6672,Nice Carrots,2193 +6673,Troubled Apples,2194 +6674,Fuzzy Fish,2195 +6675,Raspy Apples,2195 +6676,Agreeable Beef,2195 +6677,Tall Apples,2195 +6678,Petite Pretzel,2195 +6679,Pickled Bread,2196 +6680,Proud Chicken,2196 +6681,Horrible Carrots,2196 +6682,Faithful Chicken,2197 +6683,Harsh Fruit,2197 +6684,Heavy Honey,2197 +6685,Numerous Beef,2197 +6686,Icy Honey,2197 +6687,Dizzy Beets,2198 +6688,R Mushrooms,2198 +6689,Eager Pretzel,2198 +6690,Many Fruit,2198 +6691,Silly Pretzel,2199 +6692,Great Beef,2199 +6693,Melodic Greens,2200 +6694,Colossal Burrito,2200 +6695,Fierce Carrots,2200 +6696,Gigantic Carrots,2200 +6697,Awful Beef,2200 +6698,Wicked Greens,2201 +6699,Ordinary Carrots,2201 +6700,Terrible Mushrooms,2201 +6701,Yellow Apples,2202 +6702,Colossal Mushrooms,2202 +6703,Zany Honey,2202 +6704,Boom-town Burrito,2202 +6705,Eager Greens,2202 +6706,Rotten Beets,2203 +6707,Ripe Bread,2203 +6708,Lovely Bread,2204 +6709,Nutty Mushrooms,2204 +6710,Floppy Mushrooms,2204 +6711,Combative Apples,2204 +6712,Brave Honey,2205 +6713,M Apples,2205 +6714,Melted Pretzel,2206 +6715,Lonely Pretzel,2206 +6716,Mammoth Apples,2206 +6717,Roasted Pretzel,2207 +6718,Frightened Burrito,2207 +6719,Foolish Pretzel,2208 +6720,Delicious Beef,2208 +6721,Stale Greens,2208 +6722,Annoyed Honey,2208 +6723,Uptight Mushrooms,2208 +6724,Perfect Chicken,2209 +6725,Ordinary Apples,2209 +6726,Lonely Greens,2209 +6727,Boiling Pretzel,2210 +6728,Eager Beets,2211 +6729,Good Beets,2212 +6730,Long Mushrooms,2212 +6731,Watery Greens,2212 +6732,Wicked Burrito,2213 +6733,Wooden Beets,2214 +6734,Dry Carrots,2214 +6735,Testy Chicken,2214 +6736,Ill Apples,2214 +6737,Panicky Carrots,2215 +6738,Fat Fish,2215 +6739,Quaint Honey,2216 +6740,S Burrito,2216 +6741,Fluffy Burrito,2216 +6742,Screeching Apples,2216 +6743,Fat Honey,2216 +6744,Moaning Mushrooms,2217 +6745,Voiceless Fruit,2217 +6746,Big Chicken,2217 +6747,Gorgeous Greens,2217 +6748,Frightened Fish,2218 +6749,Faint Greens,2219 +6750,Disturbed Greens,2219 +6751,Exuberant Carrots,2219 +6752,Squealing Burrito,2219 +6753,R Carrots,2220 +6754,Striped Honey,2220 +6755,Quaint Beef,2220 +6756,Vivacious Fruit,2220 +6757,Perfect Carrots,2220 +6758,Annoyed Carrots,2221 +6759,Steady Apples,2221 +6760,Loose Fish,2221 +6761,Big Bread,2222 +6762,Frightened Fruit,2222 +6763,High Beets,2222 +6764,Tart Chicken,2223 +6765,Resonant Burrito,2223 +6766,Incredible Greens,2223 +6767,Fast Mushrooms,2223 +6768,– Burrito,2224 +6769,Ugliest Pretzel,2224 +6770,Flaky Carrots,2225 +6771,Faint Apples,2226 +6772,Jolly Greens,2226 +6773,Vivacious Greens,2226 +6774,Fluffy Beets,2226 +6775,Damp Honey,2227 +6776,Fluffy Carrots,2227 +6777,Comfortable Mushrooms,2228 +6778,Brief Bread,2228 +6779,Rough Fish,2228 +6780,Light Fish,2228 +6781,Savory Burrito,2228 +6782,Thoughtful Fish,2229 +6783,Spotty Beets,2229 +6784,Ripe Carrots,2230 +6785,Sore Beef,2231 +6786,Jolly Fish,2231 +6787,Courageous Fish,2231 +6788,Colossal Apples,2232 +6789,Angry Apples,2233 +6790,Weary Bread,2233 +6791,Cheesy Carrots,2234 +6792,Determined Fish,2234 +6793,Determined Beef,2235 +6794,Envious Chicken,2235 +6795,Screeching Mushrooms,2235 +6796,Thoughtless Beef,2236 +6797,Slow Fish,2237 +6798,Vivacious Bread,2237 +6799,Proud Honey,2237 +6800,Lonely Bread,2238 +6801,Big Fish,2238 +6802,Happy Carrots,2239 +6803,Lively Apples,2239 +6804,Gigantic Apples,2239 +6805,Greasy Beets,2239 +6806,Tender Beef,2240 +6807,Quaint Fruit,2240 +6808,Energetic Beets,2240 +6809,Spicy Beets,2241 +6810,Shaky Fruit,2241 +6811,Raspy Honey,2242 +6812,Rough Bread,2242 +6813,Sad Pretzel,2242 +6814,Selfish Fish,2242 +6815,Watery Carrots,2243 +6816,Cold Beef,2244 +6817,Quiet Fish,2244 +6818,Agreeable Pretzel,2245 +6819,Hard Carrots,2245 +6820,Large Fruit,2246 +6821,Plain Fish,2246 +6822,Hot Bread,2246 +6823,Jumpin' Apples,2246 +6824,Agreeable Chicken,2246 +6825,Wide Carrots,2247 +6826,Selfish Apples,2247 +6827,Heavy Carrots,2247 +6828,Uptight Fruit,2248 +6829,Tasteless Chicken,2248 +6830,Selfish Chicken,2249 +6831,Hollow Beets,2249 +6832,Clumsy Carrots,2249 +6833,Green Beef,2249 +6834,Scary Carrots,2249 +6835,Melted Chicken,2250 +6836,Magnificent Pretzel,2250 +6837,Obedient Bread,2250 +6838,Testy Beets,2250 +6839,Sad Carrots,2250 +6840,Straight Mushrooms,2251 +6841,Courageous Beef,2251 +6842,Huge Mushrooms,2251 +6843,S Chicken,2251 +6844,Pretty Carrots,2251 +6845,Quickest Honey,2252 +6846,Scary Beets,2252 +6847,Edible Greens,2253 +6848,Odd Pretzel,2254 +6849,Enthusiastic Pretzel,2254 +6850,Lonely Burrito,2254 +6851,Yellow Burrito,2254 +6852,Miniature Burrito,2254 +6853,Embarrassed Honey,2255 +6854,Blue Greens,2256 +6855,Defiant Honey,2257 +6856,– Carrots,2258 +6857,Sticky Burrito,2258 +6858,Grumpy Honey,2258 +6859,– Fruit,2258 +6860,Testy Beef,2259 +6861,Lazy Greens,2259 +6862,Uneven Mushrooms,2259 +6863,Sour Fish,2259 +6864,Tart Fruit,2259 +6865,Voiceless Chicken,2260 +6866,Helpless Mushrooms,2260 +6867,Blue Fish,2261 +6868,Dull Carrots,2261 +6869,Fuzzy Burrito,2261 +6870,Fuzzy Pretzel,2261 +6871,Watery Chicken,2261 +6872,New Pretzel,2262 +6873,Wasteful Fruit,2262 +6874,Prickly Carrots,2262 +6875,Itchy Fruit,2263 +6876,Squealing Bread,2263 +6877,Incredible Bread,2263 +6878,Crazy Apples,2263 +6879,Disturbed Chicken,2263 +6880,Calm Beets,2264 +6881,Ugliest Mushrooms,2264 +6882,Happy Carrots,2264 +6883,R Beef,2264 +6884,Resonant Apples,2265 +6885,Gorgeous Beef,2265 +6886,Tight Burrito,2266 +6887,Defeated Fruit,2266 +6888,Melted Fruit,2266 +6889,Enthusiastic Honey,2266 +6890,Tan Honey,2267 +6891,Brave Apples,2268 +6892,Shallow Apples,2268 +6893,Flat Beets,2268 +6894,Faint Fish,2269 +6895,Curly Beets,2269 +6896,Crazy Bread,2270 +6897,Quiet Bread,2271 +6898,Mute Mushrooms,2271 +6899,Narrow Apples,2271 +6900,Moist Carrots,2272 +6901,Tight Mushrooms,2272 +6902,Mammoth Honey,2272 +6903,Angry Pretzel,2272 +6904,Tricky Beets,2273 +6905,Stale Mushrooms,2273 +6906,Fluffy Pretzel,2273 +6907,Cooing Carrots,2273 +6908,Round Fruit,2273 +6909,Immense Greens,2274 +6910,Soft Bread,2275 +6911,Greasy Beets,2275 +6912,Harsh Fish,2275 +6913,Ancient Fish,2276 +6914,Charming Fish,2277 +6915,Successful Fish,2277 +6916,Eager Fish,2277 +6917,Kickin' Chicken,2277 +6918,Dull Bread,2277 +6919,Steep Chicken,2278 +6920,Salty Burrito,2278 +6921,Little Honey,2278 +6922,Purring Honey,2278 +6923,Evil Honey,2278 +6924,R Fish,2279 +6925,Exuberant Pretzel,2279 +6926,Tricky Beets,2279 +6927,Old Greens,2279 +6928,Narrow Apples,2280 +6929,Stale Chicken,2280 +6930,Lucky Pretzel,2280 +6931,Fantastic Chicken,2281 +6932,Long Carrots,2281 +6933,Wicked Chicken,2282 +6934,Ashamed Burrito,2282 +6935,Precious Chicken,2282 +6936,Chilly Apples,2282 +6937,Loud Fruit,2283 +6938,Selfish Carrots,2284 +6939,Determined Apples,2284 +6940,Boom-town Chicken,2285 +6941,Defeated Beets,2285 +6942,Shrill Beets,2285 +6943,Dirty Fruit,2286 +6944,Grand Honey,2286 +6945,Massive Pretzel,2286 +6946,Stupendous Burrito,2286 +6947,Cheerful Apples,2287 +6948,Tart Beef,2287 +6949,Disturbed Bread,2287 +6950,Broad Burrito,2288 +6951,Pretty Chicken,2288 +6952,Righteous Honey,2288 +6953,Annoyed Beets,2289 +6954,M Beef,2289 +6955,Awful Honey,2289 +6956,Odd Mushrooms,2289 +6957,Massive Fruit,2290 +6958,Fast Pretzel,2290 +6959,Silent Beef,2290 +6960,Grieving Apples,2291 +6961,Loud Chicken,2291 +6962,Selfish Greens,2291 +6963,Quiet Greens,2292 +6964,Massive Mushrooms,2292 +6965,Low Apples,2292 +6966,Selfish Greens,2292 +6967,Colossal Carrots,2293 +6968,Brave Beef,2294 +6969,Defeated Greens,2294 +6970,Rough Greens,2295 +6971,Hilarious Apples,2295 +6972,Ashamed Greens,2296 +6973,Combative Beef,2296 +6974,Quick Apples,2296 +6975,Enthusiastic Apples,2297 +6976,Harsh Fish,2297 +6977,Breezy Fish,2298 +6978,Striped Beets,2298 +6979,Empty Apples,2298 +6980,Wet Bread,2298 +6981,Slippery Fish,2298 +6982,Nervous Honey,2299 +6983,Fluffy Chicken,2300 +6984,Hollow Apples,2300 +6985,Arrogant Beef,2300 +6986,Cruel Fish,2300 +6987,Loose Burrito,2300 +6988,Awful Bread,2301 +6989,Average Pretzel,2301 +6990,Precious Bread,2301 +6991,Hissing Honey,2301 +6992,Incredible Burrito,2302 +6993,Grieving Fish,2302 +6994,Flat Apples,2302 +6995,Robust Greens,2302 +6996,Little Greens,2303 +6997,Great Beef,2303 +6998,Mighty Mushrooms,2304 +6999,Solid Fish,2304 +7000,Thirsty Carrots,2304 +7001,Empty Chicken,2305 +7002,Stale Fruit,2305 +7003,Better Beets,2305 +7004,Ugliest Apples,2306 +7005,Panicky Beets,2307 +7006,Lively Fish,2307 +7007,Anxious Fruit,2307 +7008,Stupendous Fish,2308 +7009,Tight Chicken,2308 +7010,Determined Chicken,2308 +7011,– Fruit,2308 +7012,Miniature Bread,2308 +7013,Smooth Chicken,2309 +7014,Uptight Beef,2309 +7015,Ripe Beets,2309 +7016,Wicked Apples,2309 +7017,Dangerous Mushrooms,2310 +7018,Obnoxious Fruit,2310 +7019,Icy Mushrooms,2310 +7020,Moaning Mushrooms,2310 +7021,Silly Bread,2310 +7022,Lonely Burrito,2311 +7023,Slimy Beef,2311 +7024,Hot Honey,2312 +7025,Cold Bread,2312 +7026,Purple Bread,2312 +7027,Hollow Mushrooms,2312 +7028,Moaning Mushrooms,2313 +7029,Purple Carrots,2313 +7030,Nom nom Apples,2313 +7031,Silly Mushrooms,2313 +7032,Thirsty Burrito,2314 +7033,Bumpy Beets,2315 +7034,Boring Beef,2315 +7035,Plastic Carrots,2315 +7036,Dusty Fruit,2315 +7037,Defiant Pretzel,2316 +7038,Elated Beets,2316 +7039,Stale Beef,2317 +7040,Mammoth Apples,2317 +7041,Good Pretzel,2317 +7042,Raspy Bread,2317 +7043,Cheerful Fish,2318 +7044,Mammoth Carrots,2318 +7045,Numerous Bread,2318 +7046,Early Chicken,2319 +7047,Quickest Greens,2319 +7048,Combative Fish,2319 +7049,Soft Apples,2319 +7050,Exuberant Beets,2320 +7051,Wide-eyed Burrito,2320 +7052,Cheerful Honey,2320 +7053,Giant Chicken,2320 +7054,Jittery Fish,2321 +7055,Lovely Chicken,2321 +7056,Curly Fish,2321 +7057,Empty Carrots,2321 +7058,Brave Carrots,2321 +7059,S Pretzel,2322 +7060,Square Beef,2322 +7061,Hilarious Burrito,2322 +7062,Shaggy Burrito,2322 +7063,Nervous Apples,2323 +7064,Sharp Chicken,2323 +7065,Purple Bread,2323 +7066,Hollow Pretzel,2323 +7067,Miniature Pretzel,2323 +7068,Robust Bread,2324 +7069,Annoyed Mushrooms,2324 +7070,Brief Burrito,2324 +7071,Awful Mushrooms,2324 +7072,Greasy Fruit,2325 +7073,Worried Bread,2326 +7074,Smooth Chicken,2326 +7075,Angry Burrito,2326 +7076,Loud Pretzel,2327 +7077,Whispering Fruit,2327 +7078,Lonely Fruit,2327 +7079,Shallow Beef,2328 +7080,Thirsty Apples,2328 +7081,Frightened Bread,2329 +7082,Fat Beef,2329 +7083,Tired Mushrooms,2330 +7084,Jolly Mushrooms,2330 +7085,Terrible Beef,2330 +7086,Exuberant Apples,2330 +7087,Defiant Apples,2330 +7088,Long Fruit,2331 +7089,Curved Bread,2331 +7090,Faithful Beef,2331 +7091,Weak Beef,2331 +7092,Shrill Greens,2331 +7093,Zany Greens,2332 +7094,Terrible Fish,2332 +7095,Narrow Greens,2332 +7096,Exuberant Beets,2333 +7097,Jittery Carrots,2333 +7098,Fluffy Pretzel,2333 +7099,Tender Burrito,2333 +7100,Wonderful Beef,2333 +7101,Testy Chicken,2334 +7102,Vast Carrots,2334 +7103,Itchy Honey,2334 +7104,Nasty Apples,2334 +7105,Jealous Honey,2335 +7106,Striped Pretzel,2335 +7107,Wet Fruit,2335 +7108,Outrageous Apples,2335 +7109,Tasty Beets,2335 +7110,Rare Apples,2336 +7111,Naughty Beets,2336 +7112,Breezy Beets,2337 +7113,Brave Pretzel,2337 +7114,Hollow Carrots,2338 +7115,Deafening Beets,2338 +7116,Depressed Beets,2338 +7117,Fierce Beef,2339 +7118,Stupendous Bread,2340 +7119,Red Greens,2340 +7120,Stingy Carrots,2340 +7121,Huge Carrots,2341 +7122,Obnoxious Fruit,2342 +7123,Gorgeous Pretzel,2342 +7124,Cooperative Chicken,2342 +7125,Smooth Fruit,2343 +7126,Tender Bread,2343 +7127,Worried Beef,2343 +7128,Filthy Honey,2344 +7129,Successful Greens,2344 +7130,Thoughtless Fish,2344 +7131,Amused Bread,2344 +7132,Skinny Beef,2345 +7133,Obnoxious Beef,2345 +7134,Salty Chicken,2345 +7135,Itchy Pretzel,2345 +7136,Tart Carrots,2345 +7137,Selfish Bread,2346 +7138,Calm Fish,2346 +7139,Perfect Carrots,2346 +7140,Nasty Bread,2347 +7141,Rough Beets,2348 +7142,Comfortable Fruit,2348 +7143,Prickly Fish,2348 +7144,Colossal Beets,2348 +7145,Scrawny Pretzel,2349 +7146,Green Beef,2349 +7147,Slow Pretzel,2350 +7148,Solid Beef,2350 +7149,Savory Honey,2350 +7150,Courageous Fish,2350 +7151,Lazy Mushrooms,2350 +7152,Round Fruit,2351 +7153,Proud Apples,2351 +7154,Steady Beef,2351 +7155,Gorgeous Fish,2351 +7156,Lovely Pretzel,2351 +7157,Colossal Chicken,2352 +7158,Lucky Pretzel,2352 +7159,Jumpin' Burrito,2352 +7160,Vivacious Pretzel,2353 +7161,Tan Pretzel,2354 +7162,Quaint Apples,2354 +7163,Defeated Fruit,2354 +7164,Tiny Apples,2354 +7165,Gorgeous Fish,2355 +7166,Striped Greens,2355 +7167,Steady Honey,2355 +7168,Rainy Burrito,2356 +7169,Perfect Greens,2356 +7170,Dull Greens,2356 +7171,Friendly Carrots,2357 +7172,Plain Honey,2357 +7173,Bitter Greens,2357 +7174,Fine Apples,2357 +7175,Charming Greens,2357 +7176,Rare Burrito,2358 +7177,Lucky Bread,2358 +7178,Colossal Carrots,2358 +7179,Vivacious Carrots,2358 +7180,Slimy Greens,2359 +7181,– Honey,2359 +7182,Nutty Beef,2359 +7183,Silly Mushrooms,2359 +7184,Selfish Bread,2359 +7185,Jealous Carrots,2360 +7186,Green Apples,2361 +7187,Shrill Apples,2361 +7188,Tough Beets,2361 +7189,R Apples,2362 +7190,Fluffy Honey,2362 +7191,Round Bread,2362 +7192,Nervous Greens,2362 +7193,Fresh Carrots,2362 +7194,Tasty Apples,2363 +7195,Edible Chicken,2363 +7196,Tame Pretzel,2363 +7197,Melted Chicken,2363 +7198,Tame Greens,2363 +7199,Square Chicken,2364 +7200,Lazy Beets,2364 +7201,Curly Mushrooms,2364 +7202,Tired Carrots,2364 +7203,Gorgeous Honey,2364 +7204,Helpful Greens,2365 +7205,Delightful Carrots,2366 +7206,Quickest Beets,2366 +7207,Hollow Fish,2366 +7208,Flat Greens,2366 +7209,Silent Beets,2367 +7210,Defeated Pretzel,2367 +7211,Scary Carrots,2367 +7212,Steep Fish,2367 +7213,Worried Fish,2368 +7214,Melodic Mushrooms,2368 +7215,Savory Carrots,2368 +7216,Square Fish,2368 +7217,Silent Mushrooms,2368 +7218,Husky Carrots,2369 +7219,Small Pretzel,2370 +7220,Naughty Beets,2370 +7221,Grubby Bread,2371 +7222,Whispering Chicken,2371 +7223,Massive Pretzel,2371 +7224,Wooden Bread,2371 +7225,Splendid Beef,2371 +7226,Fine Chicken,2372 +7227,Combative Fruit,2372 +7228,Bitter Honey,2372 +7229,Spicy Beef,2373 +7230,Hollow Pretzel,2374 +7231,Dirty Carrots,2374 +7232,Stale Beef,2374 +7233,Icy Mushrooms,2374 +7234,Nosy Fruit,2374 +7235,Narrow Beef,2375 +7236,Wasteful Carrots,2376 +7237,Hissing Pretzel,2376 +7238,Breezy Carrots,2377 +7239,Crazy Mushrooms,2378 +7240,Fresh Greens,2378 +7241,Witty Carrots,2379 +7242,Hilarious Fruit,2380 +7243,Skinny Carrots,2380 +7244,Dry Burrito,2381 +7245,Hilarious Carrots,2381 +7246,Thundering Mushrooms,2381 +7247,Sad Apples,2382 +7248,Nice Beets,2383 +7249,Ugliest Chicken,2383 +7250,Thoughtless Fruit,2384 +7251,Evil Mushrooms,2385 +7252,Frantic Fish,2385 +7253,Uneven Pretzel,2385 +7254,Frantic Burrito,2386 +7255,Dizzy Carrots,2386 +7256,Depressed Chicken,2386 +7257,Bad Carrots,2386 +7258,High Chicken,2386 +7259,Boom-town Fruit,2387 +7260,Good Greens,2387 +7261,Hissing Greens,2387 +7262,Helpful Pretzel,2387 +7263,Ashamed Greens,2387 +7264,Cruel Fish,2388 +7265,Boring Fruit,2388 +7266,Silent Fruit,2388 +7267,Dirty Chicken,2388 +7268,Obedient Pretzel,2388 +7269,Delicious Carrots,2389 +7270,Witty Honey,2389 +7271,Crazy Carrots,2389 +7272,Beautiful Fish,2390 +7273,Immense Pretzel,2390 +7274,Shaggy Beets,2390 +7275,Mute Mushrooms,2391 +7276,Whispering Apples,2391 +7277,Juicy Carrots,2392 +7278,Solid Beets,2392 +7279,Chilly Beets,2392 +7280,Deep Greens,2392 +7281,Swift Beets,2392 +7282,Cruel Greens,2393 +7283,Moaning Greens,2393 +7284,Confused Greens,2393 +7285,Numerous Beef,2394 +7286,Thundering Beef,2395 +7287,Salty Bread,2395 +7288,Resonant Apples,2395 +7289,Worried Honey,2396 +7290,Dry Fruit,2396 +7291,Weak Fish,2396 +7292,Heavy Fruit,2396 +7293,Pickled Honey,2397 +7294,Greasy Chicken,2397 +7295,Ill Bread,2398 +7296,S Greens,2398 +7297,Precious Mushrooms,2398 +7298,Immense Greens,2398 +7299,Lazy Mushrooms,2398 +7300,Angry Mushrooms,2399 +7301,Nosy Mushrooms,2399 +7302,Fat Carrots,2400 +7303,Moaning Apples,2400 +7304,Amused Bread,2400 +7305,Zany Honey,2400 +7306,Salty Fruit,2400 +7307,Perfect Beets,2401 +7308,Healthy Beef,2401 +7309,Mysterious Apples,2401 +7310,Quiet Pretzel,2401 +7311,Brief Apples,2402 +7312,Bright Bread,2402 +7313,Tender Carrots,2403 +7314,Average Bread,2403 +7315,Annoyed Burrito,2403 +7316,Smooth Honey,2403 +7317,Hot Burrito,2404 +7318,Massive Chicken,2404 +7319,Uptight Bread,2405 +7320,Wooden Greens,2405 +7321,Screeching Fruit,2405 +7322,Salty Honey,2406 +7323,Shallow Greens,2406 +7324,Tan Apples,2407 +7325,Many Chicken,2407 +7326,Confused Beets,2408 +7327,Cool Fish,2409 +7328,Deafening Mushrooms,2409 +7329,Raspy Apples,2409 +7330,Good Carrots,2409 +7331,Eager Beets,2410 +7332,Salty Carrots,2411 +7333,Old Bread,2411 +7334,Rapid Apples,2411 +7335,Melted Fish,2411 +7336,Resonant Beef,2412 +7337,Grand Beets,2412 +7338,Green Honey,2413 +7339,Purple Honey,2413 +7340,Massive Carrots,2413 +7341,Resonant Greens,2413 +7342,Tender Apples,2413 +7343,Happy Bread,2414 +7344,Tasteless Pretzel,2414 +7345,Brief Apples,2415 +7346,Ugly Beef,2415 +7347,Straight Apples,2415 +7348,Huge Beets,2415 +7349,Tender Apples,2415 +7350,Ill Apples,2416 +7351,Tiny Apples,2416 +7352,High Beef,2416 +7353,Modern Honey,2416 +7354,Thoughtful Apples,2416 +7355,Tense Greens,2417 +7356,Rare Pretzel,2417 +7357,Arrogant Beets,2417 +7358,Fluffy Bread,2417 +7359,Elated Chicken,2418 +7360,Kickin' Beets,2418 +7361,Slippery Honey,2418 +7362,Pretty Chicken,2419 +7363,Wicked Carrots,2419 +7364,Jumpin' Pretzel,2420 +7365,Pleasant Carrots,2421 +7366,Magnificent Honey,2421 +7367,Modern Beets,2421 +7368,Wonderful Apples,2421 +7369,Massive Fish,2421 +7370,Thoughtless Burrito,2422 +7371,Tricky Beets,2422 +7372,Grumpy Beets,2422 +7373,Small Pretzel,2422 +7374,Big Beets,2422 +7375,Fantastic Apples,2423 +7376,Chilly Chicken,2424 +7377,Panicky Apples,2424 +7378,Sweet Pretzel,2424 +7379,Colossal Beets,2424 +7380,Deep Apples,2424 +7381,Helpless Carrots,2425 +7382,Tasty Greens,2425 +7383,Successful Greens,2425 +7384,Spicy Fruit,2426 +7385,Melodic Beets,2426 +7386,Loud Carrots,2426 +7387,Dry Carrots,2426 +7388,Stingy Bread,2427 +7389,Rotten Beef,2427 +7390,Agreeable Apples,2428 +7391,Ordinary Greens,2428 +7392,Strong Greens,2429 +7393,Tame Honey,2429 +7394,Weak Carrots,2429 +7395,Loud Beef,2430 +7396,Pleasant Fruit,2430 +7397,Enthusiastic Beets,2430 +7398,Screeching Burrito,2431 +7399,Slow Apples,2431 +7400,Bright Pretzel,2431 +7401,Bad Burrito,2431 +7402,Mysterious Pretzel,2432 +7403,Slimy Beef,2432 +7404,Strong Carrots,2432 +7405,Round Carrots,2432 +7406,Breezy Beets,2432 +7407,Long Chicken,2433 +7408,Tired Apples,2433 +7409,S Beef,2433 +7410,Energetic Bread,2433 +7411,Loose Carrots,2434 +7412,Purring Beets,2434 +7413,Tricky Chicken,2435 +7414,Gentle Fish,2435 +7415,Quiet Bread,2435 +7416,Pickled Greens,2435 +7417,Blue Carrots,2435 +7418,Victorious Burrito,2436 +7419,Rough Beets,2436 +7420,Sour Fruit,2437 +7421,Better Apples,2438 +7422,Tense Apples,2438 +7423,Gigantic Greens,2438 +7424,Fast Beets,2439 +7425,Spicy Carrots,2439 +7426,Tricky Carrots,2439 +7427,Nosy Beef,2440 +7428,Naughty Fish,2440 +7429,Awful Beef,2440 +7430,Silky Beef,2440 +7431,Stingy Fish,2441 +7432,Helpless Chicken,2441 +7433,Husky Chicken,2441 +7434,Cooperative Mushrooms,2442 +7435,Cheerful Bread,2442 +7436,Purple Bread,2442 +7437,Steady Mushrooms,2442 +7438,Giant Beef,2443 +7439,Arrogant Mushrooms,2443 +7440,Melodic Greens,2443 +7441,Naughty Fish,2444 +7442,Stale Honey,2444 +7443,Homeless Pretzel,2445 +7444,Fast Mushrooms,2445 +7445,Many Bread,2445 +7446,Vast Carrots,2446 +7447,Old Beets,2447 +7448,Enthusiastic Burrito,2447 +7449,Delightful Bread,2447 +7450,Uptight Bread,2447 +7451,Exuberant Honey,2448 +7452,Nosy Honey,2448 +7453,Late Burrito,2448 +7454,Scary Chicken,2448 +7455,Old Bread,2449 +7456,Fluffy Beef,2449 +7457,Dangerous Mushrooms,2449 +7458,Curved Bread,2449 +7459,Encouraging Mushrooms,2450 +7460,Hilarious Pretzel,2451 +7461,Tender Apples,2451 +7462,Ancient Mushrooms,2451 +7463,Wooden Carrots,2451 +7464,Quickest Pretzel,2451 +7465,Happy Honey,2452 +7466,Tight Greens,2452 +7467,Breezy Honey,2452 +7468,Repulsive Mushrooms,2453 +7469,Lively Apples,2453 +7470,Repulsive Pretzel,2454 +7471,Silly Beef,2454 +7472,Dull Pretzel,2454 +7473,Calm Mushrooms,2455 +7474,Skinny Apples,2455 +7475,Moist Burrito,2455 +7476,Tight Burrito,2455 +7477,Defeated Honey,2455 +7478,Spicy Honey,2456 +7479,Mysterious Beef,2456 +7480,Grand Fruit,2456 +7481,Greasy Chicken,2457 +7482,Calm Fruit,2457 +7483,Panicky Apples,2457 +7484,Sticky Chicken,2458 +7485,Elated Beets,2459 +7486,Flaky Apples,2459 +7487,Tame Bread,2460 +7488,Frightened Honey,2460 +7489,Gentle Beef,2460 +7490,Numerous Carrots,2460 +7491,Lucky Beef,2460 +7492,Deep Apples,2461 +7493,Hard Honey,2461 +7494,Eager Apples,2461 +7495,Early Beets,2461 +7496,Proud Greens,2462 +7497,Screeching Mushrooms,2462 +7498,Empty Honey,2462 +7499,Ugly Mushrooms,2462 +7500,Lovely Chicken,2462 +7501,Slimy Beets,2463 +7502,Large Bread,2463 +7503,Confused Mushrooms,2463 +7504,Rough Bread,2464 +7505,Thundering Pretzel,2464 +7506,Beautiful Apples,2464 +7507,Massive Mushrooms,2465 +7508,Zany Honey,2465 +7509,High Bread,2465 +7510,Wonderful Apples,2466 +7511,Obnoxious Burrito,2467 +7512,Quiet Beef,2467 +7513,Jealous Pretzel,2467 +7514,Uneven Chicken,2467 +7515,Repulsive Beets,2467 +7516,Round Apples,2468 +7517,Green Fruit,2468 +7518,Disgusted Apples,2468 +7519,Broad Burrito,2468 +7520,Lonely Bread,2469 +7521,Broad Beef,2469 +7522,Slippery Chicken,2469 +7523,Striped Honey,2470 +7524,Bland Burrito,2470 +7525,Comfortable Pretzel,2470 +7526,Homeless Greens,2470 +7527,Hollow Apples,2470 +7528,Courageous Beef,2471 +7529,Incredible Burrito,2471 +7530,Yummy Fruit,2471 +7531,Boiling Bread,2472 +7532,Afraid Chicken,2472 +7533,Giant Carrots,2472 +7534,Steep Fish,2473 +7535,Melted Apples,2473 +7536,Nosy Chicken,2473 +7537,Grumpy Honey,2473 +7538,Nosy Apples,2473 +7539,Hard Fish,2474 +7540,Jealous Beets,2474 +7541,Tart Apples,2474 +7542,Fast Pretzel,2474 +7543,Savory Mushrooms,2475 +7544,High Pretzel,2476 +7545,Husky Chicken,2476 +7546,Swift Pretzel,2477 +7547,Ratty Fish,2477 +7548,Exuberant Beef,2478 +7549,Sour Greens,2478 +7550,Cruel Honey,2479 +7551,Slow Carrots,2479 +7552,Wet Beef,2479 +7553,Disgusted Chicken,2479 +7554,M Chicken,2480 +7555,Outrageous Chicken,2481 +7556,Yummy Beets,2481 +7557,Scary Burrito,2482 +7558,Purring Bread,2482 +7559,Screeching Beef,2482 +7560,Shivering Chicken,2482 +7561,Average Honey,2482 +7562,Hurt Fruit,2483 +7563,Soft Chicken,2483 +7564,Immense Burrito,2483 +7565,Raspy Fruit,2483 +7566,Cuddly Greens,2483 +7567,Steady Beef,2484 +7568,Spicy Beets,2484 +7569,Hurt Greens,2484 +7570,Lucky Greens,2485 +7571,Low Fish,2485 +7572,M Bread,2485 +7573,Immense Fish,2485 +7574,Ordinary Fish,2485 +7575,Black Apples,2486 +7576,Fuzzy Burrito,2486 +7577,Repulsive Honey,2486 +7578,Ugliest Chicken,2487 +7579,Boom-town Bread,2487 +7580,Bland Fruit,2487 +7581,Striped Fish,2487 +7582,Bland Pretzel,2487 +7583,Rapid Pretzel,2488 +7584,Scrumptious Beef,2488 +7585,Panicky Fruit,2488 +7586,Beautiful Chicken,2488 +7587,Elated Fish,2488 +7588,Pickled Chicken,2489 +7589,Fat Fruit,2490 +7590,Enthusiastic Fish,2491 +7591,Edible Fish,2492 +7592,Tense Fish,2492 +7593,Horrible Burrito,2492 +7594,Stingy Honey,2492 +7595,Thundering Fish,2493 +7596,Tender Bread,2493 +7597,Wonderful Carrots,2493 +7598,Immense Mushrooms,2494 +7599,Broken Honey,2494 +7600,Plastic Carrots,2494 +7601,Kind Carrots,2494 +7602,Disturbed Carrots,2494 +7603,Stupendous Carrots,2495 +7604,Bland Honey,2495 +7605,Depressed Mushrooms,2496 +7606,Many Fish,2496 +7607,Lonely Pretzel,2497 +7608,Flat Burrito,2497 +7609,Salty Apples,2497 +7610,Good Chicken,2497 +7611,Dusty Apples,2498 +7612,Late Fish,2498 +7613,Hurt Apples,2498 +7614,Healthy Greens,2499 +7615,Itchy Carrots,2500 +7616,Shrill Beets,2500 +7617,Frantic Beef,2500 +7618,Evil Mushrooms,2500 +7619,Ill Fruit,2500 +7620,Bitter Beef,2501 +7621,Quaint Greens,2501 +7622,Delightful Mushrooms,2502 +7623,Angry Chicken,2502 +7624,Fast Greens,2503 +7625,Wonderful Mushrooms,2503 +7626,Obnoxious Honey,2503 +7627,Curved Beef,2504 +7628,Straight Greens,2504 +7629,Pleasant Beef,2505 +7630,Hilarious Mushrooms,2505 +7631,Loose Apples,2506 +7632,Tender Beets,2506 +7633,Sore Beef,2507 +7634,Fresh Fish,2507 +7635,Massive Mushrooms,2507 +7636,Rotten Beets,2507 +7637,Swift Apples,2507 +7638,Awful Carrots,2508 +7639,Late Chicken,2508 +7640,Great Beets,2508 +7641,Fantastic Beets,2508 +7642,Hurt Fruit,2508 +7643,Grumpy Beets,2509 +7644,Perfect Greens,2509 +7645,Comfortable Mushrooms,2510 +7646,Numerous Fruit,2510 +7647,Steep Fish,2510 +7648,Loud Honey,2511 +7649,Grubby Burrito,2511 +7650,Modern Bread,2511 +7651,Roasted Beets,2511 +7652,Weary Chicken,2512 +7653,Curly Greens,2512 +7654,Fierce Mushrooms,2513 +7655,Quiet Apples,2513 +7656,Panicky Beef,2513 +7657,Shaggy Bread,2514 +7658,Wide Apples,2514 +7659,Wicked Chicken,2515 +7660,Hungry Beets,2515 +7661,Handsome Honey,2516 +7662,Slimy Carrots,2516 +7663,Shivering Fruit,2516 +7664,Grubby Pretzel,2516 +7665,Tender Fish,2516 +7666,Late Fish,2517 +7667,Jumpin' Fruit,2517 +7668,Defiant Honey,2517 +7669,Tall Apples,2518 +7670,Strange Chicken,2519 +7671,Salty Honey,2519 +7672,Wonderful Mushrooms,2519 +7673,Grumpy Apples,2519 +7674,Soft Mushrooms,2520 +7675,Melodic Pretzel,2520 +7676,Foolish Bread,2520 +7677,Ashamed Fruit,2520 +7678,Strange Beef,2520 +7679,Horrible Burrito,2521 +7680,Breezy Mushrooms,2521 +7681,Comfortable Greens,2521 +7682,Hollow Apples,2522 +7683,Shaggy Honey,2522 +7684,Thoughtless Carrots,2522 +7685,Hot Apples,2523 +7686,Great Chicken,2523 +7687,Fluffy Beef,2523 +7688,M Beef,2524 +7689,Enthusiastic Greens,2524 +7690,Young Bread,2524 +7691,Arrogant Fish,2524 +7692,Wet Apples,2524 +7693,Red Bread,2525 +7694,Little Carrots,2525 +7695,Fluffy Beets,2525 +7696,Icy Pretzel,2526 +7697,Calm Beets,2526 +7698,Whispering Pretzel,2526 +7699,Greasy Mushrooms,2527 +7700,Faithful Chicken,2527 +7701,Scrawny Carrots,2527 +7702,Plain Beef,2527 +7703,Broad Chicken,2527 +7704,Wonderful Apples,2528 +7705,S Apples,2528 +7706,Bad Fruit,2529 +7707,Hard Pretzel,2529 +7708,Amused Greens,2529 +7709,Petite Carrots,2530 +7710,Round Chicken,2530 +7711,Shallow Burrito,2530 +7712,Bright Chicken,2530 +7713,Tasty Pretzel,2530 +7714,Bitter Bread,2531 +7715,Great Beets,2531 +7716,Steady Bread,2532 +7717,Charming Pretzel,2532 +7718,Juicy Beef,2532 +7719,Excited Beets,2532 +7720,Weak Pretzel,2533 +7721,Lucky Carrots,2533 +7722,Numerous Fruit,2533 +7723,Juicy Beets,2534 +7724,Worried Carrots,2534 +7725,Bright Beef,2535 +7726,Purple Fruit,2535 +7727,Obnoxious Burrito,2535 +7728,Robust Fish,2535 +7729,Arrogant Honey,2536 +7730,Beautiful Greens,2537 +7731,Uneven Beef,2537 +7732,Pretty Fish,2538 +7733,Tricky Greens,2538 +7734,Great Chicken,2539 +7735,Troubled Pretzel,2539 +7736,Boring Fish,2539 +7737,Juicy Greens,2540 +7738,Tricky Chicken,2540 +7739,Late Apples,2541 +7740,Mysterious Pretzel,2541 +7741,Successful Pretzel,2541 +7742,Angry Beef,2541 +7743,Curly Carrots,2542 +7744,New Beets,2542 +7745,Purple Beets,2542 +7746,Friendly Chicken,2542 +7747,M Burrito,2543 +7748,Massive Beets,2543 +7749,Scrawny Greens,2543 +7750,Fluffy Fish,2543 +7751,Disgusted Beef,2543 +7752,Smiling Greens,2544 +7753,Quaint Beef,2544 +7754,Perfect Pretzel,2544 +7755,Huge Fruit,2544 +7756,Smooth Beets,2545 +7757,Frail Beef,2545 +7758,Fresh Pretzel,2545 +7759,Light Bread,2545 +7760,Deafening Carrots,2546 +7761,Terrible Greens,2547 +7762,Old Carrots,2547 +7763,Flat Beets,2547 +7764,Fair Fish,2547 +7765,Uneven Beets,2547 +7766,Greasy Fish,2548 +7767,High Burrito,2548 +7768,Loose Greens,2549 +7769,Ugly Mushrooms,2550 +7770,R Greens,2550 +7771,Quaint Apples,2550 +7772,Sour Fruit,2551 +7773,Scary Honey,2551 +7774,Lovely Beets,2551 +7775,Gorgeous Bread,2551 +7776,Fantastic Pretzel,2551 +7777,Lonely Beef,2552 +7778,Annoyed Apples,2552 +7779,Hard Carrots,2552 +7780,Obnoxious Greens,2552 +7781,Puny Pretzel,2553 +7782,Steep Bread,2553 +7783,Bland Greens,2553 +7784,Large Pretzel,2553 +7785,Colossal Apples,2553 +7786,Low Carrots,2554 +7787,Watery Apples,2554 +7788,Eager Burrito,2554 +7789,Wasteful Honey,2554 +7790,Ashamed Mushrooms,2554 +7791,Large Beef,2555 +7792,Skinny Mushrooms,2556 +7793,Magnificent Chicken,2557 +7794,Rotten Fruit,2557 +7795,New Beets,2557 +7796,Helpful Fruit,2557 +7797,Envious Honey,2558 +7798,Breezy Carrots,2558 +7799,Stupendous Chicken,2559 +7800,Angry Beef,2559 +7801,Rapid Apples,2559 +7802,Watery Fish,2559 +7803,Short Apples,2560 +7804,Agreeable Pretzel,2561 +7805,Slimy Mushrooms,2561 +7806,Gorgeous Honey,2561 +7807,Tiny Apples,2562 +7808,Awful Carrots,2563 +7809,Splendid Honey,2563 +7810,Rainy Chicken,2563 +7811,Boring Honey,2563 +7812,Faint Beets,2564 +7813,Rainy Carrots,2564 +7814,Rotten Pretzel,2564 +7815,New Carrots,2565 +7816,Disgusted Bread,2565 +7817,Solid Beef,2565 +7818,Purple Beets,2566 +7819,Uptight Greens,2566 +7820,Steady Apples,2566 +7821,Nervous Fruit,2566 +7822,Frantic Fish,2567 +7823,Giant Beets,2567 +7824,Giant Pretzel,2568 +7825,Agreeable Greens,2568 +7826,Dizzy Beef,2568 +7827,Mammoth Honey,2568 +7828,Mighty Bread,2568 +7829,Fine Bread,2569 +7830,Silky Mushrooms,2569 +7831,New Greens,2569 +7832,Squealing Carrots,2570 +7833,Hissing Honey,2570 +7834,Kind Mushrooms,2570 +7835,Proud Bread,2570 +7836,Cheerful Honey,2571 +7837,Cooing Mushrooms,2572 +7838,Victorious Bread,2572 +7839,Breezy Fruit,2572 +7840,Flaky Burrito,2572 +7841,Witty Bread,2573 +7842,Jolly Honey,2573 +7843,Screeching Fish,2573 +7844,Odd Fish,2573 +7845,Shaky Beef,2574 +7846,Envious Pretzel,2574 +7847,Kickin' Fish,2574 +7848,Energetic Fruit,2575 +7849,Good Mushrooms,2576 +7850,Straight Greens,2576 +7851,Moist Beets,2576 +7852,Upset Pretzel,2577 +7853,Uptight Pretzel,2577 +7854,Evil Carrots,2577 +7855,Frail Greens,2578 +7856,Gorgeous Fish,2578 +7857,Steady Apples,2578 +7858,M Carrots,2578 +7859,Pretty Apples,2578 +7860,Salty Greens,2579 +7861,Odd Bread,2579 +7862,Spicy Honey,2579 +7863,Few Mushrooms,2579 +7864,Charming Pretzel,2580 +7865,Cuddly Carrots,2581 +7866,Great Fish,2581 +7867,Nasty Beef,2581 +7868,Faint Honey,2581 +7869,Loud Carrots,2581 +7870,Colossal Fish,2582 +7871,Screeching Burrito,2582 +7872,Spicy Mushrooms,2583 +7873,Round Pretzel,2583 +7874,Tasty Fish,2584 +7875,Broken Pretzel,2584 +7876,Elated Greens,2584 +7877,Silly Apples,2584 +7878,Witty Honey,2585 +7879,Dizzy Beef,2585 +7880,Skinny Beets,2585 +7881,Resonant Bread,2586 +7882,Strange Mushrooms,2586 +7883,Outrageous Fruit,2586 +7884,Fluffy Chicken,2586 +7885,Proud Mushrooms,2586 +7886,Few Beets,2587 +7887,Long Carrots,2587 +7888,Quickest Fruit,2587 +7889,Hilarious Mushrooms,2588 +7890,Crazy Carrots,2588 +7891,Cool Burrito,2588 +7892,Savory Bread,2589 +7893,Floppy Carrots,2589 +7894,Black Beets,2589 +7895,Determined Honey,2590 +7896,Gorgeous Beets,2590 +7897,Screeching Burrito,2591 +7898,Sore Chicken,2591 +7899,Outrageous Burrito,2591 +7900,Small Mushrooms,2591 +7901,Clumsy Carrots,2591 +7902,Lucky Beets,2592 +7903,Steady Beef,2593 +7904,Stale Bread,2593 +7905,Combative Beets,2593 +7906,Lucky Honey,2593 +7907,Friendly Burrito,2594 +7908,Greasy Fish,2594 +7909,Dangerous Greens,2594 +7910,Lucky Fish,2595 +7911,Quiet Beef,2595 +7912,Green Beef,2596 +7913,Ordinary Fruit,2596 +7914,Green Burrito,2596 +7915,Voiceless Beef,2596 +7916,Great Greens,2596 +7917,Old Beets,2597 +7918,Resonant Carrots,2597 +7919,Black Chicken,2597 +7920,Tame Greens,2598 +7921,Raspy Pretzel,2598 +7922,Tame Mushrooms,2599 +7923,Boring Carrots,2599 +7924,Uptight Chicken,2599 +7925,Mute Burrito,2599 +7926,Grumpy Carrots,2600 +7927,Friendly Carrots,2600 +7928,Shallow Bread,2601 +7929,Wonderful Fruit,2602 +7930,Faithful Bread,2602 +7931,Plastic Pretzel,2603 +7932,Juicy Fish,2603 +7933,Fresh Apples,2603 +7934,Frightened Pretzel,2604 +7935,Moaning Beef,2604 +7936,Nervous Beef,2605 +7937,Orange Bread,2605 +7938,Hissing Burrito,2605 +7939,Ordinary Greens,2605 +7940,Wide-eyed Apples,2606 +7941,Broad Fish,2606 +7942,Resonant Mushrooms,2606 +7943,Lucky Bread,2606 +7944,Splendid Greens,2607 +7945,Selfish Carrots,2607 +7946,Broken Chicken,2607 +7947,Thundering Bread,2608 +7948,Low Greens,2608 +7949,Ratty Beef,2609 +7950,Salty Honey,2609 +7951,Deep Bread,2609 +7952,Cooperative Carrots,2609 +7953,Numerous Honey,2609 +7954,Upset Pretzel,2610 +7955,Angry Fruit,2610 +7956,Squealing Fruit,2610 +7957,Watery Beef,2610 +7958,Green Carrots,2611 +7959,Boom-town Beef,2611 +7960,Stale Burrito,2611 +7961,Swift Apples,2611 +7962,Kickin' Carrots,2612 +7963,Good Mushrooms,2612 +7964,Courageous Fish,2613 +7965,Faint Fruit,2613 +7966,Raspy Beets,2614 +7967,Floppy Burrito,2614 +7968,Healthy Beets,2614 +7969,Eager Beef,2614 +7970,Odd Carrots,2614 +7971,Delicious Fruit,2615 +7972,Steep Carrots,2616 +7973,Slow Chicken,2616 +7974,Average Mushrooms,2616 +7975,Foolish Beets,2616 +7976,Hushed Fruit,2617 +7977,Robust Fish,2618 +7978,Rotten Mushrooms,2618 +7979,Blue Bread,2618 +7980,Vast Pretzel,2618 +7981,Embarrassed Beef,2619 +7982,Jittery Mushrooms,2620 +7983,Loud Greens,2620 +7984,Straight Fruit,2620 +7985,Little Apples,2620 +7986,Shaky Bread,2621 +7987,Plain Honey,2621 +7988,Dry Pretzel,2621 +7989,Afraid Mushrooms,2621 +7990,Husky Beef,2621 +7991,Slow Pretzel,2622 +7992,Uptight Burrito,2622 +7993,Foolish Beets,2622 +7994,Tasty Beets,2623 +7995,Proud Honey,2623 +7996,Slippery Greens,2623 +7997,Determined Carrots,2623 +7998,Upset Apples,2624 +7999,Zany Mushrooms,2624 +8000,Terrible Fruit,2624 +8001,Helpful Chicken,2625 +8002,Ripe Mushrooms,2626 +8003,Fuzzy Burrito,2626 +8004,Odd Burrito,2626 +8005,Kind Beets,2627 +8006,Boiling Apples,2627 +8007,Righteous Fish,2627 +8008,Fuzzy Pretzel,2627 +8009,Homeless Fruit,2627 +8010,Dangerous Chicken,2628 +8011,Jumpin' Mushrooms,2628 +8012,Steep Beets,2628 +8013,Many Fish,2629 +8014,Silent Greens,2629 +8015,Thoughtful Chicken,2629 +8016,Victorious Fruit,2630 +8017,Mute Mushrooms,2631 +8018,Green Pretzel,2631 +8019,Steady Apples,2632 +8020,Wide-eyed Burrito,2632 +8021,Greasy Chicken,2632 +8022,Magnificent Burrito,2633 +8023,Bitter Carrots,2634 +8024,Depressed Mushrooms,2634 +8025,Uneven Apples,2634 +8026,Heavy Beets,2634 +8027,Successful Pretzel,2634 +8028,Wasteful Honey,2635 +8029,Bitter Honey,2636 +8030,Big Bread,2637 +8031,Rough Carrots,2637 +8032,Cool Beets,2637 +8033,Jumpin' Bread,2637 +8034,Giant Bread,2638 +8035,Deep Pretzel,2638 +8036,Outrageous Beef,2638 +8037,Incredible Fish,2638 +8038,Vivacious Bread,2638 +8039,Jealous Honey,2639 +8040,Calm Chicken,2639 +8041,Dry Mushrooms,2640 +8042,Red Burrito,2641 +8043,Relieved Carrots,2642 +8044,Anxious Fruit,2642 +8045,Great Greens,2642 +8046,Lonely Mushrooms,2642 +8047,Light Chicken,2643 +8048,Defiant Beets,2643 +8049,Nutty Bread,2643 +8050,Huge Fish,2643 +8051,Cold Mushrooms,2644 +8052,Boring Pretzel,2644 +8053,Uneven Mushrooms,2644 +8054,Curly Mushrooms,2644 +8055,Slimy Pretzel,2644 +8056,Scrumptious Bread,2645 +8057,Resonant Beef,2645 +8058,Swift Apples,2646 +8059,Pretty Fish,2646 +8060,Envious Bread,2646 +8061,Rapid Honey,2647 +8062,Grumpy Beets,2647 +8063,Boring Pretzel,2648 +8064,Ugly Honey,2648 +8065,Big Beets,2648 +8066,Scrumptious Burrito,2648 +8067,Weary Fish,2648 +8068,Delightful Burrito,2649 +8069,Depressed Fish,2649 +8070,Encouraging Chicken,2649 +8071,Successful Honey,2650 +8072,Salty Bread,2650 +8073,Giant Apples,2650 +8074,Fine Fruit,2650 +8075,Pleasant Beef,2650 +8076,Defeated Bread,2651 +8077,Smiling Fish,2652 +8078,Frantic Greens,2652 +8079,Prickly Fish,2653 +8080,Brave Honey,2653 +8081,Disgusted Greens,2654 +8082,Fine Fish,2654 +8083,Righteous Fish,2654 +8084,Exuberant Chicken,2654 +8085,Pleasant Pretzel,2655 +8086,Calm Burrito,2655 +8087,Hollow Fish,2656 +8088,Dry Mushrooms,2656 +8089,Gigantic Mushrooms,2656 +8090,Sour Beets,2657 +8091,Immense Beef,2657 +8092,Salty Apples,2658 +8093,Horrible Fish,2659 +8094,Square Carrots,2659 +8095,Uneven Chicken,2660 +8096,Screeching Mushrooms,2660 +8097,Hushed Chicken,2660 +8098,Fat Chicken,2660 +8099,Great Burrito,2660 +8100,Weak Carrots,2661 +8101,Cold Apples,2661 +8102,Scattered Mushrooms,2661 +8103,Solid Apples,2662 +8104,Grumpy Apples,2663 +8105,Sharp Fish,2663 +8106,Rapid Carrots,2663 +8107,Fuzzy Carrots,2663 +8108,Thoughtful Fish,2663 +8109,Bitter Beef,2664 +8110,Green Greens,2664 +8111,Dizzy Chicken,2664 +8112,Prickly Fish,2665 +8113,Tasty Carrots,2665 +8114,Tense Mushrooms,2665 +8115,Lively Mushrooms,2665 +8116,Kickin' Pretzel,2665 +8117,Ancient Bread,2666 +8118,Uptight Fruit,2667 +8119,Beautiful Carrots,2667 +8120,Kickin' Apples,2667 +8121,Striped Burrito,2668 +8122,Grubby Mushrooms,2668 +8123,Bitter Burrito,2668 +8124,Defeated Fruit,2669 +8125,Great Burrito,2669 +8126,Shrill Fruit,2669 +8127,Old Fish,2669 +8128,Skinny Fish,2669 +8129,Fantastic Bread,2670 +8130,Wasteful Burrito,2671 +8131,Prickly Pretzel,2672 +8132,Numerous Apples,2672 +8133,Perfect Greens,2672 +8134,Energetic Pretzel,2672 +8135,Uptight Pretzel,2673 +8136,Tight Burrito,2673 +8137,Witty Honey,2674 +8138,Black Mushrooms,2674 +8139,– Fish,2674 +8140,– Honey,2675 +8141,Edible Beets,2676 +8142,Depressed Greens,2676 +8143,Quaint Burrito,2676 +8144,Narrow Chicken,2676 +8145,Dusty Mushrooms,2677 +8146,Scattered Chicken,2677 +8147,Happy Burrito,2677 +8148,Scrawny Beef,2678 +8149,Dirty Pretzel,2678 +8150,Envious Fruit,2678 +8151,Salty Fruit,2678 +8152,Vivacious Greens,2678 +8153,Bright Beets,2679 +8154,Smiling Fruit,2679 +8155,Sour Carrots,2679 +8156,Ratty Chicken,2680 +8157,Red Carrots,2680 +8158,Fluffy Honey,2680 +8159,Enthusiastic Honey,2680 +8160,Beautiful Fish,2681 +8161,M Fish,2681 +8162,Long Chicken,2681 +8163,Nervous Fish,2681 +8164,Fat Beef,2681 +8165,Worried Mushrooms,2682 +8166,Faithful Apples,2683 +8167,Short Carrots,2683 +8168,Immense Burrito,2683 +8169,Horrible Honey,2683 +8170,Nice Carrots,2684 +8171,Lazy Pretzel,2684 +8172,Deafening Beets,2685 +8173,Great Burrito,2685 +8174,Arrogant Beets,2685 +8175,Shivering Fruit,2685 +8176,Shivering Honey,2685 +8177,Ratty Beets,2686 +8178,Bitter Burrito,2686 +8179,Ashamed Carrots,2687 +8180,M Apples,2688 +8181,Few Fruit,2688 +8182,Wide Carrots,2688 +8183,Ugly Apples,2688 +8184,Disgusted Honey,2689 +8185,Tired Honey,2689 +8186,Ill Greens,2689 +8187,Gorgeous Chicken,2689 +8188,Brief Carrots,2689 +8189,Short Honey,2690 +8190,High Beef,2690 +8191,Fat Beef,2690 +8192,Tasteless Apples,2690 +8193,Cruel Beef,2690 diff --git a/support/real_sales.csv b/support/real_sales.csv new file mode 100644 index 00000000..f038d94c --- /dev/null +++ b/support/real_sales.csv @@ -0,0 +1,12798 @@ +1,9290,2013-11-07 04:34:56 -0800,1,1 +2,2262,2013-11-10 02:44:56 -0800,1,1 +3,9588,2013-11-13 01:49:37 -0800,1,1 +4,1634,2013-11-06 20:44:00 -0800,1,1 +5,4440,2013-11-10 05:19:05 -0800,1,1 +6,6950,2013-11-11 11:29:52 -0800,1,1 +7,4095,2013-11-12 14:38:29 -0800,1,1 +8,5727,2013-11-12 06:03:54 -0800,2,2 +9,9128,2013-11-13 01:48:15 -0800,3,4 +10,5160,2013-11-08 04:31:41 -0800,3,4 +11,1030,2013-11-10 18:56:53 -0800,3,4 +12,5179,2013-11-08 16:36:03 -0800,3,4 +13,3450,2013-11-12 12:00:35 -0800,3,4 +14,4978,2013-11-10 01:51:24 -0800,3,4 +15,8924,2013-11-10 11:31:16 -0800,3,4 +16,2277,2013-11-09 01:16:47 -0800,3,4 +17,3442,2013-11-10 04:16:12 -0800,4,7 +18,5375,2013-11-08 12:21:41 -0800,4,5 +19,9035,2013-11-11 03:37:15 -0800,4,6 +20,51,2013-11-10 09:48:05 -0800,4,5 +21,8963,2013-11-10 12:26:30 -0800,4,7 +22,7180,2013-11-12 06:40:46 -0800,5,9 +23,8382,2013-11-09 08:13:09 -0800,5,8 +24,3776,2013-11-08 16:12:20 -0800,5,8 +25,4951,2013-11-09 23:42:41 -0800,5,9 +26,9690,2013-11-09 21:45:12 -0800,5,9 +27,2851,2013-11-13 04:14:40 -0800,5,10 +28,9015,2013-11-06 14:19:49 -0800,5,8 +29,8445,2013-11-11 06:44:12 -0800,5,8 +30,7459,2013-11-10 01:44:14 -0800,5,8 +31,2977,2013-11-09 10:57:21 -0800,6,13 +32,1980,2013-11-12 03:41:53 -0800,7,14 +33,8559,2013-11-11 06:26:33 -0800,7,14 +34,6027,2013-11-07 13:01:30 -0800,7,14 +35,8375,2013-11-10 17:04:00 -0800,7,14 +36,6433,2013-11-11 15:39:50 -0800,7,14 +37,6350,2013-11-07 20:25:38 -0800,7,14 +38,1995,2013-11-11 16:20:22 -0800,7,14 +39,9348,2013-11-08 10:38:56 -0800,8,17 +40,5432,2013-11-12 01:22:56 -0800,8,15 +41,4263,2013-11-08 16:36:05 -0800,8,16 +42,3043,2013-11-07 12:01:03 -0800,8,17 +43,8222,2013-11-13 05:56:55 -0800,8,17 +44,1458,2013-11-10 01:42:35 -0800,8,17 +45,7011,2013-11-07 20:57:31 -0800,8,18 +46,9111,2013-11-08 16:05:24 -0800,8,18 +47,8150,2013-11-08 00:40:59 -0800,8,15 +48,2510,2013-11-10 00:43:31 -0800,9,21 +49,3697,2013-11-11 18:43:56 -0800,9,20 +50,5420,2013-11-07 19:30:03 -0800,9,19 +51,9341,2013-11-09 10:18:19 -0800,9,21 +52,3461,2013-11-13 05:05:00 -0800,9,22 +53,844,2013-11-08 21:50:58 -0800,10,27 +54,1410,2013-11-12 23:13:10 -0800,10,27 +55,9333,2013-11-09 15:44:59 -0800,10,25 +56,2731,2013-11-10 01:37:13 -0800,10,25 +57,5017,2013-11-12 19:57:23 -0800,10,27 +58,4111,2013-11-11 00:27:44 -0800,10,26 +59,3233,2013-11-08 11:50:45 -0800,10,23 +60,5949,2013-11-11 02:43:04 -0800,10,23 +61,626,2013-11-07 15:47:38 -0800,11,28 +62,8296,2013-11-07 00:31:35 -0800,11,32 +63,4522,2013-11-08 23:23:56 -0800,11,28 +64,8362,2013-11-07 05:30:08 -0800,11,30 +65,9460,2013-11-13 00:58:12 -0800,11,32 +66,9711,2013-11-11 15:36:04 -0800,12,35 +67,963,2013-11-08 15:12:25 -0800,12,33 +68,295,2013-11-10 01:21:48 -0800,12,33 +69,10,2013-11-10 00:03:56 -0800,13,38 +70,2838,2013-11-09 13:30:15 -0800,13,38 +71,564,2013-11-08 18:43:45 -0800,14,40 +72,593,2013-11-08 04:55:34 -0800,14,40 +73,4154,2013-11-08 18:31:12 -0800,14,40 +74,6070,2013-11-10 19:58:53 -0800,15,41 +75,7256,2013-11-07 11:12:18 -0800,15,41 +76,6071,2013-11-08 11:28:57 -0800,15,41 +77,5365,2013-11-09 07:35:23 -0800,15,41 +78,886,2013-11-08 23:59:36 -0800,15,44 +79,9682,2013-11-13 07:13:19 -0800,15,41 +80,8084,2013-11-09 06:20:31 -0800,15,44 +81,4991,2013-11-08 20:28:54 -0800,16,47 +82,6867,2013-11-07 07:58:18 -0800,16,48 +83,8415,2013-11-06 11:29:41 -0800,16,47 +84,8790,2013-11-08 02:15:19 -0800,16,46 +85,2832,2013-11-10 00:44:12 -0800,16,48 +86,7454,2013-11-11 07:56:35 -0800,16,48 +87,2497,2013-11-11 04:54:54 -0800,16,45 +88,9679,2013-11-09 14:17:35 -0800,17,50 +89,3313,2013-11-12 13:20:28 -0800,17,50 +90,1793,2013-11-10 10:11:20 -0800,17,50 +91,6010,2013-11-10 01:42:37 -0800,17,50 +92,434,2013-11-11 00:18:23 -0800,17,50 +93,3654,2013-11-11 09:42:24 -0800,17,50 +94,4170,2013-11-11 03:55:44 -0800,18,52 +95,5579,2013-11-06 10:07:58 -0800,18,51 +96,2289,2013-11-10 17:23:48 -0800,19,57 +97,8743,2013-11-08 04:24:05 -0800,19,56 +98,3187,2013-11-10 17:03:33 -0800,19,57 +99,6930,2013-11-10 13:23:07 -0800,19,55 +100,4573,2013-11-08 15:18:32 -0800,19,56 +101,6539,2013-11-12 06:44:41 -0800,20,58 +102,6390,2013-11-11 02:06:01 -0800,20,58 +103,3310,2013-11-09 10:25:22 -0800,20,58 +104,5690,2013-11-11 06:23:19 -0800,20,58 +105,8672,2013-11-08 12:28:53 -0800,20,58 +106,7028,2013-11-07 22:40:04 -0800,21,60 +107,3779,2013-11-08 05:40:53 -0800,21,60 +108,822,2013-11-11 01:44:44 -0800,21,63 +109,1826,2013-11-10 02:53:07 -0800,21,59 +110,3751,2013-11-07 21:31:14 -0800,21,62 +111,5889,2013-11-09 20:25:45 -0800,21,62 +112,7797,2013-11-11 13:48:16 -0800,22,64 +113,4564,2013-11-06 18:33:45 -0800,22,64 +114,4548,2013-11-08 01:47:50 -0800,22,65 +115,7870,2013-11-10 07:07:29 -0800,22,66 +116,6858,2013-11-09 06:00:22 -0800,22,67 +117,7912,2013-11-10 08:21:58 -0800,22,65 +118,785,2013-11-11 14:35:45 -0800,23,72 +119,1664,2013-11-12 15:45:49 -0800,23,69 +120,1810,2013-11-10 22:19:43 -0800,23,70 +121,4890,2013-11-09 22:01:19 -0800,23,70 +122,4847,2013-11-08 04:09:35 -0800,23,69 +123,4480,2013-11-12 10:13:45 -0800,24,73 +124,4636,2013-11-13 02:57:50 -0800,24,73 +125,3128,2013-11-08 06:34:47 -0800,25,74 +126,4221,2013-11-10 22:36:50 -0800,25,74 +127,5790,2013-11-08 06:20:42 -0800,25,74 +128,1143,2013-11-06 08:40:22 -0800,25,74 +129,1195,2013-11-10 10:40:40 -0800,25,74 +130,9173,2013-11-09 18:43:19 -0800,25,74 +131,4911,2013-11-12 05:43:19 -0800,25,74 +132,6509,2013-11-12 21:23:36 -0800,26,75 +133,1628,2013-11-12 18:37:47 -0800,26,77 +134,9088,2013-11-12 11:28:58 -0800,26,75 +135,1257,2013-11-07 21:05:27 -0800,26,76 +136,4694,2013-11-06 15:30:59 -0800,26,76 +137,4838,2013-11-12 09:10:10 -0800,26,75 +138,4112,2013-11-10 11:20:55 -0800,27,78 +139,294,2013-11-08 06:10:28 -0800,27,82 +140,2924,2013-11-09 22:17:00 -0800,27,80 +141,4589,2013-11-11 06:02:18 -0800,28,85 +142,3220,2013-11-08 01:28:06 -0800,29,87 +143,8521,2013-11-07 15:56:41 -0800,29,87 +144,9430,2013-11-10 03:24:10 -0800,29,88 +145,7916,2013-11-08 11:35:38 -0800,29,88 +146,4589,2013-11-08 12:53:02 -0800,29,87 +147,8111,2013-11-10 04:31:10 -0800,29,88 +148,7863,2013-11-13 04:29:57 -0800,29,86 +149,3091,2013-11-12 07:52:56 -0800,29,88 +150,717,2013-11-06 23:53:18 -0800,30,91 +151,5184,2013-11-07 12:32:39 -0800,30,89 +152,6377,2013-11-08 04:15:30 -0800,30,90 +153,3068,2013-11-08 12:03:41 -0800,30,89 +154,250,2013-11-12 14:25:06 -0800,30,89 +155,2515,2013-11-07 21:05:48 -0800,30,89 +156,6380,2013-11-12 19:11:50 -0800,30,91 +157,1159,2013-11-09 08:04:14 -0800,30,89 +158,5091,2013-11-11 01:40:51 -0800,31,94 +159,2264,2013-11-12 08:31:13 -0800,31,92 +160,2397,2013-11-09 23:32:57 -0800,31,92 +161,5435,2013-11-06 20:50:02 -0800,31,93 +162,3357,2013-11-09 05:29:45 -0800,32,97 +163,4371,2013-11-09 00:00:24 -0800,32,97 +164,3654,2013-11-08 01:40:32 -0800,33,103 +165,9646,2013-11-13 02:23:23 -0800,33,103 +166,4895,2013-11-09 14:56:25 -0800,33,102 +167,3590,2013-11-06 10:13:39 -0800,33,102 +168,4096,2013-11-07 03:33:58 -0800,33,101 +169,1814,2013-11-12 21:54:03 -0800,33,101 +170,2462,2013-11-13 07:03:27 -0800,33,101 +171,56,2013-11-11 20:40:32 -0800,33,103 +172,1710,2013-11-06 11:27:57 -0800,34,107 +173,4758,2013-11-09 21:51:17 -0800,34,107 +174,6619,2013-11-08 15:52:48 -0800,34,107 +175,5824,2013-11-07 21:51:51 -0800,34,105 +176,2091,2013-11-10 04:35:06 -0800,34,107 +177,2820,2013-11-09 16:45:19 -0800,34,106 +178,9558,2013-11-12 02:34:54 -0800,35,110 +179,2964,2013-11-12 00:39:14 -0800,35,111 +180,5870,2013-11-10 17:07:30 -0800,35,109 +181,9570,2013-11-06 19:04:38 -0800,35,111 +182,7443,2013-11-07 21:54:43 -0800,35,109 +183,6647,2013-11-08 09:51:36 -0800,35,112 +184,8787,2013-11-07 02:19:05 -0800,36,117 +185,1985,2013-11-13 07:49:09 -0800,37,118 +186,9242,2013-11-08 09:07:17 -0800,37,118 +187,821,2013-11-07 01:34:39 -0800,37,118 +188,44,2013-11-12 03:37:54 -0800,37,118 +189,7264,2013-11-11 08:53:44 -0800,38,122 +190,7070,2013-11-10 23:45:28 -0800,38,120 +191,2661,2013-11-09 07:22:39 -0800,38,123 +192,343,2013-11-11 17:16:11 -0800,38,119 +193,5893,2013-11-08 14:42:23 -0800,38,121 +194,8775,2013-11-07 04:14:21 -0800,38,121 +195,2259,2013-11-12 17:02:28 -0800,38,120 +196,8165,2013-11-12 04:22:55 -0800,38,120 +197,7878,2013-11-11 09:57:51 -0800,39,124 +198,9237,2013-11-07 08:17:20 -0800,39,126 +199,8435,2013-11-06 19:17:53 -0800,40,128 +200,8311,2013-11-12 03:21:43 -0800,40,128 +201,5438,2013-11-07 02:11:04 -0800,40,130 +202,4683,2013-11-08 20:18:25 -0800,40,131 +203,6675,2013-11-11 13:23:24 -0800,40,129 +204,2667,2013-11-12 01:29:25 -0800,40,127 +205,9298,2013-11-11 02:34:34 -0800,40,131 +206,6478,2013-11-08 05:16:16 -0800,40,131 +207,8142,2013-11-11 13:38:21 -0800,40,131 +208,3163,2013-11-09 15:14:14 -0800,41,135 +209,4710,2013-11-07 11:06:39 -0800,41,134 +210,3633,2013-11-10 16:05:19 -0800,41,133 +211,6890,2013-11-10 17:10:02 -0800,41,132 +212,3490,2013-11-09 01:00:25 -0800,42,139 +213,6470,2013-11-12 04:10:02 -0800,42,139 +214,1594,2013-11-10 00:30:40 -0800,43,141 +215,6498,2013-11-10 17:38:00 -0800,43,141 +216,5395,2013-11-08 18:05:00 -0800,43,144 +217,7730,2013-11-10 14:39:55 -0800,43,142 +218,2584,2013-11-09 12:03:56 -0800,43,143 +219,2450,2013-11-09 17:06:22 -0800,43,144 +220,7117,2013-11-09 13:30:02 -0800,44,146 +221,6370,2013-11-07 14:32:09 -0800,44,146 +222,8861,2013-11-09 10:37:07 -0800,44,145 +223,6622,2013-11-11 12:30:20 -0800,44,146 +224,8845,2013-11-12 01:50:28 -0800,44,146 +225,4990,2013-11-10 16:40:30 -0800,44,145 +226,6448,2013-11-10 23:53:41 -0800,44,145 +227,4050,2013-11-08 20:21:18 -0800,44,145 +228,9730,2013-11-08 05:44:39 -0800,45,149 +229,420,2013-11-08 05:31:35 -0800,45,147 +230,6014,2013-11-08 13:31:46 -0800,46,152 +231,4474,2013-11-06 17:58:22 -0800,46,153 +232,4126,2013-11-12 07:06:00 -0800,46,154 +233,6039,2013-11-06 21:39:13 -0800,46,152 +234,6180,2013-11-07 15:37:14 -0800,46,153 +235,2060,2013-11-07 10:10:36 -0800,47,156 +236,7097,2013-11-10 07:22:42 -0800,47,157 +237,8480,2013-11-08 01:57:37 -0800,47,156 +238,5465,2013-11-11 02:05:43 -0800,48,159 +239,8410,2013-11-13 07:46:50 -0800,48,158 +240,4094,2013-11-06 21:47:49 -0800,48,158 +241,8136,2013-11-11 13:28:03 -0800,49,163 +242,386,2013-11-08 00:22:18 -0800,49,160 +243,4713,2013-11-08 19:02:57 -0800,50,164 +244,6476,2013-11-09 06:19:02 -0800,50,164 +245,7947,2013-11-09 21:20:06 -0800,50,164 +246,8825,2013-11-11 05:31:18 -0800,50,164 +247,1396,2013-11-09 03:50:04 -0800,52,166 +248,3647,2013-11-06 11:26:08 -0800,52,166 +249,877,2013-11-08 17:13:39 -0800,52,166 +250,4129,2013-11-07 01:11:40 -0800,52,166 +251,2686,2013-11-09 11:19:34 -0800,52,166 +252,6875,2013-11-12 16:28:52 -0800,54,172 +253,3924,2013-11-10 17:44:52 -0800,54,171 +254,4969,2013-11-12 15:56:16 -0800,54,173 +255,2145,2013-11-08 16:06:23 -0800,54,172 +256,6672,2013-11-12 08:06:04 -0800,54,172 +257,4890,2013-11-07 00:12:29 -0800,54,171 +258,440,2013-11-07 21:13:46 -0800,54,175 +259,9637,2013-11-06 10:10:43 -0800,54,171 +260,6473,2013-11-09 15:59:29 -0800,56,181 +261,2799,2013-11-09 15:35:38 -0800,56,181 +262,4514,2013-11-09 02:55:04 -0800,56,182 +263,3290,2013-11-07 06:54:19 -0800,57,185 +264,3127,2013-11-06 18:21:19 -0800,57,185 +265,3579,2013-11-12 12:20:22 -0800,57,186 +266,3738,2013-11-11 06:28:33 -0800,57,186 +267,7820,2013-11-10 15:37:34 -0800,57,186 +268,6047,2013-11-11 20:23:04 -0800,58,187 +269,2039,2013-11-12 21:47:32 -0800,58,188 +270,1260,2013-11-10 00:51:12 -0800,58,187 +271,5895,2013-11-12 11:19:40 -0800,58,187 +272,9222,2013-11-13 05:18:21 -0800,59,193 +273,2371,2013-11-08 01:39:35 -0800,59,193 +274,579,2013-11-11 17:34:24 -0800,59,189 +275,7367,2013-11-06 18:28:42 -0800,60,196 +276,3929,2013-11-06 22:20:12 -0800,61,198 +277,925,2013-11-07 15:48:31 -0800,61,198 +278,1485,2013-11-07 13:57:58 -0800,61,197 +279,8420,2013-11-07 11:44:22 -0800,61,197 +280,2217,2013-11-13 08:14:17 -0800,62,202 +281,6658,2013-11-09 10:04:24 -0800,62,199 +282,3545,2013-11-11 06:21:52 -0800,62,202 +283,3865,2013-11-11 00:09:20 -0800,62,199 +284,3915,2013-11-07 00:05:29 -0800,62,202 +285,2661,2013-11-08 11:58:44 -0800,62,203 +286,5070,2013-11-13 06:31:13 -0800,62,200 +287,2259,2013-11-12 00:51:43 -0800,63,204 +288,7969,2013-11-12 15:59:09 -0800,63,204 +289,6438,2013-11-08 08:52:08 -0800,63,204 +290,1110,2013-11-07 13:11:38 -0800,64,207 +291,5144,2013-11-10 16:11:06 -0800,64,208 +292,2833,2013-11-09 01:44:39 -0800,64,206 +293,3952,2013-11-11 12:26:19 -0800,64,205 +294,2343,2013-11-07 19:54:56 -0800,64,206 +295,7994,2013-11-09 11:33:15 -0800,64,208 +296,9765,2013-11-08 00:34:14 -0800,65,210 +297,1676,2013-11-07 08:43:47 -0800,65,211 +298,6371,2013-11-07 11:27:06 -0800,65,210 +299,634,2013-11-08 02:56:09 -0800,66,212 +300,1591,2013-11-10 17:07:50 -0800,66,213 +301,798,2013-11-12 02:42:02 -0800,66,213 +302,1892,2013-11-12 04:01:34 -0800,67,214 +303,6192,2013-11-06 10:31:44 -0800,67,215 +304,6020,2013-11-08 08:13:00 -0800,67,216 +305,6443,2013-11-13 05:31:07 -0800,67,215 +306,8910,2013-11-12 05:11:23 -0800,67,216 +307,6734,2013-11-11 16:13:13 -0800,68,217 +308,9841,2013-11-10 01:15:58 -0800,68,217 +309,8644,2013-11-11 12:21:06 -0800,68,217 +310,6089,2013-11-08 01:05:21 -0800,68,217 +311,3520,2013-11-08 20:36:34 -0800,69,219 +312,9220,2013-11-10 17:54:37 -0800,69,220 +313,3597,2013-11-10 17:22:52 -0800,70,224 +314,166,2013-11-12 20:52:49 -0800,70,223 +315,3628,2013-11-10 15:40:57 -0800,70,225 +316,969,2013-11-12 13:07:19 -0800,70,224 +317,1360,2013-11-06 17:47:55 -0800,70,225 +318,2758,2013-11-06 16:13:06 -0800,70,224 +319,4733,2013-11-08 07:41:09 -0800,70,222 +320,1942,2013-11-07 05:31:05 -0800,71,227 +321,2567,2013-11-10 10:15:15 -0800,72,231 +322,1248,2013-11-08 17:20:01 -0800,73,237 +323,3222,2013-11-12 22:03:47 -0800,73,236 +324,2555,2013-11-10 09:26:20 -0800,73,236 +325,6540,2013-11-07 23:39:26 -0800,74,241 +326,7184,2013-11-11 01:06:36 -0800,74,238 +327,7920,2013-11-08 00:41:57 -0800,74,238 +328,3895,2013-11-06 13:54:48 -0800,74,239 +329,8957,2013-11-09 00:20:50 -0800,74,238 +330,5150,2013-11-08 08:54:58 -0800,74,241 +331,333,2013-11-11 08:35:36 -0800,74,239 +332,1125,2013-11-06 18:07:32 -0800,74,238 +333,7934,2013-11-10 20:37:21 -0800,74,239 +334,6289,2013-11-11 00:40:32 -0800,75,242 +335,9281,2013-11-06 23:56:46 -0800,75,243 +336,3640,2013-11-11 23:21:30 -0800,76,244 +337,2397,2013-11-08 23:48:45 -0800,76,245 +338,4318,2013-11-12 22:21:21 -0800,76,244 +339,3274,2013-11-12 20:53:34 -0800,77,247 +340,5421,2013-11-12 17:13:47 -0800,77,248 +341,1495,2013-11-08 18:34:38 -0800,77,249 +342,3365,2013-11-09 21:01:55 -0800,77,248 +343,5188,2013-11-09 04:45:17 -0800,78,250 +344,141,2013-11-08 23:36:14 -0800,79,251 +345,9894,2013-11-08 09:54:46 -0800,79,251 +346,4617,2013-11-11 18:42:02 -0800,79,251 +347,7652,2013-11-10 11:17:05 -0800,79,251 +348,4243,2013-11-10 18:43:30 -0800,79,251 +349,1444,2013-11-13 01:30:32 -0800,79,251 +350,5265,2013-11-12 03:49:16 -0800,79,251 +351,390,2013-11-12 00:40:05 -0800,81,255 +352,2488,2013-11-12 06:46:55 -0800,81,254 +353,8910,2013-11-07 05:04:33 -0800,81,254 +354,7980,2013-11-09 01:58:48 -0800,81,255 +355,7990,2013-11-09 09:07:07 -0800,81,255 +356,4950,2013-11-13 07:30:48 -0800,81,254 +357,4620,2013-11-08 16:27:56 -0800,81,255 +358,660,2013-11-07 16:01:58 -0800,81,254 +359,3742,2013-11-06 17:28:04 -0800,82,257 +360,7442,2013-11-11 01:24:02 -0800,82,258 +361,2864,2013-11-09 14:40:55 -0800,82,256 +362,4432,2013-11-10 20:11:18 -0800,82,258 +363,8721,2013-11-12 13:49:27 -0800,82,256 +364,7153,2013-11-13 04:31:13 -0800,82,257 +365,462,2013-11-06 21:48:23 -0800,82,257 +366,8959,2013-11-12 22:12:00 -0800,83,259 +367,639,2013-11-08 13:58:42 -0800,84,261 +368,8761,2013-11-11 02:34:14 -0800,84,260 +369,7138,2013-11-09 00:20:02 -0800,84,260 +370,5567,2013-11-10 13:56:35 -0800,84,261 +371,3534,2013-11-10 14:42:32 -0800,84,261 +372,4473,2013-11-11 16:54:16 -0800,84,260 +373,747,2013-11-08 12:02:50 -0800,84,261 +374,7389,2013-11-07 08:06:18 -0800,84,261 +375,2092,2013-11-07 19:04:21 -0800,85,265 +376,8644,2013-11-08 20:18:43 -0800,85,262 +377,5799,2013-11-06 12:07:05 -0800,86,268 +378,7186,2013-11-12 18:07:54 -0800,86,269 +379,7648,2013-11-13 08:22:11 -0800,86,271 +380,7120,2013-11-07 05:51:02 -0800,87,272 +381,3057,2013-11-10 14:05:52 -0800,87,272 +382,8481,2013-11-08 14:13:48 -0800,87,274 +383,7180,2013-11-09 01:23:30 -0800,87,273 +384,944,2013-11-12 15:48:00 -0800,87,273 +385,6890,2013-11-11 23:27:58 -0800,88,276 +386,897,2013-11-08 12:27:02 -0800,88,275 +387,1022,2013-11-08 12:16:39 -0800,88,276 +388,7528,2013-11-08 07:51:42 -0800,88,276 +389,2140,2013-11-08 18:58:12 -0800,88,275 +390,5183,2013-11-07 12:27:58 -0800,88,276 +391,4459,2013-11-10 06:04:44 -0800,88,275 +392,2633,2013-11-11 23:32:59 -0800,88,276 +393,9837,2013-11-07 00:23:43 -0800,88,276 +394,160,2013-11-06 20:35:05 -0800,89,281 +395,5286,2013-11-12 04:15:27 -0800,89,278 +396,3964,2013-11-11 03:01:37 -0800,89,277 +397,1190,2013-11-10 04:23:19 -0800,89,279 +398,9682,2013-11-07 09:03:12 -0800,89,279 +399,7009,2013-11-07 07:58:54 -0800,89,280 +400,95,2013-11-12 09:21:25 -0800,89,279 +401,7723,2013-11-07 04:10:44 -0800,90,282 +402,9644,2013-11-09 12:09:20 -0800,90,282 +403,3534,2013-11-07 15:26:44 -0800,90,282 +404,165,2013-11-13 08:24:53 -0800,90,282 +405,9613,2013-11-11 10:12:51 -0800,90,282 +406,9015,2013-11-12 06:54:58 -0800,92,286 +407,38,2013-11-11 23:01:33 -0800,92,290 +408,7348,2013-11-12 21:02:11 -0800,92,290 +409,1271,2013-11-09 05:41:39 -0800,92,289 +410,1720,2013-11-06 09:05:31 -0800,93,291 +411,5660,2013-11-11 00:47:48 -0800,93,291 +412,5528,2013-11-11 12:16:30 -0800,94,292 +413,53,2013-11-07 19:27:54 -0800,94,292 +414,9826,2013-11-11 15:59:44 -0800,94,292 +415,6934,2013-11-07 22:29:53 -0800,94,292 +416,1536,2013-11-09 02:45:17 -0800,94,292 +417,2352,2013-11-13 00:58:40 -0800,94,292 +418,2355,2013-11-12 11:11:34 -0800,95,295 +419,9541,2013-11-11 22:42:26 -0800,95,296 +420,5270,2013-11-11 01:29:37 -0800,95,295 +421,7233,2013-11-12 20:51:23 -0800,95,295 +422,864,2013-11-10 05:37:04 -0800,95,296 +423,6117,2013-11-11 15:30:11 -0800,95,293 +424,4393,2013-11-11 04:22:15 -0800,95,294 +425,638,2013-11-12 22:27:06 -0800,95,294 +426,4133,2013-11-08 14:56:57 -0800,96,298 +427,6390,2013-11-08 04:05:43 -0800,96,298 +428,2741,2013-11-07 13:56:36 -0800,96,298 +429,3152,2013-11-13 00:37:28 -0800,96,298 +430,5141,2013-11-09 18:03:05 -0800,96,298 +431,2162,2013-11-11 15:41:41 -0800,96,298 +432,4129,2013-11-13 04:12:36 -0800,96,298 +433,3950,2013-11-08 05:04:24 -0800,97,299 +434,9737,2013-11-08 04:04:19 -0800,97,299 +435,5228,2013-11-09 03:37:47 -0800,97,299 +436,2364,2013-11-08 19:50:08 -0800,97,299 +437,9699,2013-11-09 03:36:03 -0800,97,299 +438,9847,2013-11-10 10:51:05 -0800,97,299 +439,7678,2013-11-10 02:17:43 -0800,97,299 +440,3221,2013-11-09 09:26:12 -0800,98,300 +441,8619,2013-11-07 18:45:50 -0800,98,301 +442,3979,2013-11-08 22:30:52 -0800,98,301 +443,2270,2013-11-08 03:29:04 -0800,98,301 +444,1436,2013-11-13 03:06:22 -0800,99,302 +445,4140,2013-11-06 17:32:30 -0800,99,304 +446,44,2013-11-10 05:20:13 -0800,99,302 +447,3768,2013-11-09 01:32:19 -0800,99,306 +448,4955,2013-11-08 06:00:03 -0800,99,303 +449,5339,2013-11-09 17:21:11 -0800,99,306 +450,2173,2013-11-13 07:46:48 -0800,99,304 +451,1966,2013-11-07 15:39:27 -0800,100,309 +452,6470,2013-11-09 02:03:14 -0800,100,311 +453,8721,2013-11-10 06:41:05 -0800,100,307 +454,5239,2013-11-10 00:08:55 -0800,101,314 +455,1419,2013-11-11 03:57:40 -0800,101,312 +456,9450,2013-11-09 22:07:15 -0800,101,313 +457,5171,2013-11-12 14:51:58 -0800,101,312 +458,8109,2013-11-07 11:43:26 -0800,102,315 +459,7070,2013-11-10 06:53:50 -0800,102,315 +460,8230,2013-11-09 04:10:08 -0800,102,315 +461,1963,2013-11-09 18:52:37 -0800,102,315 +462,3196,2013-11-11 09:04:15 -0800,102,315 +463,9870,2013-11-11 21:53:57 -0800,102,315 +464,6351,2013-11-08 03:41:56 -0800,102,315 +465,6659,2013-11-09 17:37:17 -0800,103,316 +466,133,2013-11-07 05:31:34 -0800,103,316 +467,1776,2013-11-06 20:20:38 -0800,103,317 +468,2817,2013-11-12 05:09:51 -0800,103,316 +469,1064,2013-11-10 05:35:49 -0800,103,317 +470,8862,2013-11-11 11:26:30 -0800,103,318 +471,4184,2013-11-12 10:52:42 -0800,104,319 +472,8031,2013-11-10 07:08:11 -0800,104,319 +473,7356,2013-11-10 21:42:35 -0800,104,319 +474,4250,2013-11-12 14:05:34 -0800,104,319 +475,3090,2013-11-10 01:44:16 -0800,104,319 +476,872,2013-11-12 08:52:25 -0800,104,319 +477,3690,2013-11-11 07:20:31 -0800,104,319 +478,3350,2013-11-09 05:16:46 -0800,104,319 +479,1810,2013-11-10 15:00:09 -0800,105,323 +480,2487,2013-11-09 23:47:11 -0800,106,326 +481,1710,2013-11-10 15:45:21 -0800,106,328 +482,6936,2013-11-10 02:26:29 -0800,106,327 +483,4427,2013-11-10 15:14:19 -0800,106,325 +484,2643,2013-11-11 09:05:41 -0800,106,326 +485,5594,2013-11-07 03:48:03 -0800,106,325 +486,5439,2013-11-12 08:43:57 -0800,106,328 +487,6284,2013-11-06 23:20:58 -0800,106,328 +488,1420,2013-11-08 10:42:56 -0800,106,328 +489,2885,2013-11-08 05:30:51 -0800,107,329 +490,5992,2013-11-09 00:52:31 -0800,107,332 +491,5412,2013-11-06 21:51:45 -0800,107,329 +492,1310,2013-11-12 07:11:32 -0800,108,336 +493,3769,2013-11-07 06:44:10 -0800,108,335 +494,1630,2013-11-10 12:00:47 -0800,108,334 +495,9845,2013-11-11 20:43:51 -0800,108,336 +496,5054,2013-11-08 00:41:07 -0800,108,335 +497,2266,2013-11-08 20:25:19 -0800,108,334 +498,531,2013-11-07 14:09:58 -0800,108,334 +499,2665,2013-11-09 09:01:29 -0800,109,338 +500,2492,2013-11-11 22:21:57 -0800,109,337 +501,8738,2013-11-07 12:25:39 -0800,109,338 +502,7173,2013-11-09 23:00:20 -0800,109,337 +503,6978,2013-11-11 15:25:57 -0800,109,338 +504,6909,2013-11-09 23:29:20 -0800,109,338 +505,2546,2013-11-12 15:33:38 -0800,109,338 +506,4132,2013-11-11 12:39:25 -0800,109,338 +507,5453,2013-11-10 03:18:18 -0800,109,337 +508,735,2013-11-12 12:07:39 -0800,110,342 +509,6453,2013-11-11 20:25:59 -0800,110,342 +510,9890,2013-11-12 23:33:15 -0800,110,339 +511,4950,2013-11-08 02:27:58 -0800,110,340 +512,973,2013-11-09 02:58:50 -0800,110,339 +513,6330,2013-11-06 14:53:29 -0800,110,342 +514,7559,2013-11-12 01:25:57 -0800,110,339 +515,2280,2013-11-10 06:07:07 -0800,110,342 +516,7578,2013-11-08 08:30:27 -0800,111,343 +517,3175,2013-11-12 12:19:29 -0800,111,343 +518,8760,2013-11-12 01:11:28 -0800,111,345 +519,5070,2013-11-10 20:25:08 -0800,111,344 +520,6110,2013-11-12 13:54:05 -0800,111,344 +521,6433,2013-11-10 03:28:34 -0800,111,344 +522,2938,2013-11-09 08:16:52 -0800,111,344 +523,9596,2013-11-09 14:18:12 -0800,112,346 +524,5128,2013-11-12 07:44:08 -0800,112,348 +525,3426,2013-11-10 04:40:48 -0800,112,347 +526,3976,2013-11-12 12:23:25 -0800,112,349 +527,80,2013-11-10 12:33:37 -0800,113,352 +528,5879,2013-11-09 13:37:35 -0800,113,351 +529,3740,2013-11-10 18:01:14 -0800,113,352 +530,9370,2013-11-09 22:12:20 -0800,114,353 +531,640,2013-11-07 17:06:26 -0800,114,354 +532,2790,2013-11-11 08:50:34 -0800,114,353 +533,1854,2013-11-10 02:33:15 -0800,114,354 +534,9350,2013-11-09 03:23:23 -0800,114,354 +535,4873,2013-11-08 02:50:29 -0800,114,354 +536,3970,2013-11-08 23:41:34 -0800,114,354 +537,8789,2013-11-11 20:04:21 -0800,114,354 +538,4436,2013-11-07 10:25:15 -0800,115,355 +539,8420,2013-11-10 08:50:56 -0800,115,357 +540,4978,2013-11-06 16:20:08 -0800,115,355 +541,3228,2013-11-07 08:50:49 -0800,115,355 +542,5257,2013-11-06 20:03:37 -0800,115,355 +543,2049,2013-11-12 04:52:38 -0800,115,356 +544,1395,2013-11-07 16:07:31 -0800,115,357 +545,6611,2013-11-07 21:00:43 -0800,116,359 +546,5969,2013-11-07 19:37:05 -0800,116,358 +547,5813,2013-11-07 01:55:03 -0800,117,364 +548,7051,2013-11-06 14:33:27 -0800,117,361 +549,4798,2013-11-07 19:55:51 -0800,117,364 +550,3526,2013-11-10 10:58:31 -0800,117,364 +551,860,2013-11-13 01:10:34 -0800,117,362 +552,822,2013-11-09 22:25:58 -0800,117,362 +553,3013,2013-11-11 20:20:14 -0800,117,363 +554,5850,2013-11-07 08:07:31 -0800,120,376 +555,5455,2013-11-12 22:01:56 -0800,120,373 +556,165,2013-11-06 12:32:03 -0800,120,374 +557,1462,2013-11-07 18:31:31 -0800,120,375 +558,511,2013-11-10 08:14:18 -0800,120,373 +559,5129,2013-11-11 10:35:09 -0800,120,376 +560,8213,2013-11-12 18:48:51 -0800,121,378 +561,3325,2013-11-11 03:53:54 -0800,121,377 +562,668,2013-11-12 05:36:24 -0800,121,378 +563,597,2013-11-10 13:08:23 -0800,121,377 +564,3250,2013-11-07 00:58:14 -0800,121,378 +565,9086,2013-11-08 13:44:38 -0800,121,379 +566,7017,2013-11-12 18:06:32 -0800,121,378 +567,9100,2013-11-08 15:40:45 -0800,121,377 +568,5642,2013-11-07 21:29:37 -0800,121,378 +569,1345,2013-11-06 14:37:45 -0800,122,382 +570,6722,2013-11-11 13:16:03 -0800,122,383 +571,8248,2013-11-06 14:20:37 -0800,122,381 +572,7683,2013-11-09 17:53:43 -0800,122,383 +573,5376,2013-11-12 14:38:48 -0800,122,383 +574,4927,2013-11-12 08:00:49 -0800,122,384 +575,4243,2013-11-06 15:14:35 -0800,123,386 +576,3813,2013-11-07 02:25:48 -0800,123,387 +577,7137,2013-11-08 06:35:54 -0800,123,385 +578,767,2013-11-09 11:15:00 -0800,123,385 +579,2150,2013-11-08 22:37:34 -0800,123,385 +580,1814,2013-11-07 21:12:55 -0800,123,387 +581,8825,2013-11-06 13:53:22 -0800,123,387 +582,1218,2013-11-09 02:51:00 -0800,123,385 +583,5650,2013-11-09 02:05:36 -0800,125,392 +584,2669,2013-11-09 06:10:28 -0800,125,391 +585,1328,2013-11-11 16:30:38 -0800,125,391 +586,350,2013-11-10 05:05:35 -0800,125,393 +587,8081,2013-11-10 00:32:33 -0800,125,392 +588,9079,2013-11-08 10:03:36 -0800,125,392 +589,4588,2013-11-09 22:16:10 -0800,126,394 +590,4467,2013-11-10 16:49:58 -0800,126,394 +591,537,2013-11-13 03:51:12 -0800,126,394 +592,2176,2013-11-11 17:27:05 -0800,126,394 +593,6518,2013-11-12 09:20:27 -0800,126,394 +594,8150,2013-11-11 08:40:18 -0800,126,394 +595,9590,2013-11-09 11:33:00 -0800,126,394 +596,7031,2013-11-07 10:18:22 -0800,126,394 +597,4742,2013-11-11 08:37:10 -0800,126,394 +598,7513,2013-11-10 08:13:25 -0800,127,397 +599,1267,2013-11-10 10:55:03 -0800,127,399 +600,1495,2013-11-11 23:46:02 -0800,127,399 +601,6673,2013-11-10 03:40:03 -0800,127,397 +602,6745,2013-11-08 20:43:30 -0800,127,398 +603,1324,2013-11-11 17:11:31 -0800,127,395 +604,9487,2013-11-06 10:28:01 -0800,128,400 +605,5058,2013-11-11 07:29:02 -0800,128,400 +606,628,2013-11-10 01:47:20 -0800,129,401 +607,2290,2013-11-11 19:34:09 -0800,129,401 +608,7142,2013-11-07 21:36:48 -0800,129,401 +609,7468,2013-11-13 01:08:41 -0800,129,401 +610,3771,2013-11-08 13:09:15 -0800,129,401 +611,8264,2013-11-12 18:50:00 -0800,129,401 +612,5154,2013-11-12 12:14:49 -0800,129,401 +613,2777,2013-11-08 15:49:49 -0800,129,401 +614,8420,2013-11-13 00:03:25 -0800,131,406 +615,7295,2013-11-12 14:57:39 -0800,131,406 +616,7811,2013-11-06 23:18:49 -0800,131,406 +617,7420,2013-11-10 16:51:06 -0800,131,406 +618,3979,2013-11-06 16:44:56 -0800,131,406 +619,8670,2013-11-08 01:56:25 -0800,131,406 +620,613,2013-11-09 04:16:35 -0800,132,409 +621,5386,2013-11-07 02:21:47 -0800,132,411 +622,1054,2013-11-08 05:08:34 -0800,132,409 +623,6648,2013-11-09 00:00:57 -0800,132,411 +624,9334,2013-11-09 00:23:18 -0800,132,411 +625,4381,2013-11-07 17:53:54 -0800,132,411 +626,645,2013-11-12 04:40:17 -0800,132,408 +627,2224,2013-11-09 22:15:01 -0800,132,407 +628,4310,2013-11-10 17:13:33 -0800,133,414 +629,8130,2013-11-08 03:08:08 -0800,133,414 +630,4791,2013-11-07 16:37:20 -0800,133,415 +631,7009,2013-11-12 21:39:15 -0800,133,412 +632,8784,2013-11-07 10:14:29 -0800,133,412 +633,8332,2013-11-11 10:17:31 -0800,134,417 +634,9819,2013-11-10 02:06:54 -0800,134,417 +635,2356,2013-11-11 10:40:09 -0800,134,416 +636,7640,2013-11-13 00:29:24 -0800,134,417 +637,3597,2013-11-07 00:43:10 -0800,134,416 +638,6636,2013-11-07 10:42:41 -0800,134,416 +639,8679,2013-11-10 12:41:02 -0800,135,422 +640,480,2013-11-08 09:02:17 -0800,136,425 +641,748,2013-11-07 02:03:53 -0800,136,425 +642,9656,2013-11-09 21:29:51 -0800,136,425 +643,4953,2013-11-07 13:43:20 -0800,136,425 +644,1577,2013-11-11 08:09:03 -0800,138,430 +645,199,2013-11-09 18:19:49 -0800,138,431 +646,1791,2013-11-09 09:51:30 -0800,138,430 +647,7516,2013-11-07 10:13:44 -0800,138,429 +648,471,2013-11-09 02:53:26 -0800,138,428 +649,2927,2013-11-10 13:40:47 -0800,138,430 +650,9676,2013-11-09 07:48:20 -0800,138,430 +651,8730,2013-11-06 18:20:47 -0800,138,430 +652,6978,2013-11-12 19:58:25 -0800,139,433 +653,9570,2013-11-07 18:12:16 -0800,139,433 +654,7250,2013-11-13 04:01:42 -0800,140,435 +655,530,2013-11-09 08:16:17 -0800,141,436 +656,8678,2013-11-08 15:04:31 -0800,141,436 +657,8114,2013-11-09 00:05:49 -0800,141,436 +658,3422,2013-11-13 01:18:24 -0800,141,436 +659,6356,2013-11-08 13:05:11 -0800,142,437 +660,5826,2013-11-11 23:38:02 -0800,142,438 +661,7833,2013-11-10 23:38:03 -0800,142,438 +662,219,2013-11-09 22:53:37 -0800,142,438 +663,6472,2013-11-08 13:58:39 -0800,142,437 +664,4874,2013-11-11 09:08:39 -0800,142,438 +665,8145,2013-11-12 12:20:59 -0800,142,437 +666,9847,2013-11-11 19:14:30 -0800,142,438 +667,8316,2013-11-12 11:56:21 -0800,142,437 +668,8654,2013-11-07 19:48:13 -0800,143,441 +669,4430,2013-11-13 07:45:56 -0800,143,442 +670,4642,2013-11-10 00:38:57 -0800,143,442 +671,8373,2013-11-07 22:02:43 -0800,143,444 +672,8030,2013-11-11 19:10:54 -0800,143,440 +673,1536,2013-11-12 18:49:56 -0800,143,442 +674,73,2013-11-09 04:07:40 -0800,143,440 +675,5352,2013-11-07 09:48:22 -0800,144,445 +676,1777,2013-11-10 17:15:27 -0800,144,448 +677,5014,2013-11-09 15:12:22 -0800,144,447 +678,780,2013-11-08 08:25:28 -0800,144,445 +679,8570,2013-11-06 11:17:13 -0800,144,445 +680,2170,2013-11-10 05:54:26 -0800,144,445 +681,3411,2013-11-07 13:38:54 -0800,145,450 +682,1644,2013-11-10 21:29:35 -0800,145,449 +683,836,2013-11-10 11:18:36 -0800,145,450 +684,7194,2013-11-11 03:49:03 -0800,145,452 +685,3431,2013-11-07 11:33:00 -0800,145,449 +686,4542,2013-11-07 22:53:36 -0800,145,449 +687,3329,2013-11-09 08:24:02 -0800,145,451 +688,1564,2013-11-11 13:39:26 -0800,146,454 +689,5755,2013-11-10 18:02:45 -0800,146,454 +690,3579,2013-11-11 17:11:21 -0800,146,454 +691,3260,2013-11-10 20:48:38 -0800,146,453 +692,2533,2013-11-11 22:31:38 -0800,147,456 +693,4378,2013-11-11 07:24:34 -0800,148,460 +694,7118,2013-11-10 12:06:44 -0800,148,462 +695,2472,2013-11-08 22:32:44 -0800,148,461 +696,110,2013-11-07 05:28:56 -0800,148,459 +697,2350,2013-11-11 16:17:46 -0800,148,461 +698,2896,2013-11-10 12:33:41 -0800,148,461 +699,4856,2013-11-07 18:01:23 -0800,150,472 +700,4933,2013-11-07 12:50:40 -0800,150,469 +701,5654,2013-11-09 19:32:28 -0800,150,471 +702,5576,2013-11-07 03:50:13 -0800,150,468 +703,5046,2013-11-11 14:27:33 -0800,150,469 +704,8548,2013-11-07 00:20:05 -0800,150,471 +705,2614,2013-11-07 04:46:10 -0800,151,473 +706,3422,2013-11-10 21:11:58 -0800,151,473 +707,6986,2013-11-11 19:47:48 -0800,151,473 +708,7509,2013-11-06 11:34:06 -0800,151,473 +709,281,2013-11-06 19:21:38 -0800,151,473 +710,2030,2013-11-07 23:02:24 -0800,151,473 +711,5067,2013-11-06 09:10:15 -0800,151,473 +712,1944,2013-11-13 08:34:25 -0800,151,473 +713,7095,2013-11-07 14:18:57 -0800,152,474 +714,977,2013-11-09 13:20:03 -0800,152,474 +715,4368,2013-11-08 05:53:17 -0800,152,475 +716,3629,2013-11-10 03:48:22 -0800,152,474 +717,2347,2013-11-12 23:11:47 -0800,152,475 +718,8980,2013-11-07 18:12:32 -0800,152,474 +719,9131,2013-11-09 08:48:40 -0800,152,474 +720,5734,2013-11-10 21:02:14 -0800,152,475 +721,4247,2013-11-09 10:29:10 -0800,152,475 +722,7075,2013-11-10 20:57:36 -0800,153,477 +723,1628,2013-11-06 22:14:32 -0800,153,477 +724,8925,2013-11-08 05:41:14 -0800,153,479 +725,98,2013-11-07 13:54:27 -0800,153,478 +726,5446,2013-11-09 16:45:25 -0800,153,479 +727,6370,2013-11-08 14:41:45 -0800,153,478 +728,4847,2013-11-08 00:17:53 -0800,153,477 +729,759,2013-11-09 04:55:51 -0800,154,481 +730,9623,2013-11-09 08:54:22 -0800,154,481 +731,9112,2013-11-11 20:56:03 -0800,154,480 +732,4465,2013-11-09 10:46:36 -0800,154,482 +733,4559,2013-11-07 12:58:02 -0800,155,483 +734,7233,2013-11-09 03:01:50 -0800,155,484 +735,110,2013-11-10 07:21:09 -0800,155,483 +736,8796,2013-11-12 03:12:16 -0800,155,485 +737,2144,2013-11-10 02:13:14 -0800,155,483 +738,770,2013-11-09 15:56:33 -0800,155,484 +739,7845,2013-11-07 23:00:41 -0800,156,487 +740,892,2013-11-09 14:13:44 -0800,156,488 +741,3993,2013-11-12 21:31:04 -0800,156,490 +742,525,2013-11-07 19:03:57 -0800,157,494 +743,6994,2013-11-08 12:00:33 -0800,157,491 +744,4040,2013-11-10 23:44:49 -0800,157,493 +745,672,2013-11-09 19:39:33 -0800,157,492 +746,9358,2013-11-08 03:46:48 -0800,157,492 +747,827,2013-11-06 17:43:22 -0800,157,494 +748,280,2013-11-11 15:10:41 -0800,157,493 +749,9357,2013-11-12 12:52:32 -0800,157,492 +750,9382,2013-11-09 20:09:11 -0800,157,493 +751,6100,2013-11-10 13:19:00 -0800,158,497 +752,8594,2013-11-09 08:36:34 -0800,158,497 +753,8643,2013-11-07 11:13:32 -0800,158,498 +754,5323,2013-11-07 04:00:48 -0800,158,498 +755,1481,2013-11-10 18:42:13 -0800,158,498 +756,5240,2013-11-12 22:58:43 -0800,158,497 +757,2596,2013-11-12 09:29:02 -0800,158,496 +758,2620,2013-11-08 23:11:15 -0800,158,496 +759,8957,2013-11-12 05:35:01 -0800,158,496 +760,7326,2013-11-08 13:42:24 -0800,159,500 +761,888,2013-11-07 15:48:37 -0800,159,499 +762,3319,2013-11-13 03:23:21 -0800,159,499 +763,3070,2013-11-07 09:38:14 -0800,160,502 +764,3571,2013-11-06 11:42:35 -0800,160,501 +765,5098,2013-11-08 10:02:40 -0800,160,501 +766,3120,2013-11-09 17:30:26 -0800,160,505 +767,2854,2013-11-06 11:12:05 -0800,162,514 +768,5536,2013-11-06 11:01:13 -0800,162,512 +769,3968,2013-11-09 00:03:42 -0800,163,519 +770,9643,2013-11-09 22:40:11 -0800,163,519 +771,9493,2013-11-12 10:52:10 -0800,163,516 +772,30,2013-11-10 19:08:36 -0800,163,519 +773,211,2013-11-07 14:03:43 -0800,163,517 +774,1632,2013-11-13 01:09:36 -0800,164,522 +775,9056,2013-11-12 21:34:14 -0800,164,524 +776,5960,2013-11-12 23:58:15 -0800,164,521 +777,6509,2013-11-07 13:45:11 -0800,164,524 +778,9440,2013-11-11 04:35:07 -0800,164,520 +779,5948,2013-11-06 14:30:07 -0800,164,522 +780,5110,2013-11-08 17:02:31 -0800,164,523 +781,9887,2013-11-06 18:34:13 -0800,164,523 +782,9216,2013-11-13 02:06:02 -0800,165,529 +783,2432,2013-11-09 01:40:57 -0800,165,529 +784,3349,2013-11-09 23:06:49 -0800,165,529 +785,4516,2013-11-09 07:40:54 -0800,165,525 +786,7865,2013-11-08 04:05:37 -0800,166,531 +787,2364,2013-11-13 03:44:39 -0800,166,531 +788,4423,2013-11-07 12:26:32 -0800,166,532 +789,6043,2013-11-13 04:54:55 -0800,166,531 +790,6314,2013-11-11 23:24:59 -0800,166,532 +791,533,2013-11-09 05:29:42 -0800,166,530 +792,161,2013-11-13 07:00:19 -0800,166,531 +793,5147,2013-11-07 23:42:31 -0800,166,532 +794,3331,2013-11-11 04:09:30 -0800,167,537 +795,250,2013-11-12 08:41:13 -0800,167,536 +796,9682,2013-11-11 02:15:46 -0800,167,534 +797,444,2013-11-07 02:42:36 -0800,167,535 +798,5010,2013-11-09 05:08:12 -0800,168,538 +799,8610,2013-11-11 21:39:11 -0800,168,538 +800,9645,2013-11-12 09:58:11 -0800,168,538 +801,7437,2013-11-10 06:18:31 -0800,168,538 +802,7940,2013-11-11 11:29:41 -0800,168,538 +803,9280,2013-11-07 13:59:41 -0800,169,539 +804,8964,2013-11-11 10:26:27 -0800,169,539 +805,1270,2013-11-08 07:19:25 -0800,169,539 +806,8654,2013-11-07 02:15:09 -0800,169,539 +807,1519,2013-11-07 01:24:09 -0800,169,539 +808,158,2013-11-06 18:36:07 -0800,169,539 +809,1288,2013-11-09 11:32:05 -0800,169,539 +810,2600,2013-11-09 16:34:14 -0800,170,541 +811,7398,2013-11-13 00:42:54 -0800,170,540 +812,7151,2013-11-07 14:57:53 -0800,170,541 +813,345,2013-11-09 10:43:23 -0800,170,540 +814,5457,2013-11-12 22:48:47 -0800,170,542 +815,1460,2013-11-09 14:09:38 -0800,170,542 +816,6778,2013-11-11 03:24:56 -0800,170,540 +817,3440,2013-11-06 15:43:14 -0800,171,544 +818,2157,2013-11-07 21:12:48 -0800,171,544 +819,3118,2013-11-11 18:50:28 -0800,171,543 +820,810,2013-11-11 06:57:13 -0800,171,545 +821,7912,2013-11-12 13:33:44 -0800,171,543 +822,894,2013-11-13 02:58:53 -0800,172,546 +823,7920,2013-11-12 23:54:49 -0800,172,548 +824,2011,2013-11-09 13:42:46 -0800,172,546 +825,517,2013-11-07 07:51:15 -0800,172,547 +826,8313,2013-11-09 14:36:24 -0800,172,547 +827,1120,2013-11-11 03:19:42 -0800,172,547 +828,5020,2013-11-10 20:18:32 -0800,172,548 +829,3112,2013-11-10 01:45:32 -0800,172,546 +830,6838,2013-11-10 02:12:47 -0800,172,547 +831,9850,2013-11-09 04:26:39 -0800,174,555 +832,4570,2013-11-11 08:05:02 -0800,174,554 +833,8920,2013-11-11 22:55:50 -0800,175,556 +834,6237,2013-11-11 08:05:18 -0800,175,557 +835,3874,2013-11-09 08:59:41 -0800,175,556 +836,7534,2013-11-07 12:38:31 -0800,175,557 +837,4822,2013-11-11 18:34:30 -0800,175,557 +838,7865,2013-11-10 22:35:51 -0800,176,560 +839,5763,2013-11-10 14:23:49 -0800,176,561 +840,3479,2013-11-12 03:50:07 -0800,176,559 +841,8274,2013-11-09 18:32:09 -0800,176,561 +842,2900,2013-11-11 04:38:08 -0800,176,558 +843,6594,2013-11-09 18:00:25 -0800,176,559 +844,2980,2013-11-08 21:08:26 -0800,176,559 +845,3250,2013-11-07 06:26:45 -0800,176,559 +846,5170,2013-11-06 18:20:21 -0800,176,561 +847,8899,2013-11-11 20:53:29 -0800,177,565 +848,2576,2013-11-07 12:43:36 -0800,177,563 +849,5710,2013-11-06 20:07:09 -0800,177,565 +850,9391,2013-11-12 00:06:06 -0800,177,565 +851,787,2013-11-07 08:41:34 -0800,177,564 +852,6417,2013-11-08 07:54:42 -0800,178,569 +853,6695,2013-11-13 00:45:37 -0800,178,568 +854,6884,2013-11-08 17:26:37 -0800,178,567 +855,8250,2013-11-11 08:07:04 -0800,179,571 +856,6340,2013-11-12 04:55:32 -0800,181,578 +857,890,2013-11-12 20:17:49 -0800,181,578 +858,6940,2013-11-09 10:08:41 -0800,181,578 +859,2341,2013-11-09 06:49:38 -0800,181,578 +860,9220,2013-11-08 09:44:47 -0800,182,580 +861,8379,2013-11-09 07:12:54 -0800,182,580 +862,5260,2013-11-07 19:58:54 -0800,182,580 +863,6740,2013-11-07 07:58:33 -0800,182,579 +864,8876,2013-11-13 03:26:02 -0800,183,586 +865,8932,2013-11-10 21:46:06 -0800,183,582 +866,6780,2013-11-10 10:55:36 -0800,184,587 +867,2556,2013-11-10 00:54:10 -0800,184,587 +868,7220,2013-11-11 20:23:41 -0800,184,587 +869,1470,2013-11-07 09:36:08 -0800,184,587 +870,8341,2013-11-06 13:08:20 -0800,184,587 +871,8579,2013-11-07 08:19:39 -0800,184,587 +872,814,2013-11-12 02:38:20 -0800,185,588 +873,5247,2013-11-12 13:16:40 -0800,186,589 +874,2099,2013-11-10 21:19:13 -0800,186,589 +875,390,2013-11-10 16:31:39 -0800,186,589 +876,8298,2013-11-06 23:22:59 -0800,186,590 +877,2359,2013-11-11 16:54:00 -0800,187,591 +878,5538,2013-11-08 19:09:33 -0800,187,593 +879,5654,2013-11-07 18:22:03 -0800,189,599 +880,6110,2013-11-08 15:11:16 -0800,189,596 +881,9382,2013-11-09 19:30:34 -0800,189,597 +882,2783,2013-11-10 20:48:15 -0800,189,599 +883,438,2013-11-08 10:58:55 -0800,189,598 +884,8138,2013-11-06 23:30:21 -0800,189,598 +885,7429,2013-11-13 01:46:29 -0800,189,597 +886,4298,2013-11-09 20:11:56 -0800,189,599 +887,2681,2013-11-07 15:22:03 -0800,189,599 +888,4636,2013-11-07 12:20:19 -0800,190,602 +889,564,2013-11-07 10:52:56 -0800,190,602 +890,4691,2013-11-11 20:50:14 -0800,190,601 +891,4467,2013-11-10 06:46:16 -0800,190,602 +892,8280,2013-11-11 14:54:56 -0800,190,602 +893,6312,2013-11-07 20:15:07 -0800,190,602 +894,2928,2013-11-11 12:51:50 -0800,191,603 +895,4412,2013-11-08 06:19:52 -0800,191,604 +896,2078,2013-11-07 01:59:02 -0800,191,605 +897,8039,2013-11-12 22:15:37 -0800,191,604 +898,7263,2013-11-10 22:07:48 -0800,192,609 +899,3979,2013-11-08 12:31:13 -0800,192,608 +900,7987,2013-11-11 11:13:19 -0800,192,607 +901,458,2013-11-07 16:38:13 -0800,192,610 +902,2542,2013-11-13 00:52:28 -0800,193,613 +903,3921,2013-11-12 22:47:49 -0800,194,617 +904,9140,2013-11-11 07:26:01 -0800,194,617 +905,7066,2013-11-06 11:20:10 -0800,194,617 +906,4561,2013-11-09 16:32:58 -0800,194,616 +907,9721,2013-11-08 07:07:20 -0800,194,616 +908,3920,2013-11-09 01:13:54 -0800,194,617 +909,67,2013-11-12 06:28:35 -0800,194,617 +910,754,2013-11-06 20:51:22 -0800,194,616 +911,4300,2013-11-10 13:44:29 -0800,195,618 +912,476,2013-11-09 07:01:00 -0800,196,625 +913,4040,2013-11-06 23:25:38 -0800,197,628 +914,7097,2013-11-09 01:13:58 -0800,197,629 +915,7809,2013-11-10 17:22:06 -0800,198,633 +916,9223,2013-11-09 18:01:44 -0800,198,633 +917,4299,2013-11-09 22:50:26 -0800,198,631 +918,7514,2013-11-08 19:24:55 -0800,198,630 +919,9583,2013-11-07 01:30:00 -0800,198,632 +920,2236,2013-11-11 08:21:29 -0800,198,631 +921,4770,2013-11-11 19:15:25 -0800,200,635 +922,7773,2013-11-09 17:48:51 -0800,201,637 +923,2599,2013-11-11 07:23:00 -0800,201,638 +924,2189,2013-11-09 19:52:16 -0800,201,637 +925,3243,2013-11-08 01:50:15 -0800,202,639 +926,7097,2013-11-12 13:28:04 -0800,202,639 +927,7534,2013-11-07 23:45:05 -0800,202,639 +928,4217,2013-11-07 22:14:04 -0800,202,639 +929,1620,2013-11-10 07:27:00 -0800,202,639 +930,9266,2013-11-13 04:00:29 -0800,202,639 +931,5160,2013-11-11 19:01:05 -0800,202,639 +932,8510,2013-11-10 10:16:33 -0800,202,639 +933,482,2013-11-11 13:50:01 -0800,203,641 +934,969,2013-11-12 23:25:12 -0800,203,641 +935,6567,2013-11-09 13:30:56 -0800,203,641 +936,8980,2013-11-12 16:18:08 -0800,203,641 +937,8078,2013-11-06 10:36:16 -0800,203,641 +938,7120,2013-11-08 12:25:11 -0800,204,644 +939,4281,2013-11-11 03:31:55 -0800,205,646 +940,7981,2013-11-10 17:39:34 -0800,205,646 +941,1145,2013-11-12 00:32:28 -0800,205,646 +942,9738,2013-11-07 02:28:08 -0800,205,646 +943,2935,2013-11-08 11:25:28 -0800,205,646 +944,7823,2013-11-11 14:35:23 -0800,205,646 +945,8428,2013-11-12 03:22:10 -0800,205,646 +946,5215,2013-11-06 20:06:45 -0800,205,646 +947,2210,2013-11-13 03:41:20 -0800,207,650 +948,8238,2013-11-07 10:38:04 -0800,207,651 +949,2729,2013-11-09 11:27:19 -0800,207,652 +950,3590,2013-11-09 18:03:17 -0800,207,650 +951,3667,2013-11-12 10:52:17 -0800,207,652 +952,8550,2013-11-10 01:02:52 -0800,207,650 +953,828,2013-11-10 04:49:28 -0800,207,653 +954,5767,2013-11-09 04:12:18 -0800,207,652 +955,6431,2013-11-09 01:46:05 -0800,207,653 +956,1593,2013-11-10 07:25:48 -0800,208,654 +957,7381,2013-11-07 13:05:14 -0800,208,656 +958,3411,2013-11-09 02:17:44 -0800,209,662 +959,3634,2013-11-07 15:29:32 -0800,209,660 +960,3148,2013-11-11 21:35:33 -0800,209,662 +961,4150,2013-11-09 06:47:06 -0800,209,662 +962,8028,2013-11-09 13:25:41 -0800,209,660 +963,491,2013-11-08 14:19:49 -0800,209,661 +964,5914,2013-11-12 16:47:13 -0800,209,660 +965,661,2013-11-13 03:42:26 -0800,210,664 +966,6070,2013-11-12 05:58:20 -0800,210,664 +967,1355,2013-11-08 21:28:50 -0800,210,664 +968,6350,2013-11-11 16:50:32 -0800,210,664 +969,2681,2013-11-06 21:29:46 -0800,210,664 +970,6912,2013-11-11 22:26:18 -0800,211,665 +971,8790,2013-11-10 16:05:19 -0800,211,665 +972,3472,2013-11-12 12:03:00 -0800,211,665 +973,3096,2013-11-06 16:01:35 -0800,211,666 +974,2030,2013-11-11 13:37:15 -0800,211,665 +975,9332,2013-11-10 04:01:05 -0800,211,666 +976,4521,2013-11-12 14:56:28 -0800,211,666 +977,5874,2013-11-13 05:24:55 -0800,211,666 +978,4926,2013-11-06 23:55:08 -0800,211,665 +979,7765,2013-11-08 10:34:46 -0800,212,668 +980,4721,2013-11-09 09:34:40 -0800,212,670 +981,9640,2013-11-07 16:15:25 -0800,212,667 +982,574,2013-11-07 04:38:46 -0800,212,668 +983,5393,2013-11-12 19:46:08 -0800,212,668 +984,5670,2013-11-10 04:07:51 -0800,212,670 +985,5376,2013-11-06 21:29:44 -0800,212,667 +986,1948,2013-11-10 12:12:36 -0800,212,669 +987,4914,2013-11-11 08:20:41 -0800,212,669 +988,4614,2013-11-10 11:43:12 -0800,213,671 +989,3239,2013-11-07 21:26:08 -0800,214,674 +990,5318,2013-11-12 01:46:58 -0800,214,673 +991,5034,2013-11-12 05:18:35 -0800,214,673 +992,2154,2013-11-07 04:43:40 -0800,214,674 +993,6645,2013-11-11 12:00:00 -0800,214,673 +994,9820,2013-11-12 00:57:38 -0800,214,672 +995,514,2013-11-11 04:20:13 -0800,214,674 +996,9290,2013-11-13 02:39:08 -0800,214,674 +997,9173,2013-11-08 02:11:16 -0800,215,677 +998,6525,2013-11-10 12:25:09 -0800,215,676 +999,5315,2013-11-13 08:07:15 -0800,215,675 +1000,7025,2013-11-07 05:12:25 -0800,215,675 +1001,5657,2013-11-09 12:56:20 -0800,215,677 +1002,8599,2013-11-09 12:45:58 -0800,215,677 +1003,1269,2013-11-09 01:04:43 -0800,216,682 +1004,7439,2013-11-06 14:54:45 -0800,216,680 +1005,4276,2013-11-09 10:26:37 -0800,216,678 +1006,2231,2013-11-09 14:32:53 -0800,216,681 +1007,4300,2013-11-11 21:35:39 -0800,216,680 +1008,6014,2013-11-11 17:30:04 -0800,216,681 +1009,2317,2013-11-06 12:45:58 -0800,216,679 +1010,24,2013-11-10 12:28:36 -0800,216,681 +1011,9240,2013-11-11 00:59:51 -0800,217,683 +1012,4218,2013-11-06 14:19:29 -0800,217,683 +1013,2659,2013-11-13 05:45:25 -0800,217,683 +1014,3268,2013-11-12 17:17:43 -0800,217,683 +1015,2445,2013-11-09 08:34:00 -0800,217,683 +1016,9880,2013-11-09 06:19:13 -0800,217,683 +1017,5869,2013-11-12 22:26:40 -0800,217,683 +1018,3290,2013-11-08 08:00:16 -0800,217,683 +1019,6734,2013-11-10 06:03:17 -0800,217,683 +1020,3317,2013-11-11 19:17:47 -0800,219,689 +1021,7700,2013-11-06 18:55:33 -0800,219,690 +1022,6813,2013-11-12 16:52:21 -0800,220,694 +1023,6841,2013-11-10 02:57:23 -0800,220,694 +1024,6880,2013-11-11 06:53:31 -0800,220,694 +1025,8011,2013-11-06 13:35:13 -0800,221,699 +1026,834,2013-11-13 02:08:07 -0800,221,698 +1027,7023,2013-11-11 22:55:41 -0800,221,695 +1028,4847,2013-11-13 07:50:38 -0800,221,695 +1029,2944,2013-11-13 08:12:50 -0800,222,701 +1030,3878,2013-11-11 16:32:44 -0800,222,703 +1031,5836,2013-11-12 23:26:39 -0800,222,701 +1032,3147,2013-11-13 03:17:10 -0800,223,705 +1033,7019,2013-11-13 00:41:20 -0800,224,707 +1034,9233,2013-11-11 07:25:54 -0800,225,713 +1035,1365,2013-11-12 09:12:32 -0800,226,714 +1036,9054,2013-11-12 23:00:35 -0800,226,714 +1037,9872,2013-11-07 05:40:33 -0800,227,715 +1038,3170,2013-11-07 15:04:27 -0800,227,715 +1039,4587,2013-11-06 19:55:02 -0800,227,715 +1040,1192,2013-11-12 04:42:32 -0800,227,715 +1041,9470,2013-11-11 11:50:11 -0800,228,716 +1042,7220,2013-11-08 04:22:36 -0800,228,716 +1043,7264,2013-11-08 05:02:16 -0800,228,716 +1044,7270,2013-11-07 15:12:20 -0800,228,716 +1045,6619,2013-11-11 11:01:55 -0800,229,719 +1046,2948,2013-11-07 16:01:15 -0800,229,719 +1047,376,2013-11-07 07:45:05 -0800,229,718 +1048,4890,2013-11-07 21:21:11 -0800,229,721 +1049,6217,2013-11-09 23:47:22 -0800,229,720 +1050,5651,2013-11-07 22:08:37 -0800,229,717 +1051,6888,2013-11-08 01:42:54 -0800,229,717 +1052,560,2013-11-10 07:05:39 -0800,229,718 +1053,1259,2013-11-11 14:12:25 -0800,229,720 +1054,9660,2013-11-07 19:19:22 -0800,230,723 +1055,8897,2013-11-13 07:09:20 -0800,230,722 +1056,5517,2013-11-10 10:30:17 -0800,230,724 +1057,6709,2013-11-12 02:25:21 -0800,231,729 +1058,8484,2013-11-08 04:47:52 -0800,231,727 +1059,3852,2013-11-07 04:18:51 -0800,231,725 +1060,7690,2013-11-11 05:18:40 -0800,231,728 +1061,9172,2013-11-06 18:33:16 -0800,231,727 +1062,2370,2013-11-07 00:08:09 -0800,231,729 +1063,2469,2013-11-07 12:40:07 -0800,232,730 +1064,6652,2013-11-10 01:59:53 -0800,232,730 +1065,1275,2013-11-10 18:55:18 -0800,233,733 +1066,1541,2013-11-10 09:47:47 -0800,233,736 +1067,4478,2013-11-11 04:44:27 -0800,233,736 +1068,2570,2013-11-10 01:17:50 -0800,234,737 +1069,3393,2013-11-08 14:43:32 -0800,234,737 +1070,6217,2013-11-10 18:26:49 -0800,235,739 +1071,2827,2013-11-08 14:07:12 -0800,235,739 +1072,5298,2013-11-09 00:03:39 -0800,235,739 +1073,3810,2013-11-10 21:11:10 -0800,235,738 +1074,7737,2013-11-08 22:27:27 -0800,235,739 +1075,4124,2013-11-10 16:43:11 -0800,235,739 +1076,9880,2013-11-07 09:46:20 -0800,235,738 +1077,983,2013-11-12 09:55:32 -0800,235,739 +1078,4275,2013-11-09 09:19:30 -0800,236,740 +1079,649,2013-11-11 16:04:12 -0800,236,740 +1080,6956,2013-11-07 08:58:43 -0800,236,740 +1081,6345,2013-11-11 14:12:16 -0800,236,740 +1082,2364,2013-11-08 05:09:15 -0800,236,740 +1083,4955,2013-11-13 08:19:05 -0800,237,745 +1084,7997,2013-11-06 21:00:10 -0800,237,742 +1085,4823,2013-11-09 22:00:29 -0800,237,741 +1086,2475,2013-11-11 05:46:33 -0800,239,750 +1087,8083,2013-11-11 17:06:21 -0800,239,750 +1088,8668,2013-11-08 22:27:12 -0800,239,750 +1089,6043,2013-11-10 14:57:22 -0800,239,750 +1090,8175,2013-11-09 23:53:55 -0800,239,750 +1091,4268,2013-11-08 10:10:24 -0800,239,750 +1092,6933,2013-11-12 12:17:25 -0800,239,750 +1093,880,2013-11-07 16:46:56 -0800,239,750 +1094,873,2013-11-09 17:14:15 -0800,239,750 +1095,9113,2013-11-10 08:55:25 -0800,240,751 +1096,1761,2013-11-06 18:15:13 -0800,240,755 +1097,5024,2013-11-13 08:02:07 -0800,240,754 +1098,8168,2013-11-10 17:30:09 -0800,241,757 +1099,1335,2013-11-06 13:50:34 -0800,241,759 +1100,6994,2013-11-10 17:36:04 -0800,241,760 +1101,8388,2013-11-10 13:44:46 -0800,241,758 +1102,6142,2013-11-07 21:03:53 -0800,241,758 +1103,3760,2013-11-10 22:12:10 -0800,241,759 +1104,265,2013-11-07 02:03:40 -0800,241,756 +1105,540,2013-11-08 07:42:13 -0800,241,756 +1106,3570,2013-11-07 05:23:08 -0800,241,760 +1107,2831,2013-11-09 15:05:51 -0800,242,762 +1108,3646,2013-11-08 09:47:58 -0800,242,763 +1109,4929,2013-11-12 05:38:19 -0800,242,763 +1110,610,2013-11-06 21:17:25 -0800,243,768 +1111,7430,2013-11-13 07:28:26 -0800,244,769 +1112,4115,2013-11-13 00:03:32 -0800,244,772 +1113,7278,2013-11-11 02:15:20 -0800,244,769 +1114,8479,2013-11-11 04:44:17 -0800,244,770 +1115,2925,2013-11-12 18:20:43 -0800,244,770 +1116,5999,2013-11-08 11:31:12 -0800,244,770 +1117,3876,2013-11-07 15:21:53 -0800,245,774 +1118,3956,2013-11-07 02:14:17 -0800,245,776 +1119,7943,2013-11-08 10:27:24 -0800,245,773 +1120,5665,2013-11-10 13:09:57 -0800,245,776 +1121,2180,2013-11-11 09:03:30 -0800,245,774 +1122,3538,2013-11-07 11:04:03 -0800,245,773 +1123,328,2013-11-10 12:10:40 -0800,245,773 +1124,3686,2013-11-10 23:50:29 -0800,246,778 +1125,1997,2013-11-06 16:40:56 -0800,246,778 +1126,7266,2013-11-08 13:08:26 -0800,246,777 +1127,2222,2013-11-08 20:22:16 -0800,247,780 +1128,1726,2013-11-13 07:16:41 -0800,247,781 +1129,7252,2013-11-08 18:11:59 -0800,247,780 +1130,6783,2013-11-06 11:32:09 -0800,248,784 +1131,796,2013-11-11 08:38:07 -0800,248,785 +1132,1839,2013-11-10 18:49:37 -0800,249,789 +1133,639,2013-11-08 06:34:30 -0800,249,787 +1134,1811,2013-11-08 15:45:50 -0800,249,787 +1135,3722,2013-11-07 21:16:06 -0800,250,790 +1136,2834,2013-11-10 17:28:16 -0800,251,795 +1137,4760,2013-11-07 14:51:41 -0800,251,794 +1138,4651,2013-11-10 00:06:16 -0800,251,795 +1139,2010,2013-11-12 00:05:00 -0800,251,797 +1140,8572,2013-11-08 13:40:18 -0800,251,794 +1141,3927,2013-11-10 15:28:42 -0800,251,796 +1142,8990,2013-11-06 23:36:43 -0800,251,797 +1143,4729,2013-11-13 00:17:15 -0800,252,800 +1144,2617,2013-11-11 18:48:13 -0800,252,799 +1145,4610,2013-11-13 05:32:12 -0800,252,799 +1146,8991,2013-11-07 23:51:08 -0800,252,800 +1147,3295,2013-11-10 23:16:51 -0800,252,799 +1148,4365,2013-11-08 05:55:31 -0800,252,800 +1149,7231,2013-11-11 17:54:41 -0800,252,800 +1150,8642,2013-11-08 05:23:32 -0800,253,802 +1151,6264,2013-11-08 02:52:06 -0800,253,801 +1152,813,2013-11-11 02:13:18 -0800,253,802 +1153,1349,2013-11-09 03:30:19 -0800,253,801 +1154,152,2013-11-09 07:47:23 -0800,253,802 +1155,948,2013-11-12 09:29:26 -0800,253,801 +1156,3753,2013-11-09 23:13:38 -0800,254,803 +1157,2210,2013-11-09 22:35:09 -0800,254,805 +1158,3797,2013-11-06 21:41:02 -0800,254,806 +1159,2619,2013-11-06 22:04:37 -0800,254,803 +1160,5491,2013-11-10 03:47:28 -0800,256,808 +1161,9844,2013-11-08 15:37:54 -0800,256,808 +1162,1878,2013-11-10 06:47:21 -0800,256,808 +1163,1165,2013-11-07 16:35:26 -0800,256,809 +1164,1110,2013-11-08 02:23:45 -0800,256,808 +1165,2580,2013-11-08 05:30:05 -0800,256,808 +1166,2946,2013-11-07 03:38:26 -0800,256,808 +1167,1985,2013-11-12 09:51:12 -0800,256,809 +1168,2453,2013-11-09 06:32:15 -0800,256,809 +1169,2123,2013-11-08 21:20:02 -0800,257,812 +1170,1848,2013-11-12 05:13:45 -0800,257,812 +1171,3722,2013-11-07 02:03:26 -0800,257,812 +1172,9127,2013-11-11 00:46:36 -0800,257,811 +1173,9776,2013-11-07 00:30:00 -0800,257,811 +1174,1520,2013-11-09 23:42:43 -0800,258,813 +1175,9141,2013-11-11 04:56:18 -0800,258,813 +1176,2477,2013-11-13 07:38:36 -0800,258,813 +1177,7809,2013-11-07 08:23:06 -0800,259,816 +1178,1685,2013-11-12 13:58:27 -0800,259,815 +1179,2319,2013-11-11 21:58:17 -0800,259,815 +1180,2028,2013-11-07 17:45:59 -0800,259,814 +1181,5244,2013-11-08 10:12:05 -0800,259,815 +1182,7048,2013-11-08 05:43:03 -0800,259,815 +1183,6922,2013-11-06 19:44:23 -0800,260,818 +1184,8461,2013-11-12 19:17:28 -0800,261,821 +1185,6298,2013-11-07 01:11:01 -0800,261,819 +1186,8754,2013-11-09 11:34:15 -0800,261,819 +1187,1477,2013-11-10 00:30:37 -0800,261,821 +1188,3936,2013-11-08 00:11:17 -0800,262,824 +1189,1143,2013-11-09 02:10:13 -0800,262,823 +1190,9731,2013-11-10 12:17:25 -0800,262,824 +1191,4754,2013-11-11 09:21:49 -0800,262,822 +1192,3434,2013-11-06 15:24:48 -0800,262,823 +1193,2916,2013-11-07 19:26:04 -0800,262,825 +1194,7923,2013-11-10 00:21:02 -0800,262,822 +1195,3927,2013-11-08 01:27:58 -0800,262,823 +1196,4924,2013-11-10 20:41:37 -0800,262,824 +1197,7538,2013-11-07 16:41:36 -0800,263,826 +1198,1732,2013-11-08 07:11:32 -0800,263,826 +1199,941,2013-11-12 09:39:31 -0800,263,829 +1200,8486,2013-11-11 10:42:15 -0800,263,827 +1201,2020,2013-11-07 07:10:01 -0800,263,826 +1202,3879,2013-11-11 01:11:01 -0800,263,829 +1203,56,2013-11-11 11:58:03 -0800,263,828 +1204,8712,2013-11-11 10:40:28 -0800,263,827 +1205,1850,2013-11-12 14:13:54 -0800,263,826 +1206,7765,2013-11-13 00:19:13 -0800,264,831 +1207,742,2013-11-07 08:07:52 -0800,264,831 +1208,6766,2013-11-11 06:57:07 -0800,264,831 +1209,9450,2013-11-09 21:04:23 -0800,264,830 +1210,8327,2013-11-06 12:13:20 -0800,264,831 +1211,7553,2013-11-09 03:36:54 -0800,265,833 +1212,3332,2013-11-11 10:03:00 -0800,265,835 +1213,8965,2013-11-11 18:23:37 -0800,267,837 +1214,7444,2013-11-07 13:12:51 -0800,268,839 +1215,7548,2013-11-12 10:05:33 -0800,268,838 +1216,2459,2013-11-09 06:54:19 -0800,268,839 +1217,8285,2013-11-08 03:24:08 -0800,269,844 +1218,66,2013-11-13 07:52:53 -0800,269,844 +1219,4690,2013-11-09 21:35:23 -0800,269,845 +1220,9350,2013-11-11 11:48:00 -0800,269,845 +1221,2027,2013-11-07 17:46:56 -0800,269,844 +1222,4032,2013-11-10 00:14:42 -0800,269,843 +1223,4935,2013-11-06 08:52:59 -0800,270,847 +1224,8993,2013-11-10 03:29:09 -0800,270,847 +1225,4350,2013-11-09 19:10:25 -0800,270,847 +1226,6055,2013-11-07 08:35:58 -0800,270,847 +1227,6192,2013-11-13 00:18:27 -0800,270,847 +1228,8690,2013-11-07 08:58:03 -0800,271,849 +1229,5128,2013-11-10 09:22:40 -0800,271,851 +1230,3531,2013-11-11 13:19:41 -0800,271,851 +1231,4277,2013-11-10 11:32:13 -0800,271,849 +1232,4726,2013-11-07 08:45:23 -0800,271,851 +1233,1449,2013-11-08 14:26:43 -0800,271,851 +1234,5031,2013-11-11 03:06:10 -0800,272,853 +1235,9800,2013-11-10 18:03:55 -0800,272,853 +1236,3892,2013-11-11 16:01:45 -0800,272,853 +1237,5240,2013-11-11 12:28:52 -0800,272,853 +1238,9571,2013-11-06 10:50:10 -0800,273,854 +1239,8062,2013-11-13 01:04:08 -0800,273,854 +1240,7418,2013-11-09 23:41:36 -0800,273,854 +1241,5144,2013-11-10 16:58:59 -0800,273,854 +1242,6285,2013-11-11 16:10:26 -0800,273,854 +1243,5277,2013-11-09 01:29:04 -0800,273,854 +1244,8122,2013-11-11 10:12:53 -0800,273,854 +1245,1325,2013-11-06 17:35:24 -0800,273,854 +1246,2421,2013-11-11 10:51:40 -0800,273,854 +1247,8623,2013-11-10 16:38:10 -0800,274,858 +1248,9530,2013-11-09 06:25:29 -0800,274,858 +1249,9483,2013-11-11 00:00:20 -0800,274,856 +1250,215,2013-11-08 15:28:46 -0800,274,859 +1251,5228,2013-11-12 09:31:40 -0800,274,856 +1252,9117,2013-11-10 06:27:14 -0800,274,857 +1253,8460,2013-11-07 06:57:42 -0800,274,858 +1254,5342,2013-11-08 19:30:26 -0800,274,857 +1255,2210,2013-11-10 05:43:58 -0800,275,860 +1256,6956,2013-11-10 15:05:42 -0800,275,862 +1257,3613,2013-11-07 04:02:04 -0800,275,863 +1258,6993,2013-11-07 20:25:58 -0800,275,862 +1259,1978,2013-11-08 19:50:47 -0800,275,861 +1260,3372,2013-11-08 01:07:39 -0800,275,863 +1261,2178,2013-11-13 01:53:25 -0800,276,864 +1262,8652,2013-11-10 09:30:29 -0800,276,864 +1263,2827,2013-11-12 21:04:57 -0800,276,868 +1264,7870,2013-11-12 03:34:38 -0800,276,864 +1265,9220,2013-11-10 07:06:40 -0800,277,869 +1266,1050,2013-11-08 21:58:03 -0800,277,869 +1267,8651,2013-11-06 23:50:07 -0800,277,870 +1268,6494,2013-11-07 09:47:07 -0800,277,869 +1269,848,2013-11-08 17:56:36 -0800,277,870 +1270,5491,2013-11-10 14:13:14 -0800,277,869 +1271,3750,2013-11-11 11:02:47 -0800,278,871 +1272,2684,2013-11-12 19:11:32 -0800,278,871 +1273,8829,2013-11-12 13:15:24 -0800,278,871 +1274,8466,2013-11-12 13:35:02 -0800,279,872 +1275,8330,2013-11-07 00:25:15 -0800,280,878 +1276,9432,2013-11-12 09:17:35 -0800,280,877 +1277,8050,2013-11-08 03:59:04 -0800,280,877 +1278,50,2013-11-08 22:35:43 -0800,280,878 +1279,6178,2013-11-06 21:53:16 -0800,280,878 +1280,2744,2013-11-08 21:59:47 -0800,280,879 +1281,482,2013-11-11 21:50:41 -0800,280,878 +1282,720,2013-11-10 09:37:00 -0800,280,879 +1283,2138,2013-11-10 08:23:56 -0800,283,889 +1284,1960,2013-11-10 02:21:22 -0800,283,887 +1285,7059,2013-11-07 09:59:52 -0800,283,889 +1286,8451,2013-11-09 16:26:31 -0800,283,890 +1287,7693,2013-11-07 14:11:41 -0800,283,888 +1288,1675,2013-11-12 23:20:14 -0800,283,889 +1289,1464,2013-11-08 08:42:16 -0800,283,887 +1290,1160,2013-11-08 10:31:29 -0800,284,891 +1291,1694,2013-11-09 06:11:39 -0800,284,891 +1292,2559,2013-11-07 21:52:11 -0800,284,892 +1293,4512,2013-11-12 18:21:16 -0800,284,891 +1294,6690,2013-11-07 03:26:57 -0800,285,893 +1295,6548,2013-11-07 10:17:55 -0800,285,894 +1296,3985,2013-11-13 01:12:51 -0800,286,899 +1297,4058,2013-11-07 14:13:54 -0800,286,899 +1298,5435,2013-11-06 15:08:26 -0800,286,895 +1299,4910,2013-11-12 18:19:15 -0800,287,901 +1300,582,2013-11-10 04:27:54 -0800,287,903 +1301,8816,2013-11-09 17:24:56 -0800,287,902 +1302,3443,2013-11-11 00:10:31 -0800,287,903 +1303,3550,2013-11-08 09:46:06 -0800,287,902 +1304,6755,2013-11-08 17:53:43 -0800,287,901 +1305,7245,2013-11-12 17:25:25 -0800,288,904 +1306,9537,2013-11-12 04:23:45 -0800,289,906 +1307,8550,2013-11-12 05:21:14 -0800,289,905 +1308,7847,2013-11-12 16:07:48 -0800,289,906 +1309,5992,2013-11-10 20:37:14 -0800,289,906 +1310,1019,2013-11-12 21:41:45 -0800,289,906 +1311,8187,2013-11-12 13:07:40 -0800,290,909 +1312,3626,2013-11-09 06:16:38 -0800,290,910 +1313,370,2013-11-06 14:16:15 -0800,290,908 +1314,1964,2013-11-10 23:18:10 -0800,290,908 +1315,5258,2013-11-11 01:58:37 -0800,290,911 +1316,2593,2013-11-07 12:00:56 -0800,290,909 +1317,4962,2013-11-10 12:58:13 -0800,290,908 +1318,3137,2013-11-07 23:15:11 -0800,290,908 +1319,3318,2013-11-09 20:07:22 -0800,290,909 +1320,5091,2013-11-08 02:20:26 -0800,291,912 +1321,7751,2013-11-06 10:33:18 -0800,291,912 +1322,6099,2013-11-08 18:45:37 -0800,292,914 +1323,1082,2013-11-11 13:58:19 -0800,292,914 +1324,4675,2013-11-11 12:32:21 -0800,292,914 +1325,3249,2013-11-12 22:40:08 -0800,292,914 +1326,1591,2013-11-06 17:31:07 -0800,292,914 +1327,121,2013-11-09 07:01:28 -0800,292,914 +1328,3340,2013-11-12 04:35:17 -0800,294,921 +1329,8890,2013-11-11 01:50:57 -0800,294,919 +1330,8971,2013-11-12 14:08:23 -0800,294,921 +1331,5643,2013-11-11 05:54:36 -0800,294,921 +1332,1973,2013-11-07 14:16:10 -0800,294,921 +1333,9630,2013-11-08 19:32:46 -0800,294,920 +1334,5999,2013-11-13 08:13:34 -0800,295,922 +1335,4918,2013-11-07 09:12:03 -0800,295,922 +1336,5585,2013-11-07 05:38:13 -0800,296,926 +1337,5080,2013-11-08 20:27:41 -0800,296,927 +1338,8979,2013-11-10 13:55:29 -0800,296,925 +1339,4686,2013-11-12 02:28:40 -0800,296,926 +1340,3536,2013-11-10 00:35:42 -0800,296,927 +1341,8739,2013-11-13 02:42:32 -0800,297,928 +1342,1156,2013-11-07 13:32:22 -0800,297,928 +1343,1618,2013-11-10 13:02:11 -0800,297,928 +1344,3354,2013-11-06 10:50:22 -0800,299,936 +1345,1957,2013-11-09 15:33:14 -0800,299,937 +1346,9746,2013-11-06 14:48:38 -0800,300,938 +1347,5147,2013-11-12 07:20:12 -0800,300,938 +1348,7548,2013-11-06 16:45:47 -0800,300,938 +1349,2659,2013-11-10 08:31:46 -0800,300,938 +1350,6875,2013-11-12 04:32:16 -0800,300,938 +1351,8233,2013-11-11 10:53:36 -0800,300,938 +1352,8489,2013-11-09 11:23:07 -0800,301,942 +1353,8876,2013-11-10 15:12:42 -0800,302,943 +1354,4054,2013-11-07 23:02:05 -0800,302,943 +1355,6550,2013-11-10 11:54:39 -0800,302,943 +1356,9850,2013-11-12 17:37:16 -0800,302,943 +1357,8652,2013-11-09 21:59:28 -0800,302,943 +1358,6848,2013-11-12 00:53:39 -0800,303,946 +1359,665,2013-11-10 19:25:03 -0800,303,946 +1360,5087,2013-11-12 07:56:20 -0800,303,946 +1361,2974,2013-11-08 03:26:46 -0800,304,949 +1362,9127,2013-11-12 08:20:57 -0800,304,947 +1363,340,2013-11-07 08:26:42 -0800,304,948 +1364,59,2013-11-07 08:01:53 -0800,304,949 +1365,918,2013-11-11 00:14:05 -0800,304,948 +1366,2924,2013-11-13 04:48:51 -0800,304,949 +1367,3646,2013-11-09 19:14:01 -0800,304,949 +1368,3040,2013-11-12 21:50:23 -0800,305,950 +1369,9223,2013-11-09 20:14:12 -0800,305,951 +1370,1343,2013-11-10 07:34:30 -0800,305,951 +1371,7570,2013-11-11 20:53:16 -0800,305,950 +1372,816,2013-11-11 13:47:23 -0800,305,951 +1373,2048,2013-11-10 03:05:25 -0800,305,951 +1374,6929,2013-11-11 23:43:17 -0800,305,950 +1375,1680,2013-11-11 15:15:53 -0800,305,951 +1376,4131,2013-11-11 14:45:18 -0800,305,951 +1377,6877,2013-11-09 17:03:16 -0800,306,952 +1378,2220,2013-11-11 00:31:22 -0800,306,952 +1379,3268,2013-11-08 11:44:30 -0800,307,955 +1380,4590,2013-11-11 23:08:17 -0800,308,958 +1381,3710,2013-11-08 00:41:07 -0800,308,958 +1382,3290,2013-11-08 07:29:47 -0800,308,959 +1383,2874,2013-11-09 23:34:34 -0800,308,956 +1384,9360,2013-11-07 15:31:23 -0800,309,960 +1385,9238,2013-11-10 18:46:48 -0800,309,960 +1386,1557,2013-11-07 11:35:24 -0800,309,960 +1387,5510,2013-11-07 04:41:07 -0800,309,960 +1388,7623,2013-11-09 14:14:15 -0800,309,960 +1389,885,2013-11-11 10:14:31 -0800,309,960 +1390,2662,2013-11-08 19:32:07 -0800,309,960 +1391,3135,2013-11-09 10:05:33 -0800,309,960 +1392,7430,2013-11-11 11:55:23 -0800,310,961 +1393,143,2013-11-09 21:59:07 -0800,311,965 +1394,2088,2013-11-11 17:09:16 -0800,311,964 +1395,2352,2013-11-09 07:04:03 -0800,311,964 +1396,5471,2013-11-08 12:44:41 -0800,312,967 +1397,4599,2013-11-10 23:16:54 -0800,312,966 +1398,7641,2013-11-07 07:32:00 -0800,312,967 +1399,7853,2013-11-10 08:32:48 -0800,312,966 +1400,1342,2013-11-10 01:45:08 -0800,312,968 +1401,1081,2013-11-09 23:31:20 -0800,312,966 +1402,7920,2013-11-08 09:07:55 -0800,312,967 +1403,4350,2013-11-12 23:23:58 -0800,312,966 +1404,817,2013-11-09 12:30:44 -0800,312,968 +1405,7822,2013-11-09 13:56:28 -0800,313,971 +1406,7455,2013-11-08 17:00:42 -0800,313,970 +1407,8553,2013-11-08 19:53:40 -0800,313,969 +1408,3188,2013-11-06 22:07:10 -0800,314,973 +1409,1014,2013-11-11 21:07:45 -0800,314,974 +1410,5092,2013-11-07 18:05:43 -0800,314,976 +1411,7798,2013-11-12 21:32:50 -0800,314,975 +1412,5370,2013-11-12 19:46:33 -0800,314,973 +1413,1028,2013-11-08 01:40:01 -0800,314,975 +1414,3619,2013-11-08 01:10:15 -0800,314,973 +1415,3635,2013-11-12 17:31:36 -0800,315,977 +1416,4327,2013-11-10 16:53:32 -0800,315,977 +1417,2636,2013-11-08 21:20:11 -0800,315,978 +1418,4337,2013-11-08 07:24:53 -0800,316,980 +1419,8950,2013-11-09 00:59:38 -0800,316,980 +1420,6116,2013-11-11 05:22:47 -0800,316,979 +1421,8650,2013-11-11 18:44:05 -0800,316,980 +1422,5892,2013-11-11 00:20:11 -0800,316,981 +1423,3990,2013-11-07 19:51:01 -0800,316,980 +1424,4926,2013-11-06 08:56:31 -0800,317,983 +1425,2118,2013-11-08 09:40:14 -0800,317,983 +1426,9426,2013-11-08 06:09:33 -0800,317,982 +1427,8415,2013-11-11 19:13:58 -0800,318,986 +1428,539,2013-11-09 17:03:21 -0800,318,986 +1429,1283,2013-11-12 01:17:43 -0800,318,986 +1430,927,2013-11-10 14:16:43 -0800,319,990 +1431,5377,2013-11-07 04:32:57 -0800,319,989 +1432,6777,2013-11-07 07:41:36 -0800,319,989 +1433,3433,2013-11-11 20:20:15 -0800,319,988 +1434,3215,2013-11-12 09:26:52 -0800,320,991 +1435,3011,2013-11-08 18:07:11 -0800,321,993 +1436,8246,2013-11-12 19:13:10 -0800,321,994 +1437,4360,2013-11-08 20:54:59 -0800,321,994 +1438,2988,2013-11-10 00:01:04 -0800,322,997 +1439,8865,2013-11-11 16:27:05 -0800,322,996 +1440,461,2013-11-11 12:10:47 -0800,323,1001 +1441,9727,2013-11-11 03:07:09 -0800,324,1003 +1442,8430,2013-11-08 05:53:32 -0800,324,1002 +1443,1341,2013-11-06 22:33:05 -0800,324,1002 +1444,4676,2013-11-06 22:37:28 -0800,325,1005 +1445,2341,2013-11-09 22:26:01 -0800,325,1005 +1446,669,2013-11-07 08:10:46 -0800,325,1006 +1447,8036,2013-11-09 19:58:14 -0800,325,1006 +1448,4685,2013-11-08 04:25:25 -0800,325,1008 +1449,2679,2013-11-07 08:19:18 -0800,326,1010 +1450,2010,2013-11-12 04:19:33 -0800,327,1015 +1451,0,2013-11-08 04:50:03 -0800,327,1014 +1452,6361,2013-11-07 02:42:33 -0800,327,1016 +1453,7754,2013-11-07 07:27:22 -0800,327,1016 +1454,5156,2013-11-07 23:27:28 -0800,327,1013 +1455,6645,2013-11-10 14:55:15 -0800,327,1016 +1456,9858,2013-11-11 20:37:06 -0800,327,1017 +1457,1312,2013-11-07 17:04:30 -0800,328,1018 +1458,4214,2013-11-08 13:43:27 -0800,328,1018 +1459,3636,2013-11-10 19:21:08 -0800,328,1018 +1460,655,2013-11-11 03:00:03 -0800,328,1018 +1461,2939,2013-11-07 20:40:20 -0800,328,1018 +1462,8659,2013-11-07 17:33:29 -0800,329,1019 +1463,7284,2013-11-07 13:25:06 -0800,330,1020 +1464,2420,2013-11-09 20:41:14 -0800,331,1023 +1465,3870,2013-11-07 14:39:02 -0800,331,1023 +1466,4547,2013-11-08 06:20:19 -0800,331,1023 +1467,131,2013-11-08 02:53:56 -0800,331,1023 +1468,4826,2013-11-07 01:20:46 -0800,332,1024 +1469,1821,2013-11-11 01:01:08 -0800,332,1024 +1470,549,2013-11-08 15:28:46 -0800,332,1025 +1471,8184,2013-11-11 16:06:56 -0800,332,1024 +1472,4852,2013-11-08 11:49:56 -0800,332,1024 +1473,9266,2013-11-07 16:21:14 -0800,332,1024 +1474,8298,2013-11-11 00:22:50 -0800,332,1025 +1475,3840,2013-11-10 12:19:12 -0800,332,1024 +1476,2737,2013-11-11 19:11:41 -0800,332,1025 +1477,6881,2013-11-07 22:57:51 -0800,333,1030 +1478,4760,2013-11-11 14:40:26 -0800,333,1027 +1479,3052,2013-11-10 11:21:05 -0800,334,1031 +1480,4418,2013-11-09 20:08:34 -0800,334,1032 +1481,1689,2013-11-12 23:58:59 -0800,334,1032 +1482,6117,2013-11-10 09:38:27 -0800,334,1032 +1483,7297,2013-11-09 10:31:45 -0800,334,1033 +1484,1411,2013-11-07 09:43:29 -0800,334,1032 +1485,3847,2013-11-10 14:22:27 -0800,335,1035 +1486,311,2013-11-08 17:38:40 -0800,335,1034 +1487,3036,2013-11-11 14:41:07 -0800,335,1035 +1488,7952,2013-11-10 02:35:32 -0800,336,1038 +1489,788,2013-11-08 21:49:48 -0800,336,1036 +1490,458,2013-11-09 04:59:53 -0800,337,1041 +1491,6675,2013-11-09 11:55:35 -0800,337,1041 +1492,5846,2013-11-09 21:32:22 -0800,338,1042 +1493,4175,2013-11-10 03:50:28 -0800,338,1042 +1494,9777,2013-11-10 08:24:38 -0800,338,1042 +1495,2621,2013-11-07 01:04:12 -0800,338,1042 +1496,9830,2013-11-07 14:38:25 -0800,338,1042 +1497,681,2013-11-12 11:12:02 -0800,338,1042 +1498,534,2013-11-07 22:43:55 -0800,338,1042 +1499,3938,2013-11-11 22:51:54 -0800,339,1043 +1500,9325,2013-11-12 14:39:49 -0800,339,1043 +1501,9478,2013-11-13 04:14:09 -0800,339,1043 +1502,2546,2013-11-11 00:24:09 -0800,339,1043 +1503,4998,2013-11-09 07:28:00 -0800,339,1043 +1504,8822,2013-11-13 02:09:10 -0800,339,1043 +1505,2559,2013-11-10 17:16:59 -0800,339,1043 +1506,5187,2013-11-10 09:43:34 -0800,339,1043 +1507,315,2013-11-07 23:41:20 -0800,340,1044 +1508,1719,2013-11-08 20:27:45 -0800,340,1044 +1509,9156,2013-11-12 06:25:06 -0800,340,1044 +1510,8398,2013-11-12 17:03:27 -0800,340,1044 +1511,5722,2013-11-08 10:31:01 -0800,340,1044 +1512,2554,2013-11-11 01:01:41 -0800,340,1044 +1513,6359,2013-11-07 08:11:21 -0800,340,1044 +1514,8616,2013-11-08 18:03:15 -0800,341,1046 +1515,5868,2013-11-12 01:31:55 -0800,341,1047 +1516,8023,2013-11-11 17:21:25 -0800,341,1046 +1517,1028,2013-11-06 15:11:40 -0800,341,1045 +1518,7692,2013-11-09 10:18:21 -0800,341,1046 +1519,5511,2013-11-11 09:55:25 -0800,342,1048 +1520,7443,2013-11-07 06:26:58 -0800,342,1048 +1521,9861,2013-11-11 20:17:36 -0800,342,1048 +1522,7027,2013-11-06 15:56:31 -0800,342,1048 +1523,7520,2013-11-12 00:07:27 -0800,342,1048 +1524,5387,2013-11-10 15:37:18 -0800,342,1048 +1525,1613,2013-11-10 00:19:41 -0800,342,1048 +1526,2360,2013-11-07 14:00:49 -0800,342,1048 +1527,4517,2013-11-13 06:57:25 -0800,343,1053 +1528,1689,2013-11-10 04:28:49 -0800,343,1049 +1529,6184,2013-11-13 01:17:46 -0800,343,1052 +1530,8672,2013-11-07 22:51:03 -0800,343,1050 +1531,9850,2013-11-08 16:33:43 -0800,343,1051 +1532,8828,2013-11-10 13:51:22 -0800,344,1054 +1533,8040,2013-11-09 18:37:15 -0800,344,1054 +1534,1573,2013-11-11 05:52:49 -0800,345,1058 +1535,9440,2013-11-08 15:21:36 -0800,345,1060 +1536,1330,2013-11-07 14:38:16 -0800,345,1060 +1537,2829,2013-11-13 05:12:30 -0800,345,1059 +1538,1330,2013-11-10 18:42:47 -0800,345,1061 +1539,9812,2013-11-07 13:40:53 -0800,345,1060 +1540,7047,2013-11-13 05:11:14 -0800,345,1058 +1541,4157,2013-11-07 08:23:12 -0800,346,1062 +1542,3090,2013-11-12 16:04:11 -0800,346,1062 +1543,5445,2013-11-07 17:34:50 -0800,346,1062 +1544,8757,2013-11-10 12:17:32 -0800,346,1063 +1545,1797,2013-11-08 18:43:23 -0800,347,1064 +1546,5528,2013-11-10 18:54:37 -0800,347,1064 +1547,836,2013-11-08 19:59:40 -0800,347,1065 +1548,4750,2013-11-08 14:01:11 -0800,347,1065 +1549,9769,2013-11-10 07:45:36 -0800,347,1066 +1550,2061,2013-11-07 20:02:43 -0800,347,1064 +1551,4286,2013-11-09 21:38:36 -0800,347,1065 +1552,9480,2013-11-12 12:36:22 -0800,348,1067 +1553,4099,2013-11-07 13:05:08 -0800,348,1069 +1554,9192,2013-11-07 17:44:41 -0800,348,1067 +1555,7184,2013-11-08 06:07:11 -0800,348,1067 +1556,6219,2013-11-08 19:02:24 -0800,348,1068 +1557,6321,2013-11-10 06:46:36 -0800,348,1067 +1558,4052,2013-11-07 08:12:46 -0800,349,1071 +1559,1842,2013-11-09 04:56:01 -0800,349,1072 +1560,4046,2013-11-06 16:13:02 -0800,349,1072 +1561,8671,2013-11-09 12:58:29 -0800,349,1071 +1562,3645,2013-11-08 22:11:12 -0800,349,1072 +1563,8156,2013-11-12 22:22:16 -0800,349,1071 +1564,6970,2013-11-11 14:13:44 -0800,349,1072 +1565,1244,2013-11-10 02:21:02 -0800,349,1071 +1566,4876,2013-11-11 03:23:11 -0800,349,1072 +1567,9879,2013-11-12 17:33:49 -0800,350,1074 +1568,7350,2013-11-07 06:51:40 -0800,351,1077 +1569,3070,2013-11-09 01:25:16 -0800,351,1077 +1570,8385,2013-11-06 15:38:34 -0800,351,1079 +1571,7326,2013-11-10 18:33:01 -0800,351,1081 +1572,81,2013-11-10 23:00:44 -0800,352,1083 +1573,1169,2013-11-12 06:36:32 -0800,352,1082 +1574,9194,2013-11-12 07:36:24 -0800,352,1082 +1575,2630,2013-11-09 10:26:18 -0800,352,1084 +1576,5790,2013-11-10 16:23:59 -0800,352,1084 +1577,2530,2013-11-11 19:38:04 -0800,353,1086 +1578,3965,2013-11-10 08:02:11 -0800,353,1086 +1579,8817,2013-11-11 15:14:23 -0800,353,1086 +1580,1375,2013-11-11 15:23:13 -0800,353,1086 +1581,5340,2013-11-07 15:56:43 -0800,353,1086 +1582,3390,2013-11-06 23:52:35 -0800,353,1086 +1583,7995,2013-11-08 12:03:03 -0800,353,1086 +1584,3030,2013-11-10 03:16:16 -0800,354,1091 +1585,6751,2013-11-08 17:29:25 -0800,354,1087 +1586,9077,2013-11-07 20:16:57 -0800,354,1091 +1587,3984,2013-11-07 10:33:21 -0800,354,1087 +1588,7331,2013-11-10 05:24:36 -0800,355,1093 +1589,1945,2013-11-07 05:44:27 -0800,355,1092 +1590,6867,2013-11-09 23:01:33 -0800,355,1094 +1591,1780,2013-11-07 23:50:35 -0800,356,1097 +1592,7342,2013-11-07 02:36:12 -0800,356,1095 +1593,6993,2013-11-11 07:17:36 -0800,356,1097 +1594,8644,2013-11-07 11:31:57 -0800,356,1095 +1595,6283,2013-11-10 12:20:29 -0800,356,1095 +1596,2647,2013-11-11 02:02:16 -0800,357,1099 +1597,3789,2013-11-11 09:16:53 -0800,357,1100 +1598,2767,2013-11-06 22:54:15 -0800,357,1098 +1599,2512,2013-11-08 19:37:12 -0800,357,1099 +1600,3810,2013-11-11 03:55:24 -0800,357,1099 +1601,5282,2013-11-07 20:24:23 -0800,357,1098 +1602,4217,2013-11-10 15:55:28 -0800,358,1101 +1603,2774,2013-11-12 12:05:17 -0800,358,1101 +1604,6036,2013-11-12 22:08:58 -0800,359,1102 +1605,8915,2013-11-11 00:34:42 -0800,359,1103 +1606,19,2013-11-10 15:08:40 -0800,359,1103 +1607,564,2013-11-09 01:03:28 -0800,359,1103 +1608,1667,2013-11-11 14:41:48 -0800,359,1103 +1609,483,2013-11-12 17:41:17 -0800,359,1102 +1610,8091,2013-11-08 02:58:23 -0800,360,1104 +1611,4122,2013-11-09 11:52:10 -0800,360,1104 +1612,7818,2013-11-11 09:14:01 -0800,360,1104 +1613,99,2013-11-08 07:29:02 -0800,360,1104 +1614,8983,2013-11-09 11:58:48 -0800,360,1106 +1615,844,2013-11-09 18:38:23 -0800,362,1112 +1616,2297,2013-11-10 16:07:09 -0800,362,1112 +1617,3197,2013-11-07 06:56:11 -0800,362,1111 +1618,4177,2013-11-12 23:37:19 -0800,362,1111 +1619,1930,2013-11-09 10:37:15 -0800,362,1111 +1620,5148,2013-11-13 08:08:46 -0800,362,1112 +1621,6297,2013-11-06 09:05:43 -0800,362,1112 +1622,8682,2013-11-07 12:42:48 -0800,363,1113 +1623,3476,2013-11-08 13:36:57 -0800,363,1114 +1624,6827,2013-11-13 02:27:15 -0800,363,1113 +1625,4514,2013-11-10 16:19:51 -0800,363,1114 +1626,4692,2013-11-11 09:01:03 -0800,363,1113 +1627,1231,2013-11-07 02:06:07 -0800,363,1114 +1628,9518,2013-11-09 16:03:31 -0800,364,1116 +1629,3327,2013-11-11 03:42:05 -0800,364,1116 +1630,2476,2013-11-08 11:43:37 -0800,364,1119 +1631,5243,2013-11-07 00:34:43 -0800,364,1117 +1632,1777,2013-11-12 09:19:10 -0800,364,1118 +1633,4420,2013-11-10 17:38:05 -0800,364,1118 +1634,7834,2013-11-07 04:47:21 -0800,365,1121 +1635,4766,2013-11-09 15:55:52 -0800,366,1125 +1636,1134,2013-11-07 05:47:59 -0800,366,1123 +1637,4875,2013-11-07 13:14:24 -0800,366,1123 +1638,8968,2013-11-06 20:59:31 -0800,366,1123 +1639,344,2013-11-11 15:47:02 -0800,366,1126 +1640,566,2013-11-09 13:17:01 -0800,366,1124 +1641,7119,2013-11-11 04:10:47 -0800,366,1126 +1642,8274,2013-11-12 20:09:11 -0800,367,1131 +1643,4897,2013-11-13 05:00:22 -0800,367,1128 +1644,7922,2013-11-07 00:31:56 -0800,367,1130 +1645,5878,2013-11-13 03:43:15 -0800,368,1132 +1646,5991,2013-11-07 23:43:10 -0800,368,1132 +1647,5263,2013-11-10 09:29:19 -0800,369,1138 +1648,3750,2013-11-06 20:01:27 -0800,369,1138 +1649,4581,2013-11-10 12:57:34 -0800,369,1137 +1650,8545,2013-11-09 06:29:13 -0800,369,1137 +1651,5012,2013-11-07 07:13:06 -0800,369,1138 +1652,2261,2013-11-12 22:10:45 -0800,369,1137 +1653,7719,2013-11-12 20:26:02 -0800,369,1138 +1654,2835,2013-11-09 14:27:36 -0800,369,1138 +1655,4047,2013-11-09 22:37:03 -0800,369,1139 +1656,4740,2013-11-12 15:59:36 -0800,370,1143 +1657,4575,2013-11-11 23:37:25 -0800,370,1141 +1658,7190,2013-11-08 01:22:16 -0800,370,1143 +1659,236,2013-11-12 23:05:08 -0800,370,1142 +1660,2630,2013-11-07 17:49:03 -0800,370,1143 +1661,6620,2013-11-10 14:39:06 -0800,370,1141 +1662,2071,2013-11-06 09:39:59 -0800,370,1141 +1663,348,2013-11-07 11:28:50 -0800,371,1145 +1664,7940,2013-11-12 15:14:08 -0800,371,1145 +1665,9899,2013-11-10 19:26:40 -0800,371,1148 +1666,6183,2013-11-12 11:27:34 -0800,371,1145 +1667,5876,2013-11-07 21:41:37 -0800,371,1147 +1668,813,2013-11-09 13:42:14 -0800,371,1145 +1669,9128,2013-11-10 19:18:43 -0800,371,1146 +1670,8667,2013-11-09 04:50:18 -0800,372,1151 +1671,8563,2013-11-10 01:24:42 -0800,372,1153 +1672,1934,2013-11-09 23:08:25 -0800,372,1150 +1673,1577,2013-11-06 10:04:12 -0800,372,1153 +1674,9468,2013-11-07 18:40:21 -0800,373,1158 +1675,9770,2013-11-10 02:09:08 -0800,373,1156 +1676,6822,2013-11-09 01:56:21 -0800,375,1161 +1677,7423,2013-11-13 01:59:53 -0800,376,1165 +1678,6347,2013-11-10 17:43:09 -0800,376,1165 +1679,5830,2013-11-09 06:58:27 -0800,376,1165 +1680,4418,2013-11-09 21:48:23 -0800,376,1165 +1681,3754,2013-11-12 17:19:51 -0800,376,1165 +1682,6052,2013-11-07 08:21:36 -0800,376,1165 +1683,6258,2013-11-09 04:08:17 -0800,377,1166 +1684,7287,2013-11-06 21:37:02 -0800,377,1166 +1685,5737,2013-11-08 08:40:20 -0800,377,1167 +1686,6172,2013-11-08 20:45:34 -0800,377,1166 +1687,225,2013-11-10 04:46:07 -0800,378,1168 +1688,3900,2013-11-12 01:26:12 -0800,378,1168 +1689,2153,2013-11-08 22:02:47 -0800,378,1168 +1690,7181,2013-11-11 02:05:34 -0800,378,1168 +1691,6450,2013-11-09 01:53:47 -0800,378,1168 +1692,8840,2013-11-07 23:06:23 -0800,378,1168 +1693,8274,2013-11-10 08:59:04 -0800,378,1168 +1694,8069,2013-11-13 01:06:43 -0800,378,1168 +1695,2871,2013-11-10 22:06:34 -0800,378,1168 +1696,3886,2013-11-06 14:16:49 -0800,379,1170 +1697,9874,2013-11-06 22:57:51 -0800,379,1169 +1698,9395,2013-11-12 17:16:02 -0800,379,1173 +1699,3121,2013-11-07 11:16:45 -0800,379,1172 +1700,1564,2013-11-09 18:51:12 -0800,380,1175 +1701,3610,2013-11-11 07:36:20 -0800,380,1176 +1702,2343,2013-11-12 17:40:05 -0800,380,1174 +1703,9510,2013-11-09 13:27:05 -0800,380,1177 +1704,1735,2013-11-12 02:47:21 -0800,381,1178 +1705,2143,2013-11-13 06:19:40 -0800,382,1182 +1706,5174,2013-11-12 00:53:26 -0800,382,1182 +1707,4422,2013-11-06 16:36:24 -0800,382,1182 +1708,6520,2013-11-09 19:20:08 -0800,383,1186 +1709,1310,2013-11-08 08:27:28 -0800,383,1184 +1710,9613,2013-11-06 18:39:36 -0800,383,1183 +1711,2185,2013-11-11 00:57:54 -0800,383,1184 +1712,9784,2013-11-11 00:18:42 -0800,384,1188 +1713,4350,2013-11-11 23:41:32 -0800,384,1187 +1714,1539,2013-11-11 02:45:23 -0800,384,1188 +1715,9332,2013-11-11 18:32:23 -0800,384,1187 +1716,1011,2013-11-12 21:17:29 -0800,384,1187 +1717,1761,2013-11-07 13:44:08 -0800,384,1187 +1718,4881,2013-11-11 20:03:56 -0800,384,1187 +1719,9772,2013-11-08 01:23:39 -0800,385,1190 +1720,8486,2013-11-07 05:42:09 -0800,385,1189 +1721,1642,2013-11-12 01:40:51 -0800,385,1190 +1722,4117,2013-11-12 07:17:30 -0800,386,1191 +1723,2986,2013-11-11 23:25:22 -0800,386,1192 +1724,5851,2013-11-07 06:28:16 -0800,386,1192 +1725,3193,2013-11-06 13:15:19 -0800,386,1192 +1726,6786,2013-11-09 03:20:37 -0800,386,1192 +1727,3112,2013-11-11 01:25:44 -0800,387,1193 +1728,2133,2013-11-07 01:27:21 -0800,387,1194 +1729,8579,2013-11-12 02:12:48 -0800,387,1194 +1730,9860,2013-11-09 12:26:30 -0800,387,1193 +1731,1326,2013-11-11 12:20:52 -0800,387,1194 +1732,2775,2013-11-10 03:50:36 -0800,387,1194 +1733,765,2013-11-09 21:56:28 -0800,387,1194 +1734,9670,2013-11-07 11:47:00 -0800,387,1193 +1735,6963,2013-11-07 18:22:28 -0800,388,1196 +1736,1176,2013-11-07 05:57:58 -0800,388,1195 +1737,7318,2013-11-08 11:29:25 -0800,388,1196 +1738,8059,2013-11-07 04:43:48 -0800,388,1196 +1739,3818,2013-11-11 03:29:19 -0800,389,1197 +1740,6036,2013-11-10 19:40:08 -0800,389,1197 +1741,13,2013-11-10 11:47:21 -0800,389,1197 +1742,975,2013-11-12 22:16:31 -0800,389,1197 +1743,2564,2013-11-08 14:23:33 -0800,390,1201 +1744,1957,2013-11-06 15:19:03 -0800,390,1202 +1745,2122,2013-11-13 03:53:23 -0800,390,1199 +1746,1653,2013-11-07 06:42:02 -0800,390,1200 +1747,2049,2013-11-09 23:51:23 -0800,390,1202 +1748,9656,2013-11-09 10:49:30 -0800,390,1198 +1749,360,2013-11-10 01:12:57 -0800,391,1203 +1750,2454,2013-11-11 16:18:17 -0800,392,1206 +1751,8078,2013-11-11 01:47:55 -0800,392,1205 +1752,8257,2013-11-07 04:42:14 -0800,392,1206 +1753,1129,2013-11-07 01:47:21 -0800,392,1206 +1754,6191,2013-11-12 22:27:13 -0800,392,1206 +1755,9845,2013-11-09 00:25:41 -0800,393,1207 +1756,5646,2013-11-07 23:06:39 -0800,393,1211 +1757,6163,2013-11-10 23:41:52 -0800,393,1211 +1758,2432,2013-11-09 11:12:50 -0800,393,1211 +1759,93,2013-11-11 07:10:18 -0800,393,1210 +1760,8425,2013-11-08 12:02:41 -0800,393,1209 +1761,9685,2013-11-07 01:06:03 -0800,393,1209 +1762,2436,2013-11-12 18:41:04 -0800,393,1207 +1763,5343,2013-11-06 10:27:51 -0800,394,1212 +1764,1376,2013-11-08 21:01:58 -0800,394,1212 +1765,7765,2013-11-09 08:04:08 -0800,394,1214 +1766,2096,2013-11-06 12:16:52 -0800,394,1214 +1767,8410,2013-11-10 12:35:38 -0800,394,1213 +1768,8088,2013-11-11 05:33:36 -0800,395,1216 +1769,981,2013-11-11 08:32:07 -0800,395,1216 +1770,6520,2013-11-09 20:57:49 -0800,395,1215 +1771,888,2013-11-11 06:29:31 -0800,395,1217 +1772,3459,2013-11-09 09:13:56 -0800,395,1215 +1773,3058,2013-11-13 06:40:51 -0800,395,1217 +1774,1227,2013-11-09 18:18:22 -0800,395,1217 +1775,2717,2013-11-09 01:27:52 -0800,395,1215 +1776,9068,2013-11-10 11:55:05 -0800,395,1217 +1777,4355,2013-11-10 17:31:29 -0800,396,1218 +1778,2583,2013-11-07 06:58:35 -0800,396,1218 +1779,8320,2013-11-12 08:22:22 -0800,396,1218 +1780,1613,2013-11-13 05:35:51 -0800,396,1218 +1781,856,2013-11-11 17:48:21 -0800,396,1218 +1782,4333,2013-11-11 07:00:35 -0800,396,1218 +1783,6536,2013-11-07 03:24:19 -0800,397,1220 +1784,4148,2013-11-12 07:41:35 -0800,397,1219 +1785,8747,2013-11-12 07:25:20 -0800,398,1223 +1786,8466,2013-11-10 06:14:46 -0800,399,1227 +1787,933,2013-11-07 11:02:51 -0800,399,1225 +1788,7125,2013-11-11 13:01:36 -0800,399,1226 +1789,9180,2013-11-10 20:59:00 -0800,399,1227 +1790,7433,2013-11-09 09:45:47 -0800,399,1228 +1791,5574,2013-11-10 18:48:48 -0800,399,1228 +1792,2046,2013-11-11 10:40:44 -0800,400,1232 +1793,7322,2013-11-07 03:44:16 -0800,400,1232 +1794,8881,2013-11-07 23:16:26 -0800,401,1235 +1795,6225,2013-11-08 08:07:20 -0800,401,1234 +1796,7740,2013-11-13 04:33:25 -0800,402,1236 +1797,2640,2013-11-10 18:00:36 -0800,402,1236 +1798,6670,2013-11-06 23:48:14 -0800,402,1236 +1799,7462,2013-11-12 13:19:18 -0800,402,1236 +1800,5250,2013-11-08 07:47:49 -0800,402,1236 +1801,3534,2013-11-06 12:51:35 -0800,402,1236 +1802,8097,2013-11-10 10:04:00 -0800,403,1237 +1803,3989,2013-11-10 12:11:04 -0800,403,1238 +1804,3254,2013-11-10 16:21:18 -0800,403,1237 +1805,1168,2013-11-06 14:06:10 -0800,404,1241 +1806,4480,2013-11-06 18:07:26 -0800,405,1245 +1807,9835,2013-11-10 10:33:19 -0800,405,1244 +1808,8129,2013-11-09 05:51:40 -0800,405,1245 +1809,4756,2013-11-07 17:38:43 -0800,405,1246 +1810,6267,2013-11-06 14:59:47 -0800,405,1242 +1811,3651,2013-11-07 20:12:26 -0800,405,1246 +1812,5843,2013-11-11 05:04:52 -0800,405,1246 +1813,2870,2013-11-12 19:36:59 -0800,405,1246 +1814,1054,2013-11-09 04:29:00 -0800,406,1248 +1815,2110,2013-11-06 15:16:32 -0800,406,1247 +1816,6837,2013-11-11 13:35:26 -0800,406,1248 +1817,1369,2013-11-13 02:49:25 -0800,406,1248 +1818,1788,2013-11-08 11:39:30 -0800,406,1248 +1819,718,2013-11-08 12:31:34 -0800,406,1248 +1820,1650,2013-11-10 20:27:46 -0800,406,1249 +1821,5221,2013-11-07 09:12:06 -0800,406,1249 +1822,8866,2013-11-11 20:02:31 -0800,408,1253 +1823,6180,2013-11-07 00:04:57 -0800,408,1253 +1824,1525,2013-11-08 10:15:14 -0800,408,1253 +1825,884,2013-11-07 21:20:23 -0800,408,1253 +1826,326,2013-11-10 09:41:33 -0800,408,1253 +1827,6919,2013-11-09 11:04:03 -0800,408,1253 +1828,7954,2013-11-07 03:30:41 -0800,408,1253 +1829,6495,2013-11-10 05:52:00 -0800,408,1253 +1830,3142,2013-11-12 11:12:58 -0800,408,1253 +1831,1676,2013-11-08 18:38:40 -0800,409,1254 +1832,2992,2013-11-08 04:07:41 -0800,410,1255 +1833,6414,2013-11-11 03:13:40 -0800,410,1255 +1834,6741,2013-11-06 22:14:28 -0800,410,1256 +1835,4715,2013-11-12 11:03:01 -0800,410,1256 +1836,3965,2013-11-12 21:07:29 -0800,410,1256 +1837,6026,2013-11-12 15:44:06 -0800,410,1257 +1838,5960,2013-11-11 05:36:59 -0800,410,1256 +1839,3367,2013-11-09 09:19:11 -0800,410,1257 +1840,4348,2013-11-08 22:47:50 -0800,410,1257 +1841,952,2013-11-11 01:54:50 -0800,411,1258 +1842,3249,2013-11-11 04:33:02 -0800,412,1261 +1843,1248,2013-11-09 07:47:41 -0800,412,1261 +1844,8061,2013-11-12 18:01:25 -0800,412,1261 +1845,7431,2013-11-12 13:12:39 -0800,412,1261 +1846,1755,2013-11-09 15:16:43 -0800,412,1261 +1847,371,2013-11-08 00:25:19 -0800,412,1261 +1848,2741,2013-11-12 22:09:24 -0800,412,1261 +1849,8877,2013-11-11 23:58:42 -0800,412,1261 +1850,5677,2013-11-07 13:00:08 -0800,413,1263 +1851,261,2013-11-09 15:41:52 -0800,413,1263 +1852,3276,2013-11-10 02:24:15 -0800,413,1262 +1853,4652,2013-11-10 21:54:37 -0800,413,1263 +1854,2990,2013-11-10 23:11:17 -0800,413,1263 +1855,5711,2013-11-06 14:21:31 -0800,413,1262 +1856,9186,2013-11-07 08:40:30 -0800,413,1262 +1857,9368,2013-11-12 19:57:27 -0800,414,1265 +1858,3693,2013-11-12 16:05:29 -0800,414,1264 +1859,2180,2013-11-10 18:58:41 -0800,414,1264 +1860,1811,2013-11-07 02:37:55 -0800,414,1264 +1861,9825,2013-11-07 06:33:47 -0800,414,1265 +1862,9223,2013-11-13 05:33:00 -0800,414,1264 +1863,8270,2013-11-12 23:33:19 -0800,414,1265 +1864,3686,2013-11-06 11:40:21 -0800,414,1264 +1865,7040,2013-11-10 14:18:22 -0800,414,1265 +1866,7859,2013-11-07 00:29:51 -0800,415,1266 +1867,6081,2013-11-12 07:12:16 -0800,415,1266 +1868,667,2013-11-09 11:36:32 -0800,416,1268 +1869,3120,2013-11-12 13:54:10 -0800,416,1269 +1870,3722,2013-11-07 15:37:15 -0800,416,1269 +1871,977,2013-11-09 02:28:40 -0800,416,1269 +1872,1860,2013-11-08 13:53:09 -0800,417,1273 +1873,7134,2013-11-11 18:43:23 -0800,417,1270 +1874,3120,2013-11-10 16:30:41 -0800,417,1271 +1875,6054,2013-11-08 14:15:26 -0800,417,1272 +1876,673,2013-11-12 00:07:23 -0800,421,1283 +1877,6887,2013-11-09 07:34:19 -0800,421,1281 +1878,2495,2013-11-09 22:38:25 -0800,422,1285 +1879,8139,2013-11-10 12:02:37 -0800,422,1288 +1880,8170,2013-11-08 11:19:52 -0800,422,1287 +1881,6572,2013-11-11 19:40:19 -0800,422,1288 +1882,671,2013-11-06 13:04:50 -0800,422,1287 +1883,4270,2013-11-10 02:29:09 -0800,423,1293 +1884,3234,2013-11-10 16:50:27 -0800,423,1293 +1885,5721,2013-11-06 10:42:00 -0800,423,1290 +1886,3951,2013-11-07 20:20:12 -0800,423,1293 +1887,3382,2013-11-09 19:30:29 -0800,423,1293 +1888,1117,2013-11-12 03:51:16 -0800,423,1292 +1889,9459,2013-11-09 16:58:41 -0800,423,1290 +1890,3597,2013-11-07 01:23:50 -0800,423,1292 +1891,6118,2013-11-08 01:28:55 -0800,423,1293 +1892,5839,2013-11-06 19:39:10 -0800,424,1297 +1893,222,2013-11-12 21:46:25 -0800,424,1294 +1894,8520,2013-11-13 05:42:19 -0800,424,1294 +1895,2130,2013-11-11 14:40:22 -0800,424,1297 +1896,8328,2013-11-13 05:33:03 -0800,424,1295 +1897,6184,2013-11-09 17:42:17 -0800,424,1296 +1898,8492,2013-11-08 10:24:30 -0800,424,1296 +1899,5630,2013-11-09 20:51:09 -0800,424,1294 +1900,6080,2013-11-09 10:05:42 -0800,424,1294 +1901,3769,2013-11-12 20:17:02 -0800,425,1302 +1902,9553,2013-11-07 11:58:00 -0800,425,1302 +1903,7293,2013-11-12 11:22:46 -0800,425,1301 +1904,3456,2013-11-12 23:17:11 -0800,425,1299 +1905,892,2013-11-08 12:26:38 -0800,425,1301 +1906,5273,2013-11-11 19:54:34 -0800,425,1300 +1907,811,2013-11-08 13:52:52 -0800,425,1301 +1908,1230,2013-11-10 06:28:24 -0800,425,1298 +1909,960,2013-11-09 03:33:11 -0800,425,1301 +1910,6475,2013-11-06 21:06:14 -0800,426,1304 +1911,9400,2013-11-08 09:22:35 -0800,427,1305 +1912,6395,2013-11-06 12:35:24 -0800,427,1306 +1913,9383,2013-11-08 22:23:15 -0800,427,1306 +1914,8551,2013-11-13 02:49:03 -0800,427,1305 +1915,5352,2013-11-10 07:39:53 -0800,427,1307 +1916,3754,2013-11-08 13:26:32 -0800,427,1306 +1917,5119,2013-11-07 03:06:25 -0800,428,1308 +1918,3189,2013-11-10 15:18:19 -0800,428,1308 +1919,5692,2013-11-07 04:21:13 -0800,428,1308 +1920,2440,2013-11-11 06:26:41 -0800,428,1308 +1921,6615,2013-11-11 12:14:40 -0800,428,1308 +1922,2651,2013-11-08 07:00:44 -0800,428,1308 +1923,1578,2013-11-09 06:58:35 -0800,428,1308 +1924,7086,2013-11-07 13:29:06 -0800,428,1308 +1925,9080,2013-11-08 20:56:57 -0800,428,1308 +1926,1118,2013-11-11 12:07:58 -0800,429,1311 +1927,7389,2013-11-11 03:09:09 -0800,429,1309 +1928,5050,2013-11-11 05:16:44 -0800,429,1309 +1929,1541,2013-11-07 16:09:34 -0800,429,1311 +1930,6898,2013-11-10 15:03:52 -0800,429,1310 +1931,8787,2013-11-06 08:37:35 -0800,429,1309 +1932,1533,2013-11-13 00:29:34 -0800,430,1313 +1933,7044,2013-11-13 01:11:12 -0800,430,1313 +1934,4197,2013-11-11 22:10:25 -0800,430,1312 +1935,9586,2013-11-07 15:27:36 -0800,430,1313 +1936,2321,2013-11-12 16:43:19 -0800,430,1312 +1937,1160,2013-11-07 15:03:29 -0800,430,1312 +1938,2223,2013-11-13 08:30:56 -0800,430,1313 +1939,9118,2013-11-11 12:14:11 -0800,430,1313 +1940,2653,2013-11-10 19:41:05 -0800,430,1312 +1941,4290,2013-11-11 13:41:48 -0800,431,1318 +1942,8431,2013-11-11 10:19:48 -0800,431,1316 +1943,2410,2013-11-11 05:01:48 -0800,431,1314 +1944,3836,2013-11-06 22:02:06 -0800,431,1316 +1945,3297,2013-11-10 05:30:31 -0800,431,1316 +1946,3915,2013-11-11 02:26:43 -0800,431,1317 +1947,9162,2013-11-08 16:45:19 -0800,431,1314 +1948,9749,2013-11-09 23:37:20 -0800,431,1314 +1949,2560,2013-11-11 19:41:07 -0800,432,1319 +1950,3536,2013-11-12 07:49:31 -0800,432,1319 +1951,3753,2013-11-08 16:36:04 -0800,432,1319 +1952,8338,2013-11-07 15:30:02 -0800,432,1319 +1953,8750,2013-11-13 00:24:50 -0800,432,1319 +1954,2631,2013-11-13 04:27:01 -0800,432,1319 +1955,1855,2013-11-10 15:09:10 -0800,432,1319 +1956,5834,2013-11-09 23:16:44 -0800,432,1319 +1957,9222,2013-11-08 14:14:46 -0800,433,1323 +1958,5461,2013-11-08 02:16:56 -0800,434,1326 +1959,5688,2013-11-07 04:24:47 -0800,434,1327 +1960,5947,2013-11-07 07:04:24 -0800,434,1327 +1961,6114,2013-11-11 22:54:11 -0800,434,1329 +1962,2110,2013-11-07 20:54:28 -0800,434,1329 +1963,7138,2013-11-11 13:29:01 -0800,434,1329 +1964,2217,2013-11-11 17:25:22 -0800,434,1327 +1965,6754,2013-11-08 11:20:24 -0800,435,1330 +1966,3050,2013-11-11 20:18:53 -0800,435,1330 +1967,3986,2013-11-11 20:42:44 -0800,435,1330 +1968,2999,2013-11-07 17:14:02 -0800,436,1331 +1969,6450,2013-11-10 20:29:37 -0800,436,1335 +1970,2367,2013-11-08 03:29:39 -0800,436,1333 +1971,2531,2013-11-09 15:03:12 -0800,436,1334 +1972,3851,2013-11-08 00:11:45 -0800,437,1337 +1973,3960,2013-11-06 15:04:40 -0800,437,1336 +1974,3222,2013-11-10 01:27:12 -0800,437,1338 +1975,3272,2013-11-06 10:45:31 -0800,438,1339 +1976,4750,2013-11-10 02:24:16 -0800,438,1339 +1977,5858,2013-11-09 13:47:42 -0800,438,1339 +1978,1566,2013-11-09 22:31:58 -0800,438,1339 +1979,7050,2013-11-07 23:31:17 -0800,438,1339 +1980,1195,2013-11-12 00:21:13 -0800,438,1340 +1981,8636,2013-11-10 01:21:16 -0800,439,1342 +1982,682,2013-11-10 16:18:28 -0800,439,1343 +1983,9011,2013-11-11 02:25:02 -0800,439,1341 +1984,1739,2013-11-07 01:01:58 -0800,440,1347 +1985,1953,2013-11-06 23:20:29 -0800,440,1346 +1986,9029,2013-11-08 11:46:49 -0800,440,1346 +1987,7048,2013-11-10 03:08:50 -0800,440,1345 +1988,952,2013-11-12 11:46:25 -0800,440,1347 +1989,2755,2013-11-09 06:37:42 -0800,440,1345 +1990,7913,2013-11-06 08:35:40 -0800,440,1347 +1991,5992,2013-11-07 00:09:12 -0800,441,1348 +1992,5156,2013-11-12 05:12:18 -0800,441,1349 +1993,3822,2013-11-08 12:21:47 -0800,441,1349 +1994,8676,2013-11-10 15:22:47 -0800,441,1348 +1995,5366,2013-11-10 00:37:49 -0800,441,1349 +1996,4951,2013-11-11 14:51:47 -0800,442,1350 +1997,4898,2013-11-13 06:54:34 -0800,442,1352 +1998,455,2013-11-13 06:46:12 -0800,442,1354 +1999,416,2013-11-09 07:07:10 -0800,442,1354 +2000,3074,2013-11-11 00:29:28 -0800,443,1356 +2001,1939,2013-11-12 00:40:25 -0800,443,1358 +2002,4987,2013-11-07 09:06:10 -0800,443,1357 +2003,4279,2013-11-10 20:30:45 -0800,443,1357 +2004,2843,2013-11-07 16:31:34 -0800,443,1358 +2005,9460,2013-11-11 03:46:37 -0800,444,1360 +2006,740,2013-11-06 22:08:00 -0800,444,1360 +2007,977,2013-11-07 11:53:58 -0800,444,1359 +2008,5940,2013-11-09 22:33:16 -0800,444,1361 +2009,8795,2013-11-06 15:14:12 -0800,444,1360 +2010,9782,2013-11-12 22:27:58 -0800,444,1360 +2011,5268,2013-11-06 18:50:22 -0800,445,1362 +2012,1177,2013-11-06 22:34:33 -0800,445,1362 +2013,8685,2013-11-07 13:51:06 -0800,445,1363 +2014,1914,2013-11-10 06:44:11 -0800,446,1366 +2015,2989,2013-11-10 05:39:20 -0800,446,1365 +2016,4338,2013-11-12 02:30:09 -0800,446,1365 +2017,5414,2013-11-07 05:09:43 -0800,446,1366 +2018,4662,2013-11-13 01:43:01 -0800,446,1367 +2019,3396,2013-11-07 21:13:53 -0800,446,1368 +2020,2259,2013-11-08 23:29:13 -0800,446,1368 +2021,3461,2013-11-08 18:50:56 -0800,446,1365 +2022,327,2013-11-12 12:14:02 -0800,446,1365 +2023,1489,2013-11-13 07:20:41 -0800,448,1375 +2024,983,2013-11-10 19:39:56 -0800,448,1375 +2025,5220,2013-11-07 10:58:21 -0800,448,1375 +2026,1113,2013-11-12 14:35:31 -0800,448,1375 +2027,3222,2013-11-11 06:32:47 -0800,450,1384 +2028,8722,2013-11-12 16:55:56 -0800,450,1383 +2029,3717,2013-11-13 05:17:42 -0800,450,1382 +2030,2250,2013-11-06 10:04:59 -0800,450,1385 +2031,8599,2013-11-09 14:03:39 -0800,450,1384 +2032,6444,2013-11-07 05:08:23 -0800,450,1384 +2033,1797,2013-11-11 11:37:08 -0800,450,1382 +2034,5470,2013-11-07 09:44:58 -0800,450,1383 +2035,7092,2013-11-10 11:12:55 -0800,450,1383 +2036,3886,2013-11-12 20:06:35 -0800,451,1387 +2037,5674,2013-11-11 20:03:03 -0800,451,1388 +2038,9316,2013-11-11 23:17:22 -0800,451,1387 +2039,2980,2013-11-11 15:16:17 -0800,451,1387 +2040,7440,2013-11-06 22:57:31 -0800,451,1390 +2041,1739,2013-11-08 05:46:21 -0800,451,1388 +2042,6681,2013-11-11 20:49:39 -0800,453,1394 +2043,6269,2013-11-11 01:14:35 -0800,453,1395 +2044,1424,2013-11-08 04:33:39 -0800,453,1396 +2045,1398,2013-11-08 17:50:24 -0800,453,1395 +2046,1177,2013-11-11 14:30:04 -0800,454,1397 +2047,1964,2013-11-11 09:37:07 -0800,454,1397 +2048,2473,2013-11-08 19:00:23 -0800,454,1397 +2049,6294,2013-11-06 10:53:03 -0800,454,1397 +2050,1741,2013-11-08 21:39:17 -0800,454,1397 +2051,4457,2013-11-12 14:00:01 -0800,454,1397 +2052,3672,2013-11-12 04:36:56 -0800,455,1400 +2053,3790,2013-11-10 02:25:10 -0800,456,1405 +2054,8467,2013-11-08 04:43:20 -0800,456,1406 +2055,8013,2013-11-09 04:14:24 -0800,456,1407 +2056,4079,2013-11-12 14:30:58 -0800,456,1404 +2057,9162,2013-11-08 16:36:12 -0800,456,1406 +2058,5054,2013-11-11 18:48:23 -0800,456,1405 +2059,9188,2013-11-12 07:12:31 -0800,456,1407 +2060,7472,2013-11-06 23:59:57 -0800,456,1404 +2061,9831,2013-11-09 10:26:00 -0800,457,1410 +2062,6043,2013-11-11 22:29:41 -0800,457,1410 +2063,38,2013-11-08 16:29:49 -0800,457,1408 +2064,1285,2013-11-11 04:29:02 -0800,457,1408 +2065,6930,2013-11-13 06:43:16 -0800,457,1410 +2066,8189,2013-11-11 23:12:04 -0800,457,1409 +2067,6988,2013-11-11 16:08:42 -0800,458,1412 +2068,2730,2013-11-08 14:37:10 -0800,458,1412 +2069,6139,2013-11-12 17:48:56 -0800,458,1414 +2070,6717,2013-11-07 20:21:13 -0800,458,1412 +2071,8887,2013-11-11 23:44:11 -0800,458,1413 +2072,1050,2013-11-11 12:36:50 -0800,459,1416 +2073,3913,2013-11-08 20:52:48 -0800,459,1416 +2074,4747,2013-11-08 08:48:18 -0800,459,1416 +2075,8381,2013-11-09 14:20:10 -0800,460,1418 +2076,6600,2013-11-08 07:26:23 -0800,460,1418 +2077,6335,2013-11-06 12:22:10 -0800,460,1418 +2078,6030,2013-11-08 12:27:50 -0800,460,1418 +2079,8330,2013-11-13 05:51:14 -0800,460,1418 +2080,8960,2013-11-07 12:08:25 -0800,460,1418 +2081,1867,2013-11-13 04:21:33 -0800,460,1418 +2082,3664,2013-11-06 17:25:30 -0800,460,1418 +2083,440,2013-11-08 06:07:41 -0800,461,1423 +2084,1436,2013-11-08 10:54:34 -0800,461,1423 +2085,3193,2013-11-08 08:03:38 -0800,462,1424 +2086,3095,2013-11-09 22:58:42 -0800,462,1424 +2087,6890,2013-11-08 00:01:33 -0800,462,1424 +2088,2638,2013-11-08 08:20:03 -0800,462,1425 +2089,9597,2013-11-10 15:16:08 -0800,462,1424 +2090,7086,2013-11-10 12:51:19 -0800,462,1425 +2091,4433,2013-11-10 14:14:37 -0800,462,1424 +2092,1594,2013-11-13 08:32:33 -0800,463,1429 +2093,8142,2013-11-07 02:52:14 -0800,463,1427 +2094,8929,2013-11-07 20:18:54 -0800,465,1433 +2095,5588,2013-11-07 07:49:08 -0800,465,1436 +2096,8177,2013-11-09 06:24:19 -0800,465,1436 +2097,2925,2013-11-09 16:53:47 -0800,465,1437 +2098,5612,2013-11-07 21:30:21 -0800,465,1436 +2099,4151,2013-11-13 03:19:27 -0800,466,1439 +2100,1414,2013-11-12 14:51:21 -0800,466,1441 +2101,75,2013-11-09 00:21:49 -0800,466,1438 +2102,5484,2013-11-06 18:30:12 -0800,466,1441 +2103,3965,2013-11-10 21:13:55 -0800,466,1439 +2104,2128,2013-11-07 10:03:39 -0800,466,1438 +2105,8044,2013-11-12 19:24:59 -0800,466,1438 +2106,3384,2013-11-09 01:07:20 -0800,467,1442 +2107,6541,2013-11-09 14:20:36 -0800,467,1443 +2108,4476,2013-11-08 05:56:19 -0800,467,1443 +2109,1472,2013-11-11 01:29:33 -0800,467,1442 +2110,6391,2013-11-08 15:39:16 -0800,467,1443 +2111,1215,2013-11-10 03:03:32 -0800,467,1442 +2112,1070,2013-11-08 05:17:02 -0800,467,1442 +2113,640,2013-11-11 06:40:28 -0800,468,1448 +2114,7340,2013-11-07 09:15:20 -0800,468,1447 +2115,4786,2013-11-12 10:27:56 -0800,468,1447 +2116,5334,2013-11-12 15:22:46 -0800,468,1445 +2117,630,2013-11-08 21:32:31 -0800,468,1445 +2118,5018,2013-11-12 00:26:48 -0800,468,1444 +2119,5769,2013-11-10 01:58:05 -0800,469,1451 +2120,8095,2013-11-08 17:25:59 -0800,469,1449 +2121,4725,2013-11-10 17:40:19 -0800,469,1450 +2122,7769,2013-11-08 00:48:59 -0800,469,1449 +2123,7151,2013-11-07 18:22:14 -0800,470,1452 +2124,1130,2013-11-07 07:23:22 -0800,470,1454 +2125,5535,2013-11-12 10:55:39 -0800,470,1453 +2126,2473,2013-11-09 09:01:46 -0800,470,1453 +2127,2423,2013-11-07 17:52:49 -0800,470,1453 +2128,4440,2013-11-12 13:34:43 -0800,470,1454 +2129,4520,2013-11-10 19:43:45 -0800,470,1454 +2130,6050,2013-11-09 05:33:56 -0800,471,1458 +2131,9493,2013-11-08 08:26:06 -0800,471,1457 +2132,5272,2013-11-08 07:57:21 -0800,472,1460 +2133,5082,2013-11-12 11:21:48 -0800,472,1460 +2134,7773,2013-11-10 18:28:09 -0800,472,1460 +2135,5883,2013-11-12 13:29:17 -0800,473,1463 +2136,3374,2013-11-06 11:35:36 -0800,473,1461 +2137,430,2013-11-08 08:26:06 -0800,473,1463 +2138,7011,2013-11-06 13:38:06 -0800,473,1462 +2139,423,2013-11-13 00:57:51 -0800,473,1464 +2140,496,2013-11-13 04:44:15 -0800,473,1463 +2141,2429,2013-11-07 08:10:08 -0800,473,1463 +2142,5893,2013-11-09 20:34:40 -0800,473,1464 +2143,338,2013-11-07 08:22:35 -0800,473,1461 +2144,5427,2013-11-08 16:23:46 -0800,474,1466 +2145,5749,2013-11-10 23:34:54 -0800,474,1467 +2146,8633,2013-11-09 17:36:47 -0800,475,1471 +2147,1532,2013-11-09 21:29:00 -0800,475,1470 +2148,3796,2013-11-11 01:58:09 -0800,475,1471 +2149,4688,2013-11-06 16:02:54 -0800,475,1471 +2150,2533,2013-11-10 18:50:08 -0800,475,1471 +2151,6638,2013-11-08 11:07:30 -0800,475,1470 +2152,8045,2013-11-08 07:29:29 -0800,476,1474 +2153,7820,2013-11-07 14:41:35 -0800,477,1477 +2154,3933,2013-11-12 22:27:00 -0800,477,1476 +2155,9319,2013-11-07 02:02:34 -0800,477,1476 +2156,2874,2013-11-08 05:10:08 -0800,477,1476 +2157,5642,2013-11-06 13:40:47 -0800,477,1476 +2158,5354,2013-11-11 21:12:24 -0800,477,1476 +2159,3511,2013-11-12 08:28:41 -0800,477,1476 +2160,2287,2013-11-07 22:53:43 -0800,477,1477 +2161,5070,2013-11-08 11:31:41 -0800,478,1482 +2162,4844,2013-11-11 17:43:27 -0800,478,1478 +2163,9856,2013-11-11 21:28:43 -0800,478,1482 +2164,4566,2013-11-13 00:18:32 -0800,478,1478 +2165,1746,2013-11-09 17:37:20 -0800,478,1481 +2166,3095,2013-11-12 19:40:30 -0800,478,1481 +2167,8118,2013-11-10 17:09:05 -0800,478,1482 +2168,6777,2013-11-12 17:41:32 -0800,478,1480 +2169,5149,2013-11-07 12:46:54 -0800,479,1484 +2170,4792,2013-11-10 02:58:19 -0800,479,1483 +2171,490,2013-11-08 06:39:25 -0800,480,1486 +2172,2748,2013-11-08 23:29:19 -0800,483,1497 +2173,7540,2013-11-08 10:43:01 -0800,483,1497 +2174,4848,2013-11-12 12:37:59 -0800,483,1497 +2175,8974,2013-11-13 07:59:51 -0800,483,1497 +2176,4912,2013-11-11 04:53:16 -0800,485,1505 +2177,2265,2013-11-11 05:15:22 -0800,485,1506 +2178,454,2013-11-12 05:34:39 -0800,485,1503 +2179,120,2013-11-10 20:30:07 -0800,485,1505 +2180,2976,2013-11-12 10:48:56 -0800,485,1504 +2181,7411,2013-11-11 09:33:31 -0800,485,1505 +2182,5878,2013-11-08 10:45:27 -0800,485,1502 +2183,2049,2013-11-08 02:43:38 -0800,486,1507 +2184,5710,2013-11-08 02:55:02 -0800,486,1507 +2185,8020,2013-11-10 18:17:31 -0800,486,1508 +2186,8976,2013-11-10 06:36:41 -0800,487,1509 +2187,7437,2013-11-10 18:34:09 -0800,488,1514 +2188,2321,2013-11-10 18:24:12 -0800,488,1514 +2189,3297,2013-11-06 23:17:49 -0800,488,1517 +2190,7967,2013-11-08 01:16:34 -0800,488,1517 +2191,7681,2013-11-06 16:00:20 -0800,489,1521 +2192,311,2013-11-06 18:56:11 -0800,489,1519 +2193,6514,2013-11-10 23:33:27 -0800,489,1520 +2194,6691,2013-11-10 16:22:51 -0800,489,1519 +2195,5157,2013-11-10 02:32:58 -0800,489,1520 +2196,560,2013-11-12 15:22:22 -0800,489,1520 +2197,6045,2013-11-13 04:29:55 -0800,489,1520 +2198,170,2013-11-09 21:19:48 -0800,490,1524 +2199,1396,2013-11-11 10:23:01 -0800,490,1524 +2200,8330,2013-11-11 07:31:56 -0800,490,1524 +2201,957,2013-11-13 07:53:54 -0800,490,1522 +2202,9338,2013-11-08 23:46:44 -0800,491,1527 +2203,2437,2013-11-06 22:18:19 -0800,492,1530 +2204,374,2013-11-06 13:38:25 -0800,493,1534 +2205,7152,2013-11-09 02:15:44 -0800,493,1532 +2206,991,2013-11-12 23:35:38 -0800,493,1531 +2207,6454,2013-11-08 00:44:52 -0800,493,1533 +2208,2382,2013-11-06 18:54:33 -0800,493,1535 +2209,4758,2013-11-07 06:01:47 -0800,493,1533 +2210,9393,2013-11-07 14:38:36 -0800,493,1535 +2211,7887,2013-11-08 16:35:03 -0800,495,1539 +2212,730,2013-11-11 02:32:00 -0800,495,1539 +2213,5729,2013-11-08 01:00:26 -0800,495,1539 +2214,6391,2013-11-07 19:21:39 -0800,495,1539 +2215,4226,2013-11-08 11:54:20 -0800,495,1539 +2216,1274,2013-11-08 16:45:53 -0800,495,1539 +2217,1319,2013-11-07 16:47:50 -0800,495,1539 +2218,715,2013-11-10 18:33:54 -0800,496,1541 +2219,5476,2013-11-10 03:29:43 -0800,496,1542 +2220,977,2013-11-09 18:37:01 -0800,497,1543 +2221,7277,2013-11-12 00:48:19 -0800,497,1543 +2222,714,2013-11-10 05:36:31 -0800,497,1543 +2223,5239,2013-11-11 06:07:05 -0800,497,1543 +2224,532,2013-11-12 11:41:57 -0800,497,1543 +2225,6243,2013-11-10 07:22:16 -0800,497,1543 +2226,9775,2013-11-08 17:29:02 -0800,497,1543 +2227,9257,2013-11-06 16:56:13 -0800,497,1543 +2228,9675,2013-11-12 05:55:08 -0800,498,1544 +2229,5360,2013-11-10 02:56:26 -0800,498,1544 +2230,8960,2013-11-11 21:38:44 -0800,498,1544 +2231,647,2013-11-06 13:41:37 -0800,498,1544 +2232,4490,2013-11-12 03:14:20 -0800,498,1544 +2233,9279,2013-11-08 04:04:45 -0800,498,1544 +2234,7695,2013-11-11 12:39:44 -0800,498,1544 +2235,2384,2013-11-08 10:21:11 -0800,500,1549 +2236,4696,2013-11-13 01:42:38 -0800,501,1551 +2237,6459,2013-11-07 03:12:06 -0800,502,1552 +2238,8020,2013-11-10 03:01:23 -0800,502,1553 +2239,9380,2013-11-12 22:47:16 -0800,502,1552 +2240,710,2013-11-07 23:49:00 -0800,502,1553 +2241,6736,2013-11-12 09:54:22 -0800,503,1557 +2242,946,2013-11-10 05:59:33 -0800,503,1556 +2243,8013,2013-11-08 15:21:21 -0800,504,1559 +2244,3539,2013-11-08 21:15:50 -0800,505,1563 +2245,2711,2013-11-08 13:47:58 -0800,505,1563 +2246,3361,2013-11-10 00:44:29 -0800,505,1564 +2247,2017,2013-11-12 07:29:52 -0800,506,1568 +2248,6634,2013-11-10 15:42:38 -0800,506,1567 +2249,9162,2013-11-07 13:50:34 -0800,506,1567 +2250,8926,2013-11-10 10:13:34 -0800,506,1568 +2251,270,2013-11-11 05:02:24 -0800,507,1570 +2252,7440,2013-11-09 05:47:03 -0800,507,1570 +2253,7155,2013-11-08 00:09:40 -0800,507,1570 +2254,9648,2013-11-12 19:35:18 -0800,507,1570 +2255,1322,2013-11-08 19:26:19 -0800,507,1570 +2256,8954,2013-11-08 23:43:49 -0800,507,1570 +2257,1330,2013-11-12 04:00:02 -0800,508,1571 +2258,6456,2013-11-11 04:29:43 -0800,508,1571 +2259,927,2013-11-08 16:18:03 -0800,508,1571 +2260,5539,2013-11-08 00:32:34 -0800,509,1574 +2261,4151,2013-11-06 21:22:37 -0800,509,1572 +2262,2680,2013-11-06 22:32:25 -0800,509,1574 +2263,6661,2013-11-07 23:33:50 -0800,509,1572 +2264,3180,2013-11-09 19:57:45 -0800,509,1574 +2265,2835,2013-11-08 06:14:25 -0800,510,1575 +2266,7384,2013-11-07 08:57:05 -0800,510,1575 +2267,1315,2013-11-13 05:41:32 -0800,510,1575 +2268,6595,2013-11-09 11:51:06 -0800,510,1575 +2269,3917,2013-11-08 12:07:27 -0800,511,1576 +2270,7931,2013-11-08 01:38:37 -0800,511,1576 +2271,6683,2013-11-10 22:44:19 -0800,511,1576 +2272,2854,2013-11-12 16:49:44 -0800,511,1576 +2273,6276,2013-11-10 02:15:27 -0800,512,1580 +2274,8618,2013-11-10 09:19:00 -0800,512,1580 +2275,4167,2013-11-06 16:06:05 -0800,512,1578 +2276,7490,2013-11-06 23:02:15 -0800,512,1579 +2277,8560,2013-11-06 22:09:56 -0800,513,1582 +2278,1660,2013-11-12 07:51:44 -0800,513,1582 +2279,6255,2013-11-12 05:23:55 -0800,513,1582 +2280,1939,2013-11-08 22:14:20 -0800,513,1582 +2281,5176,2013-11-08 12:04:55 -0800,513,1582 +2282,8581,2013-11-13 07:41:20 -0800,513,1582 +2283,8215,2013-11-09 11:58:55 -0800,513,1582 +2284,8274,2013-11-13 06:29:28 -0800,513,1582 +2285,8776,2013-11-12 12:25:50 -0800,514,1584 +2286,9145,2013-11-09 10:47:55 -0800,515,1585 +2287,1851,2013-11-11 20:59:06 -0800,515,1585 +2288,9154,2013-11-11 12:09:26 -0800,516,1588 +2289,8742,2013-11-11 01:33:21 -0800,516,1586 +2290,7323,2013-11-10 08:17:48 -0800,516,1588 +2291,6117,2013-11-08 20:12:48 -0800,516,1586 +2292,8713,2013-11-09 00:36:23 -0800,518,1592 +2293,6398,2013-11-10 12:27:38 -0800,518,1592 +2294,5564,2013-11-08 03:57:04 -0800,518,1591 +2295,8724,2013-11-12 23:53:32 -0800,518,1591 +2296,612,2013-11-09 09:19:43 -0800,518,1592 +2297,6229,2013-11-07 00:45:00 -0800,518,1592 +2298,1465,2013-11-13 07:37:42 -0800,518,1591 +2299,6489,2013-11-07 22:36:11 -0800,518,1592 +2300,1851,2013-11-10 21:01:21 -0800,518,1592 +2301,1046,2013-11-07 13:40:18 -0800,519,1593 +2302,158,2013-11-09 14:31:40 -0800,519,1593 +2303,7354,2013-11-08 11:40:45 -0800,519,1593 +2304,218,2013-11-10 05:32:21 -0800,519,1593 +2305,8080,2013-11-07 05:18:25 -0800,520,1596 +2306,4857,2013-11-12 06:50:34 -0800,520,1596 +2307,6572,2013-11-11 17:39:19 -0800,520,1596 +2308,3192,2013-11-11 20:01:00 -0800,520,1595 +2309,428,2013-11-10 13:33:30 -0800,520,1595 +2310,2085,2013-11-09 08:07:06 -0800,520,1595 +2311,7931,2013-11-08 02:47:58 -0800,520,1596 +2312,5246,2013-11-10 22:36:33 -0800,521,1600 +2313,3449,2013-11-09 17:55:09 -0800,522,1601 +2314,8729,2013-11-06 20:32:19 -0800,522,1601 +2315,3053,2013-11-09 21:37:57 -0800,523,1602 +2316,7016,2013-11-08 10:32:39 -0800,523,1602 +2317,5450,2013-11-09 04:07:45 -0800,523,1603 +2318,980,2013-11-08 17:23:38 -0800,523,1602 +2319,7750,2013-11-08 00:58:19 -0800,525,1611 +2320,3152,2013-11-12 19:55:58 -0800,525,1609 +2321,8592,2013-11-08 22:58:06 -0800,526,1612 +2322,4780,2013-11-11 08:01:24 -0800,526,1613 +2323,2837,2013-11-06 14:12:52 -0800,526,1612 +2324,8529,2013-11-07 15:16:28 -0800,526,1612 +2325,7631,2013-11-08 05:11:39 -0800,526,1613 +2326,4019,2013-11-12 08:07:24 -0800,526,1612 +2327,5760,2013-11-13 05:23:42 -0800,526,1612 +2328,8677,2013-11-09 16:05:02 -0800,526,1612 +2329,4354,2013-11-11 00:27:45 -0800,527,1614 +2330,3953,2013-11-11 16:14:04 -0800,528,1615 +2331,2874,2013-11-09 09:56:00 -0800,528,1616 +2332,4917,2013-11-11 14:53:43 -0800,528,1616 +2333,1218,2013-11-08 07:25:52 -0800,528,1618 +2334,1518,2013-11-09 07:51:36 -0800,528,1618 +2335,8918,2013-11-12 13:49:07 -0800,529,1621 +2336,264,2013-11-09 08:58:50 -0800,529,1623 +2337,3130,2013-11-12 06:10:02 -0800,529,1621 +2338,4469,2013-11-08 15:53:52 -0800,529,1620 +2339,7823,2013-11-10 12:58:42 -0800,529,1623 +2340,4660,2013-11-12 06:51:58 -0800,529,1622 +2341,9698,2013-11-11 03:21:24 -0800,529,1623 +2342,1240,2013-11-07 12:08:37 -0800,529,1624 +2343,370,2013-11-06 22:12:17 -0800,529,1621 +2344,516,2013-11-12 16:54:26 -0800,530,1627 +2345,5146,2013-11-12 21:43:22 -0800,530,1628 +2346,6568,2013-11-11 11:32:06 -0800,530,1628 +2347,7572,2013-11-07 02:57:15 -0800,530,1629 +2348,7291,2013-11-12 01:14:09 -0800,530,1625 +2349,3579,2013-11-06 13:22:18 -0800,530,1629 +2350,123,2013-11-08 03:40:46 -0800,531,1632 +2351,4752,2013-11-12 10:42:35 -0800,531,1630 +2352,1036,2013-11-10 04:45:36 -0800,531,1633 +2353,8911,2013-11-11 22:31:03 -0800,531,1632 +2354,6024,2013-11-10 09:14:15 -0800,531,1631 +2355,551,2013-11-11 08:43:20 -0800,531,1631 +2356,5153,2013-11-13 05:26:14 -0800,533,1640 +2357,9759,2013-11-07 09:01:56 -0800,534,1645 +2358,5576,2013-11-11 14:36:31 -0800,534,1643 +2359,442,2013-11-11 18:04:00 -0800,534,1644 +2360,8820,2013-11-12 17:31:38 -0800,534,1642 +2361,6293,2013-11-08 18:04:38 -0800,534,1645 +2362,1672,2013-11-08 08:32:13 -0800,535,1646 +2363,9519,2013-11-09 05:54:23 -0800,535,1646 +2364,60,2013-11-12 11:53:55 -0800,535,1647 +2365,9664,2013-11-07 02:14:44 -0800,535,1647 +2366,9138,2013-11-08 22:56:46 -0800,535,1647 +2367,1989,2013-11-11 07:46:25 -0800,535,1646 +2368,4662,2013-11-11 06:17:48 -0800,535,1647 +2369,3996,2013-11-08 12:08:11 -0800,535,1646 +2370,3147,2013-11-07 18:25:58 -0800,535,1647 +2371,8388,2013-11-10 17:31:13 -0800,536,1649 +2372,8765,2013-11-13 02:30:58 -0800,536,1649 +2373,8876,2013-11-10 07:37:14 -0800,536,1649 +2374,2275,2013-11-09 21:05:22 -0800,536,1649 +2375,3260,2013-11-10 02:31:17 -0800,536,1650 +2376,3322,2013-11-06 20:40:13 -0800,536,1650 +2377,4372,2013-11-08 16:44:40 -0800,536,1649 +2378,5440,2013-11-06 22:58:13 -0800,536,1650 +2379,3153,2013-11-12 20:49:31 -0800,537,1652 +2380,2741,2013-11-06 14:47:01 -0800,537,1652 +2381,3384,2013-11-12 13:12:43 -0800,537,1655 +2382,4430,2013-11-08 12:21:57 -0800,537,1654 +2383,2428,2013-11-11 05:30:36 -0800,537,1651 +2384,6816,2013-11-07 08:39:45 -0800,538,1658 +2385,9672,2013-11-08 05:16:17 -0800,539,1661 +2386,7744,2013-11-07 05:50:09 -0800,539,1660 +2387,7953,2013-11-06 15:52:15 -0800,539,1661 +2388,2069,2013-11-07 00:56:30 -0800,539,1659 +2389,5075,2013-11-09 13:09:57 -0800,539,1662 +2390,2610,2013-11-09 21:15:04 -0800,539,1660 +2391,4521,2013-11-10 00:46:04 -0800,539,1660 +2392,6539,2013-11-07 07:07:36 -0800,539,1659 +2393,1828,2013-11-08 07:33:06 -0800,540,1663 +2394,8674,2013-11-06 23:45:39 -0800,540,1663 +2395,4421,2013-11-07 04:34:38 -0800,540,1663 +2396,7191,2013-11-09 11:41:47 -0800,540,1663 +2397,3715,2013-11-08 20:39:21 -0800,540,1663 +2398,9851,2013-11-07 16:12:51 -0800,541,1664 +2399,1142,2013-11-07 15:09:13 -0800,542,1666 +2400,6663,2013-11-13 01:21:35 -0800,542,1666 +2401,7033,2013-11-07 01:03:06 -0800,542,1665 +2402,83,2013-11-09 18:32:27 -0800,542,1665 +2403,4841,2013-11-08 21:01:13 -0800,542,1665 +2404,632,2013-11-08 09:02:39 -0800,542,1665 +2405,852,2013-11-07 08:39:58 -0800,543,1667 +2406,4387,2013-11-12 03:08:38 -0800,543,1668 +2407,8260,2013-11-13 01:32:35 -0800,543,1668 +2408,3439,2013-11-12 18:51:23 -0800,543,1667 +2409,9110,2013-11-06 15:17:45 -0800,544,1669 +2410,197,2013-11-13 01:49:20 -0800,544,1670 +2411,8728,2013-11-13 08:23:17 -0800,544,1671 +2412,9645,2013-11-11 20:08:50 -0800,545,1673 +2413,9772,2013-11-10 04:50:39 -0800,545,1673 +2414,1545,2013-11-12 00:05:27 -0800,545,1673 +2415,1723,2013-11-13 05:32:50 -0800,545,1673 +2416,4912,2013-11-12 21:35:56 -0800,546,1676 +2417,6650,2013-11-07 15:12:06 -0800,546,1676 +2418,2269,2013-11-13 00:51:05 -0800,546,1674 +2419,3257,2013-11-06 14:48:22 -0800,546,1675 +2420,2642,2013-11-12 17:01:43 -0800,546,1678 +2421,544,2013-11-13 06:57:59 -0800,546,1675 +2422,9090,2013-11-11 01:20:22 -0800,546,1677 +2423,2927,2013-11-11 09:28:55 -0800,546,1674 +2424,8466,2013-11-11 02:27:19 -0800,547,1680 +2425,4257,2013-11-12 00:07:46 -0800,547,1679 +2426,5919,2013-11-12 04:47:27 -0800,548,1682 +2427,3820,2013-11-10 16:17:03 -0800,548,1681 +2428,2793,2013-11-09 23:10:23 -0800,548,1682 +2429,537,2013-11-10 12:07:31 -0800,548,1682 +2430,4817,2013-11-06 16:06:37 -0800,548,1682 +2431,629,2013-11-09 21:45:13 -0800,548,1682 +2432,5470,2013-11-12 18:37:12 -0800,549,1686 +2433,3080,2013-11-12 06:53:10 -0800,551,1691 +2434,9747,2013-11-11 14:18:09 -0800,552,1692 +2435,5930,2013-11-08 09:51:06 -0800,553,1694 +2436,9566,2013-11-06 15:30:32 -0800,554,1695 +2437,7670,2013-11-09 09:15:42 -0800,554,1695 +2438,3624,2013-11-06 13:48:32 -0800,554,1695 +2439,7983,2013-11-12 19:05:37 -0800,554,1695 +2440,8081,2013-11-07 23:15:23 -0800,554,1695 +2441,81,2013-11-09 23:25:53 -0800,554,1695 +2442,4075,2013-11-13 03:03:11 -0800,554,1695 +2443,1287,2013-11-07 22:47:48 -0800,554,1695 +2444,9739,2013-11-06 13:47:17 -0800,554,1695 +2445,8013,2013-11-11 07:46:39 -0800,555,1697 +2446,3915,2013-11-09 14:25:37 -0800,555,1700 +2447,9544,2013-11-10 12:35:05 -0800,555,1700 +2448,2993,2013-11-07 05:04:56 -0800,555,1699 +2449,5867,2013-11-10 17:36:39 -0800,555,1698 +2450,6226,2013-11-06 18:35:49 -0800,555,1699 +2451,1789,2013-11-09 06:37:36 -0800,556,1701 +2452,2236,2013-11-12 23:10:54 -0800,556,1703 +2453,6398,2013-11-13 02:05:55 -0800,556,1705 +2454,6014,2013-11-11 00:12:07 -0800,556,1702 +2455,7320,2013-11-06 22:31:53 -0800,556,1701 +2456,2450,2013-11-11 08:57:48 -0800,556,1705 +2457,9896,2013-11-12 15:17:19 -0800,556,1703 +2458,8496,2013-11-11 16:55:26 -0800,556,1701 +2459,8061,2013-11-08 12:22:39 -0800,558,1708 +2460,3871,2013-11-09 10:19:54 -0800,558,1708 +2461,3465,2013-11-07 18:49:07 -0800,558,1708 +2462,5924,2013-11-12 03:45:42 -0800,558,1708 +2463,5646,2013-11-13 00:04:41 -0800,558,1707 +2464,3868,2013-11-12 14:07:28 -0800,558,1707 +2465,3564,2013-11-07 18:13:34 -0800,558,1707 +2466,224,2013-11-11 05:17:21 -0800,560,1712 +2467,8774,2013-11-08 00:01:08 -0800,560,1712 +2468,8120,2013-11-11 12:50:52 -0800,560,1712 +2469,736,2013-11-11 14:44:52 -0800,560,1712 +2470,8270,2013-11-11 10:19:22 -0800,560,1712 +2471,4600,2013-11-12 01:32:43 -0800,560,1712 +2472,7830,2013-11-07 22:16:15 -0800,560,1712 +2473,1337,2013-11-11 11:51:05 -0800,561,1713 +2474,2320,2013-11-09 17:08:01 -0800,561,1713 +2475,4474,2013-11-11 20:17:10 -0800,561,1713 +2476,662,2013-11-09 10:01:25 -0800,561,1713 +2477,9018,2013-11-06 17:23:43 -0800,561,1713 +2478,7587,2013-11-09 15:31:38 -0800,561,1713 +2479,6656,2013-11-08 12:55:21 -0800,561,1713 +2480,3069,2013-11-12 22:36:30 -0800,562,1715 +2481,7348,2013-11-12 02:26:16 -0800,563,1719 +2482,6875,2013-11-08 14:54:44 -0800,564,1721 +2483,2850,2013-11-08 03:28:57 -0800,564,1720 +2484,8169,2013-11-07 08:55:46 -0800,564,1720 +2485,2732,2013-11-06 21:05:50 -0800,564,1721 +2486,1015,2013-11-12 22:29:02 -0800,564,1721 +2487,5576,2013-11-11 12:09:07 -0800,564,1721 +2488,1370,2013-11-09 22:31:15 -0800,564,1720 +2489,3720,2013-11-07 08:13:42 -0800,564,1720 +2490,2934,2013-11-06 15:14:27 -0800,565,1723 +2491,5187,2013-11-09 06:13:38 -0800,565,1724 +2492,178,2013-11-11 01:04:54 -0800,565,1723 +2493,4724,2013-11-09 10:36:36 -0800,565,1724 +2494,8533,2013-11-07 18:52:45 -0800,565,1723 +2495,7941,2013-11-12 13:14:05 -0800,565,1722 +2496,4539,2013-11-09 02:45:35 -0800,565,1723 +2497,4130,2013-11-06 21:22:00 -0800,566,1725 +2498,6074,2013-11-06 11:07:32 -0800,566,1725 +2499,7984,2013-11-08 12:08:33 -0800,566,1725 +2500,4540,2013-11-09 11:56:02 -0800,566,1725 +2501,7538,2013-11-07 22:22:27 -0800,567,1726 +2502,8172,2013-11-08 20:08:14 -0800,567,1726 +2503,7020,2013-11-09 14:19:02 -0800,567,1726 +2504,9324,2013-11-09 01:34:13 -0800,567,1726 +2505,7753,2013-11-12 02:40:47 -0800,567,1726 +2506,2529,2013-11-12 11:57:09 -0800,567,1726 +2507,717,2013-11-11 17:27:47 -0800,567,1726 +2508,3585,2013-11-10 09:48:35 -0800,568,1727 +2509,9669,2013-11-09 05:46:42 -0800,568,1727 +2510,9184,2013-11-11 07:27:11 -0800,568,1727 +2511,2225,2013-11-07 03:33:45 -0800,568,1727 +2512,3840,2013-11-11 15:48:55 -0800,568,1727 +2513,3847,2013-11-10 18:53:27 -0800,568,1727 +2514,2418,2013-11-13 01:30:44 -0800,569,1728 +2515,5350,2013-11-08 15:21:13 -0800,569,1728 +2516,5942,2013-11-13 00:58:26 -0800,569,1728 +2517,3570,2013-11-12 02:11:14 -0800,569,1728 +2518,1332,2013-11-13 04:38:42 -0800,569,1728 +2519,2918,2013-11-09 06:11:14 -0800,569,1728 +2520,7459,2013-11-10 17:41:01 -0800,569,1728 +2521,3529,2013-11-09 21:57:51 -0800,569,1728 +2522,7630,2013-11-10 14:45:15 -0800,570,1729 +2523,8676,2013-11-07 08:31:08 -0800,571,1734 +2524,4390,2013-11-11 12:48:31 -0800,571,1734 +2525,6434,2013-11-10 10:38:47 -0800,571,1734 +2526,6698,2013-11-09 01:37:31 -0800,571,1731 +2527,6473,2013-11-08 20:23:21 -0800,571,1733 +2528,6656,2013-11-06 16:18:18 -0800,571,1733 +2529,2020,2013-11-10 21:07:24 -0800,571,1731 +2530,4813,2013-11-12 23:00:49 -0800,573,1738 +2531,5776,2013-11-09 16:06:31 -0800,573,1740 +2532,9423,2013-11-10 10:12:17 -0800,573,1739 +2533,2468,2013-11-08 06:24:50 -0800,573,1737 +2534,7834,2013-11-11 14:20:40 -0800,573,1739 +2535,136,2013-11-09 20:45:05 -0800,573,1740 +2536,3060,2013-11-08 02:05:32 -0800,573,1737 +2537,9660,2013-11-12 06:15:25 -0800,573,1737 +2538,2540,2013-11-09 00:14:13 -0800,573,1740 +2539,4072,2013-11-12 15:53:48 -0800,574,1741 +2540,1721,2013-11-08 20:48:39 -0800,574,1742 +2541,6920,2013-11-10 11:15:12 -0800,574,1742 +2542,2386,2013-11-12 06:21:58 -0800,574,1741 +2543,8874,2013-11-09 19:17:31 -0800,575,1746 +2544,583,2013-11-12 14:30:24 -0800,575,1743 +2545,4595,2013-11-08 21:36:41 -0800,575,1745 +2546,1267,2013-11-08 10:11:42 -0800,576,1748 +2547,3636,2013-11-07 16:44:05 -0800,576,1748 +2548,3220,2013-11-11 11:10:08 -0800,576,1747 +2549,9444,2013-11-11 09:17:32 -0800,576,1748 +2550,1086,2013-11-12 13:53:22 -0800,576,1747 +2551,865,2013-11-11 16:15:33 -0800,577,1752 +2552,3429,2013-11-08 11:55:07 -0800,577,1750 +2553,9816,2013-11-09 00:44:47 -0800,577,1751 +2554,6084,2013-11-06 16:28:47 -0800,578,1753 +2555,9569,2013-11-11 23:34:56 -0800,578,1753 +2556,859,2013-11-07 22:31:46 -0800,578,1754 +2557,3590,2013-11-07 13:21:17 -0800,578,1754 +2558,8047,2013-11-12 13:49:20 -0800,578,1753 +2559,9540,2013-11-09 06:48:25 -0800,578,1753 +2560,162,2013-11-08 09:31:40 -0800,578,1754 +2561,3457,2013-11-08 00:24:10 -0800,578,1754 +2562,9388,2013-11-07 08:42:36 -0800,578,1753 +2563,4210,2013-11-08 19:59:01 -0800,580,1758 +2564,7954,2013-11-08 12:55:21 -0800,580,1758 +2565,4740,2013-11-08 01:32:47 -0800,580,1758 +2566,8399,2013-11-10 14:15:27 -0800,580,1758 +2567,799,2013-11-11 19:15:09 -0800,580,1757 +2568,4011,2013-11-08 10:10:50 -0800,580,1757 +2569,7581,2013-11-11 17:17:53 -0800,581,1762 +2570,776,2013-11-07 08:25:55 -0800,581,1761 +2571,8181,2013-11-10 02:23:04 -0800,581,1761 +2572,3589,2013-11-10 17:12:59 -0800,581,1762 +2573,8100,2013-11-11 13:14:43 -0800,581,1762 +2574,6781,2013-11-08 23:28:54 -0800,581,1761 +2575,7281,2013-11-09 17:06:49 -0800,582,1763 +2576,6080,2013-11-12 22:15:05 -0800,582,1763 +2577,9755,2013-11-11 20:12:05 -0800,582,1763 +2578,5431,2013-11-10 19:17:24 -0800,582,1763 +2579,8030,2013-11-11 01:36:19 -0800,582,1763 +2580,939,2013-11-12 06:57:33 -0800,582,1763 +2581,227,2013-11-09 09:03:23 -0800,582,1763 +2582,6841,2013-11-13 04:22:35 -0800,583,1765 +2583,9338,2013-11-11 17:01:38 -0800,583,1766 +2584,1144,2013-11-07 06:27:42 -0800,583,1765 +2585,3942,2013-11-12 17:01:57 -0800,583,1765 +2586,9470,2013-11-09 12:52:20 -0800,583,1764 +2587,6032,2013-11-12 12:32:15 -0800,584,1769 +2588,5980,2013-11-08 11:09:12 -0800,584,1767 +2589,3652,2013-11-10 23:01:04 -0800,584,1768 +2590,261,2013-11-09 06:13:16 -0800,584,1769 +2591,5124,2013-11-09 00:26:59 -0800,584,1768 +2592,2827,2013-11-08 06:58:15 -0800,584,1768 +2593,7956,2013-11-07 12:01:16 -0800,584,1769 +2594,8128,2013-11-10 07:22:45 -0800,584,1767 +2595,8314,2013-11-10 17:18:33 -0800,584,1767 +2596,6690,2013-11-12 17:00:50 -0800,585,1772 +2597,1352,2013-11-06 14:25:15 -0800,585,1773 +2598,7448,2013-11-07 09:16:11 -0800,585,1772 +2599,5635,2013-11-12 20:24:24 -0800,585,1774 +2600,469,2013-11-12 22:17:54 -0800,585,1770 +2601,5696,2013-11-10 20:05:28 -0800,585,1772 +2602,3239,2013-11-08 09:27:56 -0800,585,1771 +2603,7741,2013-11-13 03:33:54 -0800,585,1774 +2604,7620,2013-11-12 17:12:40 -0800,586,1776 +2605,8425,2013-11-09 23:34:01 -0800,586,1777 +2606,671,2013-11-09 15:31:19 -0800,586,1779 +2607,8686,2013-11-12 07:50:37 -0800,587,1780 +2608,9568,2013-11-12 20:57:51 -0800,587,1780 +2609,3763,2013-11-07 18:37:13 -0800,587,1780 +2610,3678,2013-11-08 04:59:09 -0800,587,1780 +2611,1623,2013-11-12 09:29:07 -0800,587,1780 +2612,7198,2013-11-09 03:57:33 -0800,588,1782 +2613,1969,2013-11-12 12:39:00 -0800,588,1781 +2614,4620,2013-11-06 17:26:25 -0800,588,1782 +2615,8023,2013-11-08 07:57:49 -0800,588,1782 +2616,335,2013-11-11 03:19:20 -0800,589,1785 +2617,8639,2013-11-12 21:59:55 -0800,589,1785 +2618,9522,2013-11-07 14:23:57 -0800,589,1785 +2619,5670,2013-11-07 22:21:32 -0800,589,1785 +2620,1989,2013-11-06 09:17:52 -0800,589,1785 +2621,6991,2013-11-11 08:16:42 -0800,590,1786 +2622,8385,2013-11-06 17:32:36 -0800,591,1789 +2623,2248,2013-11-09 18:07:13 -0800,591,1789 +2624,8886,2013-11-06 20:32:08 -0800,591,1790 +2625,1884,2013-11-06 23:59:40 -0800,591,1789 +2626,683,2013-11-13 01:01:36 -0800,591,1791 +2627,2112,2013-11-08 04:20:03 -0800,591,1789 +2628,7840,2013-11-07 05:03:05 -0800,591,1792 +2629,4148,2013-11-09 06:43:18 -0800,591,1789 +2630,2620,2013-11-11 04:08:10 -0800,591,1789 +2631,9434,2013-11-08 20:22:09 -0800,592,1793 +2632,4099,2013-11-08 07:13:05 -0800,592,1794 +2633,1971,2013-11-10 18:12:45 -0800,592,1793 +2634,1969,2013-11-09 21:41:57 -0800,593,1799 +2635,4899,2013-11-11 13:15:25 -0800,593,1800 +2636,9138,2013-11-11 20:30:28 -0800,594,1804 +2637,8283,2013-11-10 05:35:00 -0800,594,1803 +2638,5840,2013-11-10 23:53:18 -0800,594,1805 +2639,498,2013-11-10 16:50:35 -0800,594,1805 +2640,5928,2013-11-08 20:03:15 -0800,594,1804 +2641,755,2013-11-06 21:42:32 -0800,594,1805 +2642,3197,2013-11-13 05:23:50 -0800,594,1804 +2643,5219,2013-11-09 01:25:55 -0800,595,1809 +2644,9759,2013-11-12 16:57:05 -0800,595,1810 +2645,1552,2013-11-10 08:40:37 -0800,596,1813 +2646,1810,2013-11-07 15:57:08 -0800,596,1812 +2647,2861,2013-11-09 21:16:13 -0800,596,1813 +2648,8323,2013-11-08 13:20:55 -0800,596,1811 +2649,6215,2013-11-10 04:21:04 -0800,596,1811 +2650,3449,2013-11-06 10:12:50 -0800,596,1811 +2651,7666,2013-11-09 04:12:01 -0800,596,1813 +2652,2477,2013-11-10 00:53:52 -0800,597,1814 +2653,6970,2013-11-10 11:52:39 -0800,597,1817 +2654,6283,2013-11-07 20:57:37 -0800,597,1815 +2655,6387,2013-11-09 19:26:27 -0800,597,1818 +2656,8579,2013-11-13 07:22:59 -0800,597,1817 +2657,1160,2013-11-08 05:35:57 -0800,597,1816 +2658,4849,2013-11-07 02:18:09 -0800,597,1814 +2659,8059,2013-11-12 14:36:25 -0800,598,1819 +2660,1580,2013-11-09 04:07:51 -0800,598,1820 +2661,8138,2013-11-12 05:09:28 -0800,598,1819 +2662,2760,2013-11-11 21:14:34 -0800,598,1821 +2663,180,2013-11-08 16:35:16 -0800,598,1819 +2664,3828,2013-11-07 16:04:20 -0800,598,1819 +2665,6230,2013-11-12 12:57:57 -0800,598,1821 +2666,6550,2013-11-06 13:54:43 -0800,598,1820 +2667,5570,2013-11-09 15:52:26 -0800,598,1821 +2668,7238,2013-11-07 02:05:21 -0800,599,1823 +2669,2428,2013-11-08 02:48:52 -0800,599,1823 +2670,811,2013-11-09 21:28:29 -0800,599,1822 +2671,5995,2013-11-10 21:48:59 -0800,599,1823 +2672,3254,2013-11-06 20:47:56 -0800,599,1823 +2673,4571,2013-11-08 19:46:02 -0800,600,1825 +2674,6690,2013-11-07 19:30:04 -0800,600,1826 +2675,5360,2013-11-13 04:24:18 -0800,600,1826 +2676,9376,2013-11-09 11:30:10 -0800,600,1824 +2677,5840,2013-11-10 10:37:21 -0800,600,1824 +2678,2339,2013-11-12 04:00:42 -0800,600,1826 +2679,5788,2013-11-11 22:20:37 -0800,601,1828 +2680,1299,2013-11-11 14:12:33 -0800,601,1829 +2681,9158,2013-11-11 00:04:16 -0800,601,1827 +2682,476,2013-11-08 11:42:15 -0800,601,1829 +2683,5983,2013-11-07 19:28:24 -0800,601,1828 +2684,4229,2013-11-12 13:31:41 -0800,601,1827 +2685,3511,2013-11-10 15:01:12 -0800,601,1827 +2686,4300,2013-11-11 09:36:52 -0800,601,1827 +2687,7626,2013-11-09 12:04:56 -0800,601,1827 +2688,8411,2013-11-12 05:06:36 -0800,602,1831 +2689,3452,2013-11-07 19:10:35 -0800,602,1831 +2690,2920,2013-11-12 16:13:18 -0800,602,1830 +2691,6264,2013-11-07 00:31:33 -0800,602,1830 +2692,8992,2013-11-11 23:34:18 -0800,603,1833 +2693,2012,2013-11-12 23:59:03 -0800,603,1836 +2694,450,2013-11-10 05:31:44 -0800,603,1832 +2695,3597,2013-11-06 16:04:30 -0800,603,1832 +2696,9752,2013-11-12 03:16:55 -0800,603,1836 +2697,3069,2013-11-06 10:01:40 -0800,603,1832 +2698,5748,2013-11-08 11:59:16 -0800,604,1837 +2699,6322,2013-11-12 15:51:09 -0800,604,1837 +2700,2113,2013-11-10 20:19:20 -0800,605,1839 +2701,7127,2013-11-10 11:07:11 -0800,605,1839 +2702,8200,2013-11-06 18:29:42 -0800,605,1838 +2703,7238,2013-11-10 00:43:25 -0800,605,1839 +2704,8051,2013-11-13 04:37:09 -0800,605,1838 +2705,8476,2013-11-09 15:51:15 -0800,605,1839 +2706,3145,2013-11-08 22:41:12 -0800,606,1840 +2707,4473,2013-11-07 00:49:15 -0800,606,1840 +2708,458,2013-11-10 11:46:54 -0800,606,1841 +2709,6300,2013-11-06 13:35:54 -0800,606,1843 +2710,5750,2013-11-08 21:12:12 -0800,606,1842 +2711,2858,2013-11-13 07:38:50 -0800,606,1842 +2712,3199,2013-11-09 18:16:57 -0800,606,1843 +2713,9190,2013-11-10 09:03:29 -0800,606,1842 +2714,47,2013-11-13 01:22:12 -0800,606,1840 +2715,254,2013-11-11 23:46:02 -0800,607,1844 +2716,8266,2013-11-08 05:03:57 -0800,607,1844 +2717,3783,2013-11-11 18:22:49 -0800,607,1844 +2718,7089,2013-11-08 20:53:20 -0800,607,1844 +2719,4434,2013-11-12 04:03:09 -0800,607,1844 +2720,4483,2013-11-08 07:16:04 -0800,607,1844 +2721,640,2013-11-09 15:01:17 -0800,607,1844 +2722,9748,2013-11-09 18:49:22 -0800,607,1844 +2723,7747,2013-11-07 08:24:43 -0800,607,1844 +2724,3781,2013-11-10 09:29:44 -0800,608,1847 +2725,3825,2013-11-10 01:15:37 -0800,608,1847 +2726,5633,2013-11-10 18:55:42 -0800,608,1846 +2727,7420,2013-11-10 11:58:37 -0800,608,1847 +2728,471,2013-11-06 14:31:20 -0800,608,1847 +2729,2054,2013-11-12 20:23:02 -0800,608,1846 +2730,3850,2013-11-09 11:17:14 -0800,608,1847 +2731,6670,2013-11-12 09:10:53 -0800,608,1845 +2732,490,2013-11-12 00:56:39 -0800,609,1848 +2733,5115,2013-11-10 08:30:33 -0800,609,1849 +2734,8923,2013-11-07 13:48:20 -0800,610,1850 +2735,6110,2013-11-11 20:25:01 -0800,610,1850 +2736,749,2013-11-08 19:48:35 -0800,610,1851 +2737,9296,2013-11-08 06:38:36 -0800,610,1851 +2738,6948,2013-11-07 18:36:09 -0800,610,1851 +2739,2523,2013-11-12 18:43:08 -0800,610,1851 +2740,4099,2013-11-10 01:35:05 -0800,610,1851 +2741,4090,2013-11-08 02:07:22 -0800,611,1852 +2742,4810,2013-11-06 10:07:48 -0800,613,1856 +2743,1158,2013-11-09 06:26:49 -0800,614,1860 +2744,2060,2013-11-06 23:54:47 -0800,614,1860 +2745,2981,2013-11-12 20:38:22 -0800,614,1861 +2746,6315,2013-11-13 06:06:50 -0800,616,1866 +2747,7781,2013-11-12 13:47:19 -0800,616,1867 +2748,2459,2013-11-09 04:30:12 -0800,616,1865 +2749,8449,2013-11-07 12:47:07 -0800,617,1871 +2750,4445,2013-11-06 14:58:26 -0800,617,1871 +2751,9267,2013-11-11 23:35:53 -0800,617,1868 +2752,2688,2013-11-12 19:52:43 -0800,617,1869 +2753,4141,2013-11-07 22:49:01 -0800,617,1871 +2754,713,2013-11-10 11:57:16 -0800,617,1868 +2755,8036,2013-11-08 14:09:24 -0800,618,1873 +2756,6220,2013-11-06 10:15:36 -0800,618,1872 +2757,495,2013-11-07 15:02:18 -0800,618,1873 +2758,6149,2013-11-10 06:59:58 -0800,618,1873 +2759,973,2013-11-11 16:48:05 -0800,618,1874 +2760,2037,2013-11-09 16:10:26 -0800,618,1872 +2761,3547,2013-11-09 18:15:44 -0800,618,1873 +2762,7465,2013-11-09 08:25:23 -0800,619,1876 +2763,5395,2013-11-09 03:46:26 -0800,619,1876 +2764,7534,2013-11-12 20:16:38 -0800,619,1875 +2765,4026,2013-11-09 03:58:04 -0800,619,1875 +2766,3678,2013-11-11 21:06:38 -0800,619,1875 +2767,1041,2013-11-12 20:33:50 -0800,620,1879 +2768,944,2013-11-11 18:28:38 -0800,620,1879 +2769,8130,2013-11-07 18:33:28 -0800,620,1879 +2770,9439,2013-11-09 07:20:41 -0800,620,1879 +2771,470,2013-11-11 08:38:35 -0800,620,1879 +2772,6297,2013-11-10 14:03:19 -0800,620,1879 +2773,9891,2013-11-06 12:26:23 -0800,620,1879 +2774,5615,2013-11-08 06:01:10 -0800,620,1879 +2775,9120,2013-11-07 21:10:42 -0800,621,1882 +2776,3829,2013-11-06 08:38:27 -0800,621,1881 +2777,5736,2013-11-12 21:45:04 -0800,621,1881 +2778,1932,2013-11-12 07:43:26 -0800,621,1881 +2779,8768,2013-11-06 13:32:11 -0800,621,1882 +2780,574,2013-11-07 11:47:51 -0800,621,1882 +2781,2935,2013-11-09 21:34:20 -0800,621,1880 +2782,587,2013-11-09 21:25:35 -0800,621,1881 +2783,6445,2013-11-12 06:38:03 -0800,621,1882 +2784,8130,2013-11-09 18:20:52 -0800,622,1884 +2785,9770,2013-11-11 21:47:24 -0800,622,1884 +2786,5021,2013-11-08 02:41:29 -0800,622,1884 +2787,3736,2013-11-09 05:01:00 -0800,622,1883 +2788,1019,2013-11-13 04:39:17 -0800,622,1884 +2789,7837,2013-11-12 21:24:58 -0800,623,1885 +2790,8746,2013-11-09 04:13:36 -0800,623,1886 +2791,6670,2013-11-07 08:26:15 -0800,623,1886 +2792,8277,2013-11-10 10:32:56 -0800,623,1885 +2793,5142,2013-11-08 17:45:02 -0800,624,1887 +2794,5122,2013-11-07 03:32:32 -0800,624,1887 +2795,6072,2013-11-07 06:53:54 -0800,624,1887 +2796,9372,2013-11-09 21:48:50 -0800,624,1887 +2797,9689,2013-11-07 23:33:15 -0800,625,1888 +2798,9815,2013-11-08 04:56:09 -0800,625,1888 +2799,1059,2013-11-12 05:52:57 -0800,625,1888 +2800,6843,2013-11-09 23:02:35 -0800,625,1888 +2801,6544,2013-11-11 00:26:44 -0800,625,1888 +2802,746,2013-11-09 13:21:48 -0800,625,1888 +2803,4394,2013-11-08 04:52:24 -0800,626,1889 +2804,3048,2013-11-06 11:03:39 -0800,626,1889 +2805,9865,2013-11-07 18:21:15 -0800,626,1889 +2806,7758,2013-11-09 12:20:12 -0800,626,1889 +2807,7788,2013-11-13 06:26:32 -0800,626,1889 +2808,4848,2013-11-09 09:29:49 -0800,626,1889 +2809,627,2013-11-07 19:48:36 -0800,626,1889 +2810,5327,2013-11-12 20:26:38 -0800,627,1892 +2811,5115,2013-11-09 19:09:32 -0800,627,1891 +2812,5181,2013-11-06 09:38:14 -0800,627,1893 +2813,3440,2013-11-10 23:37:54 -0800,627,1891 +2814,2450,2013-11-06 22:49:40 -0800,627,1891 +2815,246,2013-11-12 05:25:01 -0800,629,1898 +2816,5273,2013-11-11 04:50:33 -0800,629,1899 +2817,1684,2013-11-06 18:33:35 -0800,629,1899 +2818,8555,2013-11-07 08:24:25 -0800,629,1899 +2819,140,2013-11-11 17:46:13 -0800,630,1903 +2820,9013,2013-11-09 23:44:44 -0800,630,1901 +2821,8400,2013-11-13 01:33:02 -0800,630,1901 +2822,5441,2013-11-10 15:37:57 -0800,630,1901 +2823,2789,2013-11-12 03:38:21 -0800,630,1901 +2824,9370,2013-11-11 11:47:03 -0800,630,1903 +2825,2013,2013-11-07 16:59:49 -0800,630,1903 +2826,8565,2013-11-10 07:14:11 -0800,630,1901 +2827,1818,2013-11-11 12:47:47 -0800,630,1903 +2828,8978,2013-11-08 10:24:45 -0800,631,1904 +2829,1657,2013-11-06 11:11:42 -0800,631,1904 +2830,4230,2013-11-08 15:06:12 -0800,631,1904 +2831,9122,2013-11-07 00:14:08 -0800,631,1904 +2832,8862,2013-11-11 05:42:24 -0800,631,1904 +2833,60,2013-11-07 09:58:07 -0800,631,1904 +2834,1917,2013-11-12 15:05:57 -0800,632,1907 +2835,2720,2013-11-13 04:28:43 -0800,632,1906 +2836,9742,2013-11-10 05:59:11 -0800,632,1907 +2837,3064,2013-11-07 12:50:12 -0800,632,1907 +2838,5950,2013-11-07 10:56:25 -0800,632,1907 +2839,7620,2013-11-07 06:20:17 -0800,632,1906 +2840,7444,2013-11-07 18:59:11 -0800,633,1909 +2841,9751,2013-11-08 05:27:42 -0800,633,1909 +2842,9072,2013-11-09 04:35:05 -0800,633,1908 +2843,8139,2013-11-12 16:15:45 -0800,633,1910 +2844,8663,2013-11-11 22:15:52 -0800,633,1911 +2845,2387,2013-11-06 21:46:01 -0800,633,1909 +2846,911,2013-11-12 02:16:37 -0800,633,1910 +2847,1464,2013-11-12 10:11:46 -0800,633,1911 +2848,3110,2013-11-09 05:28:48 -0800,634,1913 +2849,518,2013-11-10 03:16:26 -0800,634,1913 +2850,4992,2013-11-12 12:20:06 -0800,634,1912 +2851,3490,2013-11-13 00:12:55 -0800,634,1913 +2852,2594,2013-11-09 13:15:39 -0800,634,1916 +2853,758,2013-11-11 16:36:22 -0800,634,1916 +2854,3956,2013-11-13 06:51:34 -0800,635,1921 +2855,6249,2013-11-10 07:29:43 -0800,635,1918 +2856,8582,2013-11-12 00:29:28 -0800,635,1921 +2857,7145,2013-11-07 00:54:37 -0800,635,1917 +2858,5991,2013-11-10 02:43:01 -0800,635,1917 +2859,5272,2013-11-06 18:56:50 -0800,635,1919 +2860,6766,2013-11-12 07:00:46 -0800,635,1918 +2861,7061,2013-11-06 21:45:13 -0800,636,1924 +2862,3583,2013-11-08 14:08:54 -0800,636,1923 +2863,3917,2013-11-10 19:19:58 -0800,636,1923 +2864,276,2013-11-10 21:31:56 -0800,636,1925 +2865,1757,2013-11-07 05:33:24 -0800,636,1923 +2866,8554,2013-11-07 02:23:19 -0800,636,1925 +2867,3779,2013-11-07 15:54:45 -0800,636,1925 +2868,2511,2013-11-07 22:01:45 -0800,636,1922 +2869,8712,2013-11-11 17:32:26 -0800,637,1926 +2870,112,2013-11-11 04:04:14 -0800,637,1928 +2871,6581,2013-11-08 14:33:51 -0800,637,1928 +2872,9051,2013-11-11 09:42:12 -0800,638,1932 +2873,3879,2013-11-12 21:22:25 -0800,638,1930 +2874,4890,2013-11-07 17:42:11 -0800,638,1929 +2875,1764,2013-11-11 14:58:12 -0800,638,1929 +2876,6572,2013-11-09 08:53:27 -0800,640,1939 +2877,8583,2013-11-10 12:01:59 -0800,640,1939 +2878,1825,2013-11-09 09:43:59 -0800,641,1941 +2879,3697,2013-11-13 02:00:26 -0800,641,1941 +2880,3034,2013-11-10 06:15:14 -0800,641,1941 +2881,746,2013-11-09 03:29:57 -0800,642,1943 +2882,3849,2013-11-07 11:24:21 -0800,642,1943 +2883,9239,2013-11-11 15:44:52 -0800,642,1944 +2884,6900,2013-11-11 03:16:39 -0800,642,1944 +2885,217,2013-11-12 15:07:26 -0800,642,1945 +2886,8062,2013-11-06 14:18:21 -0800,642,1944 +2887,7516,2013-11-09 08:18:01 -0800,642,1942 +2888,9044,2013-11-06 12:59:51 -0800,643,1946 +2889,3856,2013-11-09 07:37:45 -0800,643,1948 +2890,4525,2013-11-09 19:30:16 -0800,643,1947 +2891,4840,2013-11-06 19:38:41 -0800,643,1948 +2892,6659,2013-11-07 10:18:48 -0800,643,1946 +2893,7698,2013-11-10 12:36:58 -0800,643,1947 +2894,2791,2013-11-09 15:54:26 -0800,643,1947 +2895,8923,2013-11-11 09:06:36 -0800,644,1951 +2896,9520,2013-11-08 12:46:21 -0800,644,1951 +2897,6523,2013-11-06 16:30:03 -0800,644,1950 +2898,710,2013-11-09 23:29:01 -0800,645,1956 +2899,3077,2013-11-08 00:54:10 -0800,645,1953 +2900,3950,2013-11-10 05:44:01 -0800,646,1958 +2901,8490,2013-11-10 02:55:31 -0800,646,1958 +2902,2897,2013-11-12 20:19:51 -0800,646,1958 +2903,7159,2013-11-07 18:20:38 -0800,647,1962 +2904,4789,2013-11-12 08:57:30 -0800,647,1960 +2905,5921,2013-11-08 07:42:57 -0800,647,1961 +2906,9235,2013-11-07 04:58:46 -0800,648,1963 +2907,6912,2013-11-09 05:22:54 -0800,648,1963 +2908,7240,2013-11-12 20:54:10 -0800,648,1963 +2909,6559,2013-11-06 22:39:33 -0800,648,1965 +2910,8033,2013-11-11 21:43:11 -0800,649,1967 +2911,5468,2013-11-08 20:37:38 -0800,650,1970 +2912,2080,2013-11-06 22:41:17 -0800,650,1970 +2913,6540,2013-11-07 07:23:14 -0800,650,1968 +2914,3226,2013-11-12 17:58:38 -0800,650,1969 +2915,7840,2013-11-07 09:53:43 -0800,650,1970 +2916,495,2013-11-07 01:41:35 -0800,650,1968 +2917,9570,2013-11-07 10:21:28 -0800,650,1969 +2918,9135,2013-11-11 23:41:51 -0800,650,1969 +2919,4156,2013-11-07 09:04:02 -0800,650,1968 +2920,6187,2013-11-12 04:54:19 -0800,651,1971 +2921,4662,2013-11-08 03:13:32 -0800,651,1971 +2922,7450,2013-11-10 02:22:45 -0800,651,1972 +2923,2183,2013-11-13 05:38:19 -0800,651,1971 +2924,7148,2013-11-11 13:33:41 -0800,651,1971 +2925,6032,2013-11-10 12:09:03 -0800,651,1971 +2926,4074,2013-11-13 01:02:07 -0800,651,1973 +2927,4429,2013-11-09 16:04:03 -0800,652,1974 +2928,2585,2013-11-11 20:47:57 -0800,652,1975 +2929,9626,2013-11-09 15:06:11 -0800,652,1975 +2930,8331,2013-11-09 19:15:34 -0800,652,1974 +2931,6024,2013-11-08 13:25:41 -0800,653,1977 +2932,570,2013-11-11 06:06:36 -0800,653,1980 +2933,8699,2013-11-10 11:30:37 -0800,653,1980 +2934,4421,2013-11-06 16:12:17 -0800,653,1976 +2935,7719,2013-11-06 20:43:40 -0800,653,1978 +2936,1300,2013-11-07 10:04:01 -0800,653,1977 +2937,4533,2013-11-10 06:49:26 -0800,653,1980 +2938,5083,2013-11-10 19:08:43 -0800,653,1978 +2939,6613,2013-11-12 09:26:00 -0800,654,1983 +2940,4197,2013-11-09 13:57:51 -0800,654,1984 +2941,4243,2013-11-10 16:17:19 -0800,654,1982 +2942,3870,2013-11-08 03:09:23 -0800,654,1984 +2943,2755,2013-11-09 09:03:51 -0800,655,1985 +2944,6617,2013-11-08 00:06:19 -0800,655,1987 +2945,7337,2013-11-13 07:01:31 -0800,655,1985 +2946,8993,2013-11-12 23:25:56 -0800,655,1987 +2947,5064,2013-11-10 12:54:44 -0800,655,1985 +2948,4533,2013-11-08 09:27:15 -0800,656,1989 +2949,5454,2013-11-10 18:58:59 -0800,656,1989 +2950,2310,2013-11-06 20:47:41 -0800,657,1990 +2951,4390,2013-11-06 17:43:03 -0800,657,1990 +2952,6418,2013-11-09 19:21:24 -0800,657,1990 +2953,1786,2013-11-09 13:32:23 -0800,657,1990 +2954,1013,2013-11-07 09:29:10 -0800,657,1990 +2955,6239,2013-11-09 19:38:53 -0800,657,1990 +2956,1044,2013-11-07 01:00:12 -0800,658,1993 +2957,7066,2013-11-09 18:36:04 -0800,658,1991 +2958,6761,2013-11-08 10:05:20 -0800,658,1993 +2959,9894,2013-11-09 11:06:57 -0800,658,1993 +2960,5276,2013-11-09 19:59:57 -0800,658,1993 +2961,1966,2013-11-08 17:49:35 -0800,658,1994 +2962,3084,2013-11-06 20:45:31 -0800,660,1997 +2963,4210,2013-11-09 15:44:36 -0800,660,1996 +2964,6745,2013-11-10 05:47:25 -0800,660,1997 +2965,6039,2013-11-11 07:14:07 -0800,660,1997 +2966,6514,2013-11-08 22:55:48 -0800,660,1996 +2967,220,2013-11-09 22:00:49 -0800,661,1998 +2968,7034,2013-11-06 22:34:21 -0800,661,1998 +2969,5682,2013-11-10 05:25:36 -0800,661,1998 +2970,2577,2013-11-13 01:53:40 -0800,661,1998 +2971,8870,2013-11-07 03:20:02 -0800,661,1998 +2972,665,2013-11-11 15:57:36 -0800,661,1998 +2973,6693,2013-11-12 10:56:04 -0800,661,1998 +2974,3020,2013-11-09 14:35:14 -0800,661,1998 +2975,459,2013-11-11 20:49:50 -0800,661,1998 +2976,2195,2013-11-07 16:26:17 -0800,662,2000 +2977,5835,2013-11-06 08:51:44 -0800,662,2000 +2978,8867,2013-11-12 08:45:07 -0800,662,2000 +2979,1798,2013-11-10 21:43:20 -0800,663,2004 +2980,6353,2013-11-06 09:43:24 -0800,663,2005 +2981,6046,2013-11-11 23:10:06 -0800,664,2009 +2982,5620,2013-11-11 12:39:03 -0800,664,2006 +2983,313,2013-11-07 17:29:10 -0800,664,2009 +2984,4490,2013-11-09 04:57:19 -0800,664,2007 +2985,1190,2013-11-11 03:20:21 -0800,664,2010 +2986,7543,2013-11-12 18:13:39 -0800,665,2011 +2987,965,2013-11-08 06:37:37 -0800,665,2011 +2988,653,2013-11-09 07:16:15 -0800,665,2011 +2989,560,2013-11-13 05:13:20 -0800,666,2012 +2990,8470,2013-11-11 15:45:18 -0800,666,2012 +2991,6054,2013-11-10 06:56:09 -0800,666,2015 +2992,9450,2013-11-13 04:12:44 -0800,666,2014 +2993,968,2013-11-11 15:46:04 -0800,666,2012 +2994,4450,2013-11-11 16:57:22 -0800,667,2017 +2995,4517,2013-11-13 04:55:06 -0800,667,2017 +2996,4922,2013-11-07 07:44:27 -0800,667,2017 +2997,3565,2013-11-10 05:04:34 -0800,667,2017 +2998,4660,2013-11-07 22:03:57 -0800,668,2020 +2999,1572,2013-11-06 11:09:45 -0800,668,2019 +3000,4215,2013-11-10 11:25:58 -0800,668,2020 +3001,1247,2013-11-09 11:32:00 -0800,668,2018 +3002,49,2013-11-08 18:25:22 -0800,668,2018 +3003,2631,2013-11-08 23:50:03 -0800,668,2019 +3004,2078,2013-11-10 12:52:33 -0800,668,2020 +3005,9118,2013-11-09 10:50:55 -0800,668,2019 +3006,1283,2013-11-09 23:01:34 -0800,668,2019 +3007,4170,2013-11-13 01:31:09 -0800,669,2021 +3008,5637,2013-11-10 11:49:18 -0800,669,2023 +3009,8325,2013-11-08 17:35:41 -0800,669,2024 +3010,5293,2013-11-09 14:52:05 -0800,669,2025 +3011,1795,2013-11-11 12:22:21 -0800,669,2024 +3012,7598,2013-11-08 02:48:59 -0800,669,2025 +3013,3153,2013-11-09 15:52:37 -0800,669,2023 +3014,4800,2013-11-11 03:32:13 -0800,669,2024 +3015,9176,2013-11-09 15:55:51 -0800,670,2026 +3016,978,2013-11-10 06:49:53 -0800,670,2026 +3017,2150,2013-11-11 01:56:26 -0800,670,2026 +3018,9614,2013-11-07 12:35:34 -0800,670,2026 +3019,1970,2013-11-13 05:05:35 -0800,670,2026 +3020,5299,2013-11-09 19:52:23 -0800,672,2032 +3021,7227,2013-11-10 03:21:53 -0800,672,2032 +3022,4314,2013-11-10 11:09:04 -0800,673,2033 +3023,1478,2013-11-10 01:33:00 -0800,673,2034 +3024,1244,2013-11-06 15:13:27 -0800,673,2036 +3025,472,2013-11-07 23:17:03 -0800,673,2035 +3026,470,2013-11-12 02:30:09 -0800,674,2037 +3027,6087,2013-11-12 17:30:49 -0800,674,2037 +3028,1592,2013-11-06 23:10:08 -0800,674,2037 +3029,7522,2013-11-12 19:04:21 -0800,674,2037 +3030,7084,2013-11-07 20:07:22 -0800,674,2037 +3031,3995,2013-11-07 07:02:37 -0800,674,2037 +3032,760,2013-11-09 18:29:42 -0800,675,2038 +3033,9692,2013-11-06 10:22:48 -0800,675,2040 +3034,4635,2013-11-12 07:01:34 -0800,675,2040 +3035,3911,2013-11-07 23:13:18 -0800,675,2040 +3036,7956,2013-11-11 16:48:40 -0800,676,2043 +3037,2470,2013-11-07 01:08:09 -0800,676,2044 +3038,584,2013-11-10 08:27:06 -0800,676,2044 +3039,8120,2013-11-08 02:33:16 -0800,676,2042 +3040,5063,2013-11-10 15:10:10 -0800,676,2042 +3041,9553,2013-11-11 01:31:01 -0800,676,2041 +3042,5427,2013-11-10 22:00:09 -0800,678,2050 +3043,7184,2013-11-06 11:22:08 -0800,678,2051 +3044,8578,2013-11-07 00:51:03 -0800,678,2050 +3045,3529,2013-11-07 13:59:32 -0800,678,2050 +3046,7009,2013-11-09 17:36:38 -0800,678,2048 +3047,1561,2013-11-08 22:16:56 -0800,678,2051 +3048,446,2013-11-12 05:23:05 -0800,678,2051 +3049,3588,2013-11-11 12:57:27 -0800,678,2048 +3050,1984,2013-11-09 18:55:00 -0800,679,2054 +3051,3045,2013-11-08 05:43:47 -0800,680,2057 +3052,5070,2013-11-12 12:46:02 -0800,680,2058 +3053,3529,2013-11-09 14:24:06 -0800,680,2057 +3054,7395,2013-11-12 06:08:34 -0800,680,2057 +3055,5921,2013-11-11 09:44:47 -0800,681,2059 +3056,9226,2013-11-12 02:32:36 -0800,681,2059 +3057,6066,2013-11-08 04:19:27 -0800,681,2059 +3058,3364,2013-11-09 22:51:09 -0800,681,2059 +3059,6291,2013-11-10 00:05:35 -0800,681,2059 +3060,8614,2013-11-08 14:42:02 -0800,681,2059 +3061,3557,2013-11-10 05:42:11 -0800,681,2059 +3062,9519,2013-11-11 12:48:29 -0800,681,2059 +3063,5797,2013-11-10 06:22:18 -0800,683,2061 +3064,516,2013-11-07 15:23:03 -0800,683,2061 +3065,4998,2013-11-11 03:39:59 -0800,684,2067 +3066,1496,2013-11-11 07:07:19 -0800,684,2066 +3067,5091,2013-11-13 04:28:21 -0800,684,2067 +3068,2384,2013-11-11 14:30:00 -0800,684,2067 +3069,910,2013-11-09 07:31:49 -0800,684,2066 +3070,6655,2013-11-12 21:47:22 -0800,685,2071 +3071,5192,2013-11-11 06:43:50 -0800,686,2074 +3072,7380,2013-11-08 17:32:48 -0800,686,2072 +3073,619,2013-11-10 04:02:58 -0800,686,2074 +3074,594,2013-11-08 19:01:35 -0800,686,2072 +3075,539,2013-11-09 21:39:11 -0800,686,2072 +3076,3715,2013-11-06 16:41:25 -0800,688,2080 +3077,8461,2013-11-10 05:33:30 -0800,688,2083 +3078,7163,2013-11-08 17:55:32 -0800,688,2081 +3079,7356,2013-11-10 09:14:24 -0800,688,2083 +3080,2319,2013-11-11 15:30:18 -0800,688,2080 +3081,8492,2013-11-09 10:27:13 -0800,688,2082 +3082,8887,2013-11-13 07:26:44 -0800,688,2083 +3083,618,2013-11-10 17:12:14 -0800,689,2086 +3084,3649,2013-11-09 17:40:33 -0800,689,2084 +3085,6046,2013-11-06 10:09:47 -0800,689,2084 +3086,9683,2013-11-11 00:02:55 -0800,689,2087 +3087,9713,2013-11-08 22:25:50 -0800,689,2087 +3088,4850,2013-11-10 18:37:44 -0800,689,2086 +3089,4334,2013-11-10 06:35:21 -0800,689,2087 +3090,930,2013-11-08 21:14:11 -0800,689,2084 +3091,3835,2013-11-09 15:41:38 -0800,690,2088 +3092,5363,2013-11-06 09:07:03 -0800,690,2088 +3093,5630,2013-11-13 02:29:05 -0800,690,2089 +3094,6959,2013-11-08 14:20:14 -0800,690,2089 +3095,9339,2013-11-12 02:48:59 -0800,690,2088 +3096,8543,2013-11-08 05:48:31 -0800,690,2089 +3097,9561,2013-11-10 20:06:56 -0800,690,2089 +3098,1682,2013-11-10 16:11:58 -0800,691,2092 +3099,2710,2013-11-10 22:06:33 -0800,691,2093 +3100,3781,2013-11-09 16:26:44 -0800,691,2091 +3101,6773,2013-11-11 11:32:31 -0800,692,2096 +3102,7498,2013-11-08 10:34:01 -0800,692,2096 +3103,9175,2013-11-06 10:00:20 -0800,692,2097 +3104,9533,2013-11-11 23:26:16 -0800,692,2094 +3105,6713,2013-11-09 01:21:07 -0800,692,2096 +3106,124,2013-11-11 07:25:51 -0800,693,2101 +3107,1538,2013-11-12 14:17:26 -0800,693,2101 +3108,4096,2013-11-08 15:01:49 -0800,694,2103 +3109,52,2013-11-10 10:35:45 -0800,694,2104 +3110,9723,2013-11-11 22:33:31 -0800,695,2105 +3111,9739,2013-11-11 23:22:49 -0800,695,2105 +3112,7295,2013-11-12 00:43:04 -0800,695,2105 +3113,5968,2013-11-12 18:43:14 -0800,695,2105 +3114,8040,2013-11-07 06:26:17 -0800,696,2110 +3115,4991,2013-11-09 11:24:30 -0800,697,2111 +3116,214,2013-11-07 10:51:10 -0800,697,2111 +3117,5095,2013-11-07 22:02:12 -0800,697,2112 +3118,2381,2013-11-07 15:14:23 -0800,697,2112 +3119,7030,2013-11-12 22:05:20 -0800,697,2112 +3120,8724,2013-11-10 05:33:30 -0800,697,2111 +3121,9447,2013-11-09 13:42:36 -0800,697,2112 +3122,4830,2013-11-09 13:09:36 -0800,697,2111 +3123,4649,2013-11-11 17:39:43 -0800,698,2115 +3124,8877,2013-11-08 03:30:07 -0800,698,2113 +3125,6740,2013-11-07 16:03:08 -0800,698,2116 +3126,5577,2013-11-13 05:07:45 -0800,698,2116 +3127,4020,2013-11-09 11:04:54 -0800,698,2115 +3128,2725,2013-11-06 20:13:46 -0800,698,2113 +3129,3965,2013-11-07 08:36:02 -0800,698,2114 +3130,8028,2013-11-08 04:06:19 -0800,698,2116 +3131,7917,2013-11-06 14:19:24 -0800,699,2120 +3132,8659,2013-11-12 23:48:09 -0800,699,2117 +3133,5980,2013-11-08 12:53:13 -0800,699,2118 +3134,8690,2013-11-07 19:58:24 -0800,699,2119 +3135,9365,2013-11-12 17:41:26 -0800,699,2120 +3136,7830,2013-11-08 07:20:46 -0800,701,2122 +3137,1828,2013-11-11 01:24:46 -0800,701,2122 +3138,3945,2013-11-06 17:11:47 -0800,701,2123 +3139,8966,2013-11-06 08:57:32 -0800,701,2122 +3140,8093,2013-11-08 17:36:04 -0800,701,2123 +3141,6812,2013-11-06 13:48:32 -0800,701,2122 +3142,9733,2013-11-06 23:09:47 -0800,701,2122 +3143,1678,2013-11-06 15:12:59 -0800,701,2123 +3144,1839,2013-11-08 10:46:48 -0800,703,2125 +3145,4697,2013-11-07 23:42:51 -0800,703,2125 +3146,8855,2013-11-08 19:07:03 -0800,703,2127 +3147,360,2013-11-12 13:37:47 -0800,703,2126 +3148,7392,2013-11-10 14:01:14 -0800,703,2127 +3149,7640,2013-11-09 05:55:17 -0800,704,2128 +3150,8313,2013-11-07 15:14:00 -0800,704,2128 +3151,6366,2013-11-09 01:07:15 -0800,705,2129 +3152,6972,2013-11-12 19:51:02 -0800,705,2129 +3153,2795,2013-11-13 00:13:42 -0800,705,2129 +3154,1959,2013-11-10 22:57:02 -0800,705,2129 +3155,4412,2013-11-10 23:24:04 -0800,705,2129 +3156,3932,2013-11-06 23:08:49 -0800,706,2130 +3157,3143,2013-11-08 11:48:07 -0800,706,2131 +3158,4092,2013-11-11 22:01:56 -0800,706,2130 +3159,4367,2013-11-09 15:23:20 -0800,707,2132 +3160,8651,2013-11-11 10:16:17 -0800,707,2132 +3161,9336,2013-11-07 06:22:50 -0800,707,2132 +3162,3297,2013-11-12 03:14:18 -0800,707,2132 +3163,5129,2013-11-07 19:50:19 -0800,707,2132 +3164,8350,2013-11-07 18:54:26 -0800,707,2132 +3165,7922,2013-11-10 22:20:43 -0800,708,2135 +3166,3116,2013-11-11 13:51:23 -0800,709,2137 +3167,2681,2013-11-09 21:43:00 -0800,709,2137 +3168,8613,2013-11-10 18:37:59 -0800,709,2137 +3169,8489,2013-11-11 05:48:39 -0800,709,2137 +3170,4557,2013-11-11 07:59:02 -0800,709,2137 +3171,3246,2013-11-10 17:53:16 -0800,710,2138 +3172,4684,2013-11-10 11:15:12 -0800,710,2138 +3173,767,2013-11-08 13:14:20 -0800,710,2138 +3174,8561,2013-11-13 08:35:04 -0800,710,2138 +3175,9880,2013-11-12 07:17:39 -0800,710,2138 +3176,7558,2013-11-07 13:45:51 -0800,710,2138 +3177,2953,2013-11-08 20:10:29 -0800,710,2138 +3178,7598,2013-11-11 22:10:03 -0800,710,2138 +3179,8782,2013-11-08 07:00:43 -0800,710,2138 +3180,1084,2013-11-10 15:58:55 -0800,711,2139 +3181,5449,2013-11-11 01:44:16 -0800,711,2139 +3182,5527,2013-11-10 22:12:36 -0800,711,2139 +3183,9711,2013-11-08 06:54:01 -0800,712,2142 +3184,446,2013-11-12 18:05:05 -0800,712,2142 +3185,5889,2013-11-07 18:19:23 -0800,712,2144 +3186,8811,2013-11-12 00:43:26 -0800,712,2144 +3187,3979,2013-11-10 11:47:10 -0800,713,2145 +3188,9472,2013-11-09 10:00:31 -0800,713,2145 +3189,3840,2013-11-13 02:26:56 -0800,713,2145 +3190,6995,2013-11-10 14:23:09 -0800,713,2145 +3191,8013,2013-11-11 17:16:29 -0800,713,2146 +3192,2589,2013-11-11 07:53:06 -0800,713,2146 +3193,2610,2013-11-12 14:11:04 -0800,714,2147 +3194,3697,2013-11-07 13:17:38 -0800,714,2147 +3195,9028,2013-11-07 00:57:58 -0800,714,2147 +3196,7730,2013-11-11 12:38:59 -0800,714,2147 +3197,4892,2013-11-07 06:12:24 -0800,714,2147 +3198,1174,2013-11-09 04:42:04 -0800,715,2148 +3199,8073,2013-11-12 20:00:49 -0800,715,2149 +3200,8249,2013-11-10 06:45:23 -0800,715,2150 +3201,1470,2013-11-12 17:33:29 -0800,715,2148 +3202,6990,2013-11-12 14:53:45 -0800,715,2149 +3203,6829,2013-11-12 07:48:46 -0800,715,2149 +3204,6259,2013-11-08 02:59:57 -0800,715,2151 +3205,9594,2013-11-12 06:12:59 -0800,715,2151 +3206,7062,2013-11-11 19:30:56 -0800,716,2152 +3207,6084,2013-11-12 09:32:18 -0800,716,2152 +3208,5065,2013-11-10 22:55:47 -0800,716,2152 +3209,2068,2013-11-06 17:36:56 -0800,717,2153 +3210,5390,2013-11-12 09:51:58 -0800,717,2153 +3211,2338,2013-11-09 00:00:00 -0800,717,2153 +3212,7281,2013-11-06 14:35:39 -0800,717,2153 +3213,3531,2013-11-08 16:36:12 -0800,717,2153 +3214,2585,2013-11-07 23:54:50 -0800,717,2153 +3215,1348,2013-11-09 11:26:24 -0800,717,2153 +3216,4355,2013-11-12 10:12:20 -0800,717,2153 +3217,3447,2013-11-09 01:43:42 -0800,717,2153 +3218,5027,2013-11-10 04:05:50 -0800,719,2157 +3219,8766,2013-11-07 03:05:00 -0800,719,2157 +3220,328,2013-11-09 16:48:49 -0800,719,2157 +3221,4437,2013-11-10 12:44:19 -0800,719,2157 +3222,8411,2013-11-08 09:56:39 -0800,719,2156 +3223,4200,2013-11-09 15:45:13 -0800,719,2156 +3224,1400,2013-11-10 08:25:14 -0800,719,2157 +3225,1125,2013-11-10 05:07:01 -0800,720,2161 +3226,3320,2013-11-08 15:27:50 -0800,720,2160 +3227,7545,2013-11-11 15:06:52 -0800,720,2161 +3228,960,2013-11-10 03:05:56 -0800,720,2160 +3229,9026,2013-11-12 13:07:11 -0800,720,2158 +3230,3444,2013-11-12 12:32:38 -0800,721,2162 +3231,1227,2013-11-09 16:22:49 -0800,721,2164 +3232,7273,2013-11-10 16:33:06 -0800,721,2165 +3233,5730,2013-11-06 18:18:24 -0800,721,2165 +3234,1951,2013-11-12 14:20:32 -0800,721,2164 +3235,3995,2013-11-07 19:33:49 -0800,721,2164 +3236,7537,2013-11-11 11:36:54 -0800,721,2165 +3237,4443,2013-11-12 15:12:55 -0800,721,2165 +3238,7431,2013-11-10 12:06:31 -0800,721,2163 +3239,2143,2013-11-10 23:05:04 -0800,722,2169 +3240,5687,2013-11-10 22:45:16 -0800,722,2166 +3241,6720,2013-11-10 13:23:00 -0800,722,2169 +3242,3065,2013-11-10 01:41:55 -0800,722,2168 +3243,7245,2013-11-06 20:21:14 -0800,722,2167 +3244,6954,2013-11-06 10:37:50 -0800,722,2169 +3245,3692,2013-11-09 07:03:40 -0800,722,2167 +3246,8215,2013-11-08 15:28:55 -0800,723,2171 +3247,4249,2013-11-12 15:26:22 -0800,723,2171 +3248,5210,2013-11-07 23:52:20 -0800,723,2171 +3249,3521,2013-11-11 08:30:41 -0800,723,2170 +3250,6561,2013-11-11 00:02:24 -0800,723,2172 +3251,8113,2013-11-06 19:31:27 -0800,723,2171 +3252,8142,2013-11-06 14:15:30 -0800,723,2172 +3253,9765,2013-11-11 14:16:25 -0800,723,2171 +3254,5783,2013-11-11 09:32:03 -0800,725,2177 +3255,8489,2013-11-09 23:06:45 -0800,726,2178 +3256,5374,2013-11-09 18:40:54 -0800,726,2179 +3257,9232,2013-11-10 15:06:57 -0800,726,2178 +3258,3050,2013-11-10 07:59:47 -0800,726,2178 +3259,6166,2013-11-07 19:45:53 -0800,726,2180 +3260,1825,2013-11-07 18:27:37 -0800,726,2180 +3261,3026,2013-11-08 11:22:02 -0800,726,2180 +3262,5734,2013-11-08 04:04:52 -0800,726,2179 +3263,3643,2013-11-12 16:06:49 -0800,727,2181 +3264,446,2013-11-07 04:30:52 -0800,727,2181 +3265,1911,2013-11-08 22:55:33 -0800,727,2181 +3266,3322,2013-11-11 13:32:48 -0800,727,2182 +3267,5910,2013-11-08 18:06:02 -0800,728,2183 +3268,7843,2013-11-08 06:09:18 -0800,729,2185 +3269,9638,2013-11-12 16:43:01 -0800,729,2185 +3270,3369,2013-11-11 06:56:44 -0800,729,2185 +3271,1448,2013-11-08 23:28:00 -0800,729,2185 +3272,2572,2013-11-06 11:37:39 -0800,729,2185 +3273,9824,2013-11-10 08:30:10 -0800,729,2185 +3274,6298,2013-11-10 02:22:55 -0800,729,2185 +3275,5445,2013-11-10 12:00:58 -0800,729,2185 +3276,688,2013-11-10 12:03:27 -0800,730,2186 +3277,2685,2013-11-07 16:09:01 -0800,730,2186 +3278,581,2013-11-13 04:54:55 -0800,730,2186 +3279,3840,2013-11-09 10:32:49 -0800,730,2186 +3280,3325,2013-11-09 22:27:56 -0800,730,2186 +3281,926,2013-11-12 18:19:48 -0800,730,2186 +3282,3725,2013-11-08 07:33:49 -0800,730,2186 +3283,869,2013-11-10 02:58:55 -0800,730,2186 +3284,3440,2013-11-08 15:49:34 -0800,731,2187 +3285,3338,2013-11-11 23:47:47 -0800,731,2187 +3286,6010,2013-11-12 20:27:53 -0800,731,2187 +3287,5065,2013-11-08 14:40:10 -0800,731,2187 +3288,2370,2013-11-10 04:56:02 -0800,731,2187 +3289,950,2013-11-10 06:18:25 -0800,731,2187 +3290,7952,2013-11-10 11:02:44 -0800,731,2187 +3291,1381,2013-11-07 21:41:31 -0800,731,2187 +3292,1348,2013-11-09 08:11:20 -0800,732,2192 +3293,8970,2013-11-06 17:17:39 -0800,733,2194 +3294,9527,2013-11-08 20:33:54 -0800,733,2194 +3295,810,2013-11-12 00:01:29 -0800,733,2193 +3296,9168,2013-11-09 02:43:06 -0800,733,2194 +3297,9263,2013-11-10 05:56:27 -0800,734,2197 +3298,7822,2013-11-13 08:30:40 -0800,734,2199 +3299,7284,2013-11-07 15:51:25 -0800,734,2197 +3300,8590,2013-11-08 10:36:36 -0800,734,2195 +3301,9828,2013-11-07 07:11:38 -0800,734,2197 +3302,4942,2013-11-06 18:27:03 -0800,734,2196 +3303,9458,2013-11-11 07:45:26 -0800,734,2197 +3304,9317,2013-11-12 02:29:54 -0800,734,2197 +3305,9440,2013-11-10 16:37:24 -0800,734,2196 +3306,2567,2013-11-06 13:50:44 -0800,735,2201 +3307,1500,2013-11-08 20:38:36 -0800,735,2201 +3308,6159,2013-11-06 11:38:53 -0800,735,2201 +3309,8572,2013-11-08 06:38:08 -0800,735,2201 +3310,2662,2013-11-08 12:40:11 -0800,735,2200 +3311,5672,2013-11-13 05:50:34 -0800,735,2200 +3312,2639,2013-11-11 12:09:35 -0800,735,2200 +3313,3650,2013-11-09 08:37:43 -0800,735,2200 +3314,7209,2013-11-08 09:42:41 -0800,736,2202 +3315,524,2013-11-11 14:07:19 -0800,736,2202 +3316,6809,2013-11-08 16:11:04 -0800,737,2203 +3317,6511,2013-11-11 23:23:22 -0800,737,2204 +3318,5783,2013-11-08 20:24:55 -0800,737,2203 +3319,565,2013-11-11 16:19:32 -0800,737,2203 +3320,8932,2013-11-09 10:19:29 -0800,737,2203 +3321,4835,2013-11-08 07:31:04 -0800,737,2203 +3322,2989,2013-11-12 06:15:13 -0800,737,2203 +3323,8692,2013-11-09 10:01:42 -0800,737,2204 +3324,4349,2013-11-09 12:11:29 -0800,737,2204 +3325,6064,2013-11-10 22:04:36 -0800,738,2206 +3326,7700,2013-11-08 17:18:25 -0800,738,2205 +3327,2649,2013-11-10 22:58:52 -0800,738,2205 +3328,5500,2013-11-12 06:27:24 -0800,739,2207 +3329,4529,2013-11-09 04:39:34 -0800,739,2207 +3330,7883,2013-11-08 11:31:04 -0800,739,2207 +3331,2550,2013-11-11 00:47:31 -0800,739,2207 +3332,455,2013-11-10 20:20:11 -0800,739,2207 +3333,8321,2013-11-13 00:52:32 -0800,739,2207 +3334,2063,2013-11-12 06:59:32 -0800,739,2207 +3335,537,2013-11-12 00:54:16 -0800,739,2207 +3336,8335,2013-11-08 21:23:50 -0800,740,2210 +3337,5572,2013-11-13 00:49:00 -0800,740,2208 +3338,5870,2013-11-10 11:49:51 -0800,740,2209 +3339,7316,2013-11-11 13:56:55 -0800,742,2213 +3340,7228,2013-11-08 21:51:55 -0800,742,2214 +3341,6335,2013-11-10 10:04:55 -0800,743,2218 +3342,728,2013-11-13 06:55:11 -0800,743,2219 +3343,6909,2013-11-12 13:17:35 -0800,743,2219 +3344,2288,2013-11-06 21:49:09 -0800,743,2218 +3345,5298,2013-11-07 09:05:36 -0800,743,2218 +3346,7770,2013-11-07 08:32:05 -0800,743,2219 +3347,3761,2013-11-07 06:04:57 -0800,743,2219 +3348,7564,2013-11-13 08:09:44 -0800,744,2220 +3349,3578,2013-11-10 08:48:16 -0800,744,2221 +3350,624,2013-11-09 18:45:48 -0800,744,2221 +3351,475,2013-11-07 18:14:31 -0800,744,2221 +3352,7170,2013-11-09 12:13:23 -0800,745,2225 +3353,3254,2013-11-10 19:08:29 -0800,745,2223 +3354,9780,2013-11-11 23:15:07 -0800,746,2226 +3355,81,2013-11-12 19:59:05 -0800,746,2228 +3356,7239,2013-11-10 01:52:46 -0800,746,2228 +3357,865,2013-11-07 13:25:31 -0800,747,2230 +3358,9161,2013-11-11 13:36:26 -0800,747,2231 +3359,6898,2013-11-07 23:54:15 -0800,747,2232 +3360,9445,2013-11-11 15:47:33 -0800,747,2231 +3361,9570,2013-11-06 12:19:36 -0800,747,2232 +3362,9154,2013-11-11 13:06:07 -0800,747,2230 +3363,9696,2013-11-11 08:29:04 -0800,748,2235 +3364,6049,2013-11-11 13:44:48 -0800,748,2233 +3365,1929,2013-11-09 15:49:28 -0800,748,2235 +3366,7759,2013-11-09 20:49:47 -0800,748,2235 +3367,1433,2013-11-06 14:07:33 -0800,748,2234 +3368,3811,2013-11-08 11:00:14 -0800,748,2235 +3369,9794,2013-11-06 17:01:52 -0800,749,2237 +3370,9570,2013-11-11 03:23:30 -0800,749,2236 +3371,3861,2013-11-12 11:32:33 -0800,750,2241 +3372,1518,2013-11-07 18:41:53 -0800,750,2242 +3373,1463,2013-11-08 11:22:41 -0800,750,2242 +3374,6133,2013-11-08 02:38:04 -0800,750,2244 +3375,4962,2013-11-06 18:43:47 -0800,750,2245 +3376,7763,2013-11-08 13:15:30 -0800,750,2244 +3377,3974,2013-11-07 07:26:10 -0800,751,2247 +3378,1798,2013-11-08 22:47:06 -0800,751,2247 +3379,4125,2013-11-07 07:00:10 -0800,751,2249 +3380,4098,2013-11-07 00:26:46 -0800,751,2247 +3381,5080,2013-11-09 07:19:48 -0800,752,2250 +3382,3840,2013-11-11 04:45:29 -0800,752,2252 +3383,7509,2013-11-08 06:01:57 -0800,754,2259 +3384,5756,2013-11-08 17:33:49 -0800,754,2256 +3385,6416,2013-11-08 13:08:38 -0800,754,2256 +3386,2140,2013-11-11 04:08:50 -0800,754,2256 +3387,757,2013-11-06 18:15:42 -0800,754,2256 +3388,6340,2013-11-12 06:39:17 -0800,755,2265 +3389,3746,2013-11-07 08:38:26 -0800,755,2264 +3390,6279,2013-11-08 07:32:25 -0800,755,2264 +3391,9150,2013-11-10 23:43:34 -0800,755,2261 +3392,8269,2013-11-12 15:23:45 -0800,755,2264 +3393,9759,2013-11-12 15:52:39 -0800,755,2262 +3394,5599,2013-11-10 20:58:48 -0800,755,2264 +3395,8588,2013-11-11 20:51:27 -0800,755,2262 +3396,2317,2013-11-10 14:09:16 -0800,756,2267 +3397,969,2013-11-07 02:52:53 -0800,756,2270 +3398,8672,2013-11-12 19:16:13 -0800,756,2269 +3399,1097,2013-11-11 00:45:59 -0800,756,2266 +3400,3470,2013-11-07 10:18:31 -0800,756,2266 +3401,2833,2013-11-09 07:02:39 -0800,756,2269 +3402,4354,2013-11-08 08:29:54 -0800,757,2271 +3403,3817,2013-11-07 04:28:57 -0800,757,2271 +3404,270,2013-11-09 15:51:32 -0800,757,2272 +3405,1529,2013-11-10 15:42:31 -0800,758,2276 +3406,3058,2013-11-11 07:17:21 -0800,758,2274 +3407,6484,2013-11-08 12:10:33 -0800,759,2277 +3408,9680,2013-11-08 10:14:37 -0800,759,2277 +3409,5457,2013-11-07 09:07:35 -0800,759,2277 +3410,6376,2013-11-08 04:44:39 -0800,759,2277 +3411,4310,2013-11-10 06:38:59 -0800,759,2277 +3412,1794,2013-11-06 20:17:07 -0800,759,2277 +3413,1770,2013-11-10 12:46:25 -0800,760,2280 +3414,3379,2013-11-08 17:20:52 -0800,760,2280 +3415,3352,2013-11-08 01:01:53 -0800,760,2281 +3416,9516,2013-11-07 15:54:52 -0800,760,2278 +3417,7734,2013-11-09 13:57:41 -0800,760,2281 +3418,4983,2013-11-10 11:08:45 -0800,760,2280 +3419,6267,2013-11-11 14:19:10 -0800,760,2281 +3420,6250,2013-11-06 19:03:56 -0800,760,2280 +3421,3840,2013-11-09 05:23:13 -0800,761,2284 +3422,2416,2013-11-06 17:41:35 -0800,761,2282 +3423,786,2013-11-13 06:19:17 -0800,761,2284 +3424,6990,2013-11-12 06:45:45 -0800,762,2288 +3425,930,2013-11-06 16:44:48 -0800,762,2287 +3426,3578,2013-11-11 07:13:20 -0800,762,2288 +3427,7390,2013-11-09 22:35:29 -0800,762,2287 +3428,8454,2013-11-10 03:30:29 -0800,763,2289 +3429,7712,2013-11-10 23:21:41 -0800,763,2289 +3430,9822,2013-11-09 06:54:16 -0800,763,2289 +3431,8053,2013-11-11 11:56:57 -0800,763,2289 +3432,245,2013-11-11 02:54:10 -0800,763,2289 +3433,7509,2013-11-10 04:18:33 -0800,763,2289 +3434,539,2013-11-06 09:54:17 -0800,763,2289 +3435,4053,2013-11-11 15:52:32 -0800,765,2291 +3436,7840,2013-11-13 05:24:58 -0800,765,2291 +3437,9434,2013-11-09 03:13:28 -0800,765,2292 +3438,4647,2013-11-12 12:14:19 -0800,765,2292 +3439,5735,2013-11-10 07:41:18 -0800,767,2300 +3440,9867,2013-11-12 18:44:54 -0800,767,2301 +3441,3236,2013-11-10 23:33:56 -0800,767,2301 +3442,9886,2013-11-08 23:42:50 -0800,768,2304 +3443,1373,2013-11-09 12:47:16 -0800,768,2305 +3444,4216,2013-11-13 06:44:46 -0800,768,2305 +3445,2188,2013-11-09 04:51:03 -0800,768,2304 +3446,2278,2013-11-07 03:19:54 -0800,769,2310 +3447,140,2013-11-09 11:12:19 -0800,769,2310 +3448,790,2013-11-06 10:08:36 -0800,769,2308 +3449,2989,2013-11-10 16:11:30 -0800,769,2310 +3450,6962,2013-11-09 02:00:43 -0800,769,2308 +3451,7581,2013-11-10 17:33:17 -0800,769,2307 +3452,7138,2013-11-10 11:21:43 -0800,769,2307 +3453,6032,2013-11-08 15:36:20 -0800,769,2308 +3454,3137,2013-11-11 14:36:01 -0800,771,2318 +3455,5577,2013-11-12 11:03:58 -0800,771,2316 +3456,8490,2013-11-13 08:35:16 -0800,771,2317 +3457,7384,2013-11-12 12:35:53 -0800,772,2321 +3458,190,2013-11-10 00:25:01 -0800,772,2320 +3459,9579,2013-11-09 20:11:34 -0800,772,2319 +3460,7431,2013-11-07 07:25:53 -0800,772,2320 +3461,2877,2013-11-08 13:42:02 -0800,772,2320 +3462,1169,2013-11-10 10:21:33 -0800,772,2319 +3463,2430,2013-11-11 09:00:45 -0800,772,2320 +3464,6422,2013-11-11 09:11:56 -0800,773,2322 +3465,6296,2013-11-09 19:27:49 -0800,773,2322 +3466,3654,2013-11-12 19:43:40 -0800,773,2323 +3467,6789,2013-11-10 20:17:40 -0800,773,2322 +3468,991,2013-11-10 01:27:33 -0800,773,2323 +3469,2185,2013-11-11 01:07:40 -0800,773,2323 +3470,1187,2013-11-09 04:32:30 -0800,773,2325 +3471,2045,2013-11-09 01:35:20 -0800,773,2324 +3472,1511,2013-11-07 18:25:52 -0800,774,2326 +3473,910,2013-11-11 17:12:44 -0800,774,2327 +3474,5810,2013-11-10 00:33:25 -0800,774,2326 +3475,8400,2013-11-07 00:18:45 -0800,774,2328 +3476,1548,2013-11-12 03:07:20 -0800,774,2328 +3477,8257,2013-11-09 03:34:40 -0800,774,2327 +3478,1357,2013-11-10 05:15:54 -0800,774,2327 +3479,8299,2013-11-11 02:51:57 -0800,774,2329 +3480,132,2013-11-11 08:00:22 -0800,775,2330 +3481,8765,2013-11-10 19:36:57 -0800,775,2331 +3482,6476,2013-11-08 19:25:54 -0800,776,2335 +3483,8068,2013-11-11 16:43:54 -0800,776,2334 +3484,3167,2013-11-09 11:09:50 -0800,776,2335 +3485,196,2013-11-07 01:04:22 -0800,776,2334 +3486,5335,2013-11-09 19:09:33 -0800,776,2334 +3487,928,2013-11-11 03:39:17 -0800,776,2335 +3488,1820,2013-11-08 23:29:04 -0800,776,2336 +3489,6094,2013-11-09 14:32:58 -0800,776,2335 +3490,3865,2013-11-08 01:32:58 -0800,776,2334 +3491,3493,2013-11-12 03:27:41 -0800,777,2341 +3492,6812,2013-11-07 11:33:11 -0800,777,2339 +3493,9660,2013-11-07 17:16:54 -0800,777,2340 +3494,9556,2013-11-12 23:41:10 -0800,777,2338 +3495,1878,2013-11-10 20:40:42 -0800,777,2338 +3496,2042,2013-11-09 02:12:50 -0800,777,2340 +3497,7129,2013-11-09 20:15:25 -0800,777,2341 +3498,3099,2013-11-11 15:53:23 -0800,777,2338 +3499,6859,2013-11-10 12:38:14 -0800,778,2342 +3500,4450,2013-11-12 14:28:48 -0800,778,2342 +3501,4095,2013-11-13 04:11:48 -0800,778,2342 +3502,8611,2013-11-08 19:59:40 -0800,778,2342 +3503,9841,2013-11-08 04:42:16 -0800,779,2343 +3504,151,2013-11-11 20:12:48 -0800,779,2343 +3505,6169,2013-11-12 19:50:55 -0800,779,2345 +3506,4421,2013-11-06 19:09:03 -0800,780,2347 +3507,1419,2013-11-08 13:35:42 -0800,781,2352 +3508,4219,2013-11-08 23:14:18 -0800,781,2350 +3509,5799,2013-11-11 13:47:50 -0800,781,2350 +3510,1450,2013-11-11 00:29:07 -0800,782,2353 +3511,5411,2013-11-11 08:48:20 -0800,784,2358 +3512,5673,2013-11-08 23:14:21 -0800,784,2358 +3513,5316,2013-11-10 17:51:08 -0800,784,2358 +3514,5926,2013-11-06 08:56:22 -0800,787,2365 +3515,1714,2013-11-11 14:58:39 -0800,787,2369 +3516,4380,2013-11-13 00:21:21 -0800,787,2365 +3517,1220,2013-11-06 13:30:38 -0800,787,2369 +3518,767,2013-11-06 16:37:53 -0800,787,2365 +3519,7826,2013-11-06 23:32:19 -0800,787,2366 +3520,2328,2013-11-08 04:33:07 -0800,789,2374 +3521,7359,2013-11-11 21:40:29 -0800,789,2375 +3522,1661,2013-11-09 07:33:21 -0800,789,2375 +3523,6589,2013-11-10 20:19:50 -0800,789,2374 +3524,8356,2013-11-10 14:26:47 -0800,789,2373 +3525,8483,2013-11-10 04:02:05 -0800,789,2374 +3526,4615,2013-11-12 12:15:42 -0800,789,2373 +3527,1978,2013-11-11 23:35:23 -0800,790,2378 +3528,8884,2013-11-06 22:51:19 -0800,790,2377 +3529,113,2013-11-12 07:51:27 -0800,790,2376 +3530,4414,2013-11-09 15:01:00 -0800,790,2377 +3531,693,2013-11-07 21:32:50 -0800,790,2377 +3532,6495,2013-11-09 17:13:52 -0800,790,2378 +3533,9516,2013-11-12 23:27:03 -0800,790,2376 +3534,5277,2013-11-09 14:40:49 -0800,790,2378 +3535,8861,2013-11-11 18:39:04 -0800,790,2376 +3536,4793,2013-11-08 11:56:54 -0800,791,2383 +3537,341,2013-11-09 07:19:29 -0800,791,2384 +3538,6236,2013-11-10 16:16:29 -0800,791,2384 +3539,3080,2013-11-11 15:48:52 -0800,791,2381 +3540,8089,2013-11-08 09:22:23 -0800,791,2384 +3541,8915,2013-11-11 18:29:02 -0800,791,2384 +3542,9632,2013-11-11 06:43:12 -0800,791,2381 +3543,4621,2013-11-07 00:51:57 -0800,791,2382 +3544,9047,2013-11-11 23:23:25 -0800,791,2381 +3545,7817,2013-11-10 11:49:32 -0800,792,2386 +3546,2665,2013-11-10 17:58:01 -0800,792,2385 +3547,8517,2013-11-06 13:22:18 -0800,792,2386 +3548,6929,2013-11-09 05:33:36 -0800,792,2385 +3549,3795,2013-11-11 02:41:21 -0800,792,2387 +3550,8779,2013-11-10 22:27:04 -0800,792,2386 +3551,1611,2013-11-07 19:06:23 -0800,792,2386 +3552,5126,2013-11-10 02:17:44 -0800,792,2387 +3553,6163,2013-11-06 19:58:36 -0800,792,2386 +3554,3377,2013-11-06 23:03:52 -0800,794,2393 +3555,8081,2013-11-10 02:52:56 -0800,794,2397 +3556,2453,2013-11-10 10:46:01 -0800,794,2397 +3557,12,2013-11-08 11:46:11 -0800,794,2393 +3558,1480,2013-11-07 12:28:10 -0800,794,2393 +3559,4956,2013-11-09 20:50:04 -0800,795,2402 +3560,8751,2013-11-10 23:16:59 -0800,795,2399 +3561,1300,2013-11-10 02:41:38 -0800,796,2405 +3562,9168,2013-11-06 16:22:19 -0800,796,2406 +3563,2582,2013-11-08 13:37:01 -0800,797,2412 +3564,631,2013-11-10 13:33:34 -0800,797,2410 +3565,531,2013-11-06 12:21:36 -0800,797,2408 +3566,9418,2013-11-10 05:25:29 -0800,797,2410 +3567,1882,2013-11-11 23:47:19 -0800,798,2414 +3568,8956,2013-11-06 10:26:28 -0800,798,2416 +3569,6154,2013-11-10 14:06:09 -0800,799,2417 +3570,7570,2013-11-07 12:25:01 -0800,799,2417 +3571,635,2013-11-06 22:23:53 -0800,799,2418 +3572,6550,2013-11-12 22:07:47 -0800,799,2419 +3573,8669,2013-11-08 02:32:18 -0800,799,2417 +3574,1696,2013-11-11 21:25:36 -0800,799,2417 +3575,1579,2013-11-08 02:58:09 -0800,799,2418 +3576,8993,2013-11-10 06:26:10 -0800,800,2421 +3577,645,2013-11-06 19:34:37 -0800,800,2420 +3578,5929,2013-11-06 17:28:37 -0800,800,2420 +3579,875,2013-11-08 15:28:06 -0800,800,2422 +3580,4357,2013-11-06 15:04:20 -0800,800,2422 +3581,8610,2013-11-09 04:22:41 -0800,800,2420 +3582,6233,2013-11-12 18:17:14 -0800,800,2422 +3583,725,2013-11-08 18:01:04 -0800,800,2421 +3584,8730,2013-11-06 17:04:27 -0800,801,2426 +3585,1467,2013-11-11 20:43:44 -0800,801,2426 +3586,7815,2013-11-07 12:22:27 -0800,801,2427 +3587,8450,2013-11-12 02:28:48 -0800,801,2424 +3588,4684,2013-11-09 18:10:38 -0800,801,2426 +3589,3992,2013-11-09 03:13:34 -0800,801,2428 +3590,1486,2013-11-09 11:27:08 -0800,801,2424 +3591,2220,2013-11-07 19:58:50 -0800,803,2431 +3592,4900,2013-11-13 02:02:23 -0800,803,2430 +3593,7334,2013-11-07 06:50:28 -0800,803,2430 +3594,9853,2013-11-07 05:48:20 -0800,804,2432 +3595,3196,2013-11-07 11:28:32 -0800,804,2432 +3596,5112,2013-11-10 23:33:49 -0800,804,2432 +3597,9690,2013-11-09 19:05:50 -0800,804,2432 +3598,2442,2013-11-11 09:26:10 -0800,805,2433 +3599,7615,2013-11-10 03:03:07 -0800,805,2435 +3600,1346,2013-11-06 22:11:57 -0800,805,2434 +3601,1364,2013-11-09 03:05:12 -0800,805,2434 +3602,3461,2013-11-06 08:54:47 -0800,806,2440 +3603,7720,2013-11-11 22:01:16 -0800,806,2436 +3604,3853,2013-11-13 02:22:25 -0800,808,2449 +3605,2566,2013-11-12 09:21:18 -0800,808,2448 +3606,7623,2013-11-12 22:57:55 -0800,808,2449 +3607,7228,2013-11-11 05:30:12 -0800,809,2450 +3608,7915,2013-11-08 01:34:16 -0800,809,2450 +3609,628,2013-11-11 04:24:09 -0800,809,2450 +3610,5332,2013-11-12 23:28:24 -0800,809,2451 +3611,9738,2013-11-11 08:01:39 -0800,809,2454 +3612,595,2013-11-10 05:36:31 -0800,809,2454 +3613,7980,2013-11-06 21:22:25 -0800,809,2453 +3614,6638,2013-11-11 15:11:15 -0800,809,2453 +3615,5447,2013-11-11 16:02:02 -0800,810,2455 +3616,8856,2013-11-12 21:58:44 -0800,810,2456 +3617,950,2013-11-08 22:26:18 -0800,810,2455 +3618,6714,2013-11-07 05:43:56 -0800,810,2455 +3619,4494,2013-11-08 11:03:06 -0800,810,2455 +3620,2212,2013-11-08 05:58:59 -0800,810,2456 +3621,5472,2013-11-10 15:14:24 -0800,810,2456 +3622,4385,2013-11-13 07:36:39 -0800,810,2456 +3623,341,2013-11-10 12:41:53 -0800,810,2455 +3624,4640,2013-11-08 12:08:32 -0800,811,2457 +3625,3951,2013-11-11 09:29:03 -0800,811,2458 +3626,947,2013-11-09 08:01:12 -0800,811,2457 +3627,8450,2013-11-09 05:17:57 -0800,811,2458 +3628,9087,2013-11-07 05:26:03 -0800,811,2459 +3629,827,2013-11-08 19:04:18 -0800,811,2459 +3630,468,2013-11-07 09:12:33 -0800,812,2462 +3631,1712,2013-11-08 16:12:24 -0800,812,2461 +3632,5621,2013-11-11 11:39:37 -0800,812,2460 +3633,690,2013-11-09 17:42:08 -0800,814,2467 +3634,675,2013-11-12 04:30:06 -0800,814,2468 +3635,810,2013-11-07 02:48:52 -0800,814,2467 +3636,5426,2013-11-11 08:24:20 -0800,815,2471 +3637,6784,2013-11-09 19:37:25 -0800,815,2469 +3638,7928,2013-11-09 15:15:02 -0800,815,2472 +3639,2490,2013-11-12 12:28:26 -0800,816,2475 +3640,634,2013-11-09 12:54:37 -0800,816,2474 +3641,9653,2013-11-08 02:50:37 -0800,817,2477 +3642,3586,2013-11-07 20:44:43 -0800,817,2478 +3643,6223,2013-11-08 01:58:39 -0800,817,2476 +3644,9148,2013-11-12 01:04:45 -0800,817,2478 +3645,2942,2013-11-13 03:11:23 -0800,817,2478 +3646,1542,2013-11-07 01:44:13 -0800,817,2478 +3647,569,2013-11-10 14:08:49 -0800,818,2480 +3648,8252,2013-11-13 03:31:52 -0800,818,2481 +3649,3656,2013-11-08 17:04:13 -0800,818,2480 +3650,7053,2013-11-11 03:24:10 -0800,818,2480 +3651,5579,2013-11-10 17:02:19 -0800,818,2479 +3652,4243,2013-11-09 23:20:04 -0800,818,2479 +3653,5322,2013-11-07 19:41:01 -0800,818,2480 +3654,189,2013-11-08 18:20:14 -0800,818,2480 +3655,964,2013-11-09 14:17:26 -0800,818,2479 +3656,3786,2013-11-09 12:55:58 -0800,819,2485 +3657,4480,2013-11-09 01:28:06 -0800,819,2485 +3658,2039,2013-11-06 23:59:54 -0800,819,2484 +3659,3697,2013-11-08 18:21:54 -0800,820,2487 +3660,3213,2013-11-10 04:23:17 -0800,820,2486 +3661,7153,2013-11-09 08:44:05 -0800,820,2490 +3662,7381,2013-11-09 14:18:20 -0800,821,2491 +3663,5627,2013-11-11 03:53:08 -0800,822,2492 +3664,2425,2013-11-11 22:39:01 -0800,822,2492 +3665,9193,2013-11-10 21:19:09 -0800,823,2493 +3666,1230,2013-11-08 05:34:13 -0800,823,2494 +3667,8799,2013-11-13 06:32:34 -0800,824,2495 +3668,3514,2013-11-11 13:51:48 -0800,824,2498 +3669,6491,2013-11-08 13:34:00 -0800,824,2499 +3670,6534,2013-11-07 22:21:25 -0800,824,2497 +3671,5110,2013-11-06 19:24:44 -0800,824,2499 +3672,3547,2013-11-09 10:50:15 -0800,824,2497 +3673,9090,2013-11-08 07:46:20 -0800,824,2496 +3674,3179,2013-11-11 02:47:47 -0800,825,2502 +3675,685,2013-11-07 05:05:22 -0800,825,2503 +3676,5016,2013-11-10 05:34:05 -0800,826,2508 +3677,3915,2013-11-11 05:50:46 -0800,826,2504 +3678,4837,2013-11-07 13:45:09 -0800,826,2505 +3679,7177,2013-11-06 11:39:53 -0800,826,2505 +3680,7927,2013-11-06 11:32:25 -0800,826,2505 +3681,3290,2013-11-07 11:18:04 -0800,826,2508 +3682,860,2013-11-09 16:12:34 -0800,827,2510 +3683,5332,2013-11-07 16:06:12 -0800,829,2513 +3684,1493,2013-11-10 04:57:13 -0800,829,2516 +3685,2628,2013-11-09 04:38:07 -0800,829,2514 +3686,7933,2013-11-06 16:09:24 -0800,829,2513 +3687,8489,2013-11-06 18:31:54 -0800,829,2514 +3688,1884,2013-11-10 17:31:29 -0800,829,2513 +3689,5117,2013-11-09 01:48:57 -0800,829,2514 +3690,4790,2013-11-10 15:27:09 -0800,829,2515 +3691,8138,2013-11-06 11:50:25 -0800,830,2520 +3692,587,2013-11-10 00:19:13 -0800,830,2521 +3693,7359,2013-11-08 23:42:44 -0800,830,2517 +3694,7862,2013-11-08 21:32:23 -0800,830,2521 +3695,6447,2013-11-09 07:47:43 -0800,830,2521 +3696,5022,2013-11-08 05:10:35 -0800,830,2521 +3697,716,2013-11-08 18:54:37 -0800,832,2523 +3698,8030,2013-11-08 13:36:37 -0800,832,2525 +3699,9371,2013-11-09 11:12:18 -0800,832,2527 +3700,5256,2013-11-12 18:11:30 -0800,832,2524 +3701,6440,2013-11-11 01:50:19 -0800,832,2527 +3702,5272,2013-11-12 16:48:43 -0800,832,2526 +3703,2831,2013-11-11 07:41:34 -0800,833,2530 +3704,9875,2013-11-06 19:25:58 -0800,833,2529 +3705,4986,2013-11-10 08:38:51 -0800,833,2530 +3706,6990,2013-11-09 20:12:57 -0800,833,2529 +3707,9517,2013-11-07 05:42:45 -0800,833,2529 +3708,9010,2013-11-11 16:13:23 -0800,833,2530 +3709,4923,2013-11-13 06:52:11 -0800,833,2530 +3710,5193,2013-11-07 09:53:08 -0800,835,2535 +3711,259,2013-11-10 01:33:58 -0800,835,2535 +3712,9073,2013-11-11 07:09:44 -0800,835,2535 +3713,6416,2013-11-10 11:28:19 -0800,835,2535 +3714,5251,2013-11-07 11:59:39 -0800,835,2535 +3715,721,2013-11-12 04:54:20 -0800,836,2538 +3716,129,2013-11-12 08:23:41 -0800,837,2544 +3717,5945,2013-11-11 08:16:02 -0800,837,2542 +3718,777,2013-11-09 20:39:02 -0800,837,2544 +3719,2583,2013-11-09 15:48:07 -0800,837,2542 +3720,4013,2013-11-08 03:43:35 -0800,837,2544 +3721,8785,2013-11-07 07:58:26 -0800,837,2541 +3722,1735,2013-11-11 03:29:37 -0800,838,2546 +3723,9815,2013-11-08 12:35:35 -0800,838,2545 +3724,751,2013-11-12 09:38:36 -0800,838,2546 +3725,3728,2013-11-12 22:59:27 -0800,838,2546 +3726,7375,2013-11-10 04:30:52 -0800,838,2548 +3727,6319,2013-11-12 00:10:01 -0800,838,2546 +3728,6520,2013-11-09 17:07:18 -0800,838,2545 +3729,9133,2013-11-08 08:48:10 -0800,838,2547 +3730,8727,2013-11-12 12:31:16 -0800,839,2550 +3731,350,2013-11-10 20:10:15 -0800,839,2550 +3732,3663,2013-11-09 20:25:33 -0800,839,2550 +3733,4914,2013-11-08 09:10:29 -0800,839,2549 +3734,7928,2013-11-08 01:55:28 -0800,839,2549 +3735,1548,2013-11-07 19:18:49 -0800,840,2552 +3736,3547,2013-11-11 03:45:34 -0800,840,2552 +3737,857,2013-11-13 01:29:47 -0800,841,2555 +3738,3328,2013-11-10 13:30:55 -0800,842,2559 +3739,7881,2013-11-13 05:39:00 -0800,842,2557 +3740,2047,2013-11-07 19:20:02 -0800,843,2560 +3741,7741,2013-11-07 19:26:48 -0800,843,2561 +3742,2830,2013-11-08 08:32:44 -0800,844,2563 +3743,4218,2013-11-12 06:55:25 -0800,844,2565 +3744,2538,2013-11-09 03:27:25 -0800,844,2564 +3745,1926,2013-11-09 15:27:35 -0800,844,2564 +3746,2881,2013-11-07 07:25:43 -0800,844,2563 +3747,1821,2013-11-06 10:46:17 -0800,845,2567 +3748,8897,2013-11-09 21:20:21 -0800,845,2567 +3749,1170,2013-11-08 02:42:32 -0800,845,2566 +3750,449,2013-11-08 22:22:58 -0800,845,2567 +3751,1120,2013-11-07 20:32:02 -0800,846,2569 +3752,4729,2013-11-09 04:40:33 -0800,846,2569 +3753,5965,2013-11-06 17:01:02 -0800,846,2569 +3754,5638,2013-11-08 14:49:25 -0800,846,2569 +3755,6819,2013-11-08 04:11:00 -0800,847,2571 +3756,3590,2013-11-07 23:15:08 -0800,847,2571 +3757,8781,2013-11-12 12:12:59 -0800,847,2570 +3758,8280,2013-11-11 14:00:58 -0800,847,2570 +3759,160,2013-11-07 21:40:58 -0800,847,2571 +3760,3146,2013-11-06 17:06:10 -0800,847,2570 +3761,4774,2013-11-08 10:10:25 -0800,847,2570 +3762,1571,2013-11-11 19:17:54 -0800,848,2575 +3763,3929,2013-11-08 08:05:33 -0800,848,2574 +3764,7695,2013-11-08 08:02:42 -0800,848,2575 +3765,2691,2013-11-07 00:35:14 -0800,848,2572 +3766,9823,2013-11-08 03:18:08 -0800,848,2573 +3767,570,2013-11-11 21:56:53 -0800,848,2573 +3768,4759,2013-11-08 08:00:53 -0800,848,2573 +3769,1748,2013-11-07 09:32:28 -0800,851,2585 +3770,699,2013-11-09 21:00:49 -0800,851,2583 +3771,313,2013-11-12 19:23:52 -0800,851,2584 +3772,8913,2013-11-10 06:49:49 -0800,851,2583 +3773,750,2013-11-11 06:14:52 -0800,852,2586 +3774,1054,2013-11-10 22:01:07 -0800,852,2588 +3775,4371,2013-11-09 05:07:41 -0800,852,2589 +3776,2849,2013-11-10 15:08:58 -0800,852,2586 +3777,692,2013-11-06 09:58:11 -0800,852,2589 +3778,8377,2013-11-08 09:56:53 -0800,853,2590 +3779,9750,2013-11-12 07:13:30 -0800,854,2591 +3780,9450,2013-11-13 00:32:31 -0800,854,2591 +3781,8554,2013-11-09 16:28:00 -0800,854,2591 +3782,8031,2013-11-12 04:20:33 -0800,854,2591 +3783,6695,2013-11-08 01:21:41 -0800,855,2593 +3784,3817,2013-11-12 05:44:44 -0800,855,2592 +3785,5680,2013-11-06 17:15:22 -0800,855,2593 +3786,1413,2013-11-11 20:43:43 -0800,855,2592 +3787,4079,2013-11-13 04:02:58 -0800,855,2593 +3788,8162,2013-11-09 13:39:41 -0800,855,2592 +3789,3110,2013-11-06 10:56:52 -0800,855,2593 +3790,3571,2013-11-06 13:59:08 -0800,855,2592 +3791,85,2013-11-12 18:25:21 -0800,855,2593 +3792,8213,2013-11-08 05:14:55 -0800,856,2596 +3793,8095,2013-11-08 04:23:12 -0800,856,2595 +3794,3329,2013-11-12 22:21:23 -0800,856,2595 +3795,274,2013-11-11 03:17:40 -0800,857,2599 +3796,3447,2013-11-12 10:36:37 -0800,857,2599 +3797,3759,2013-11-12 11:57:37 -0800,857,2600 +3798,819,2013-11-10 21:27:45 -0800,857,2598 +3799,70,2013-11-11 22:44:38 -0800,858,2602 +3800,2189,2013-11-09 17:04:11 -0800,859,2607 +3801,93,2013-11-11 04:24:34 -0800,859,2609 +3802,9350,2013-11-09 20:26:12 -0800,859,2608 +3803,8530,2013-11-08 09:18:46 -0800,859,2606 +3804,9834,2013-11-08 13:37:21 -0800,860,2612 +3805,4336,2013-11-06 18:55:24 -0800,861,2616 +3806,1987,2013-11-10 09:51:39 -0800,861,2618 +3807,443,2013-11-09 09:52:20 -0800,861,2615 +3808,6695,2013-11-11 23:29:13 -0800,861,2617 +3809,5790,2013-11-08 21:35:27 -0800,861,2616 +3810,5643,2013-11-10 03:22:44 -0800,861,2616 +3811,3596,2013-11-13 01:14:48 -0800,861,2617 +3812,5730,2013-11-08 07:30:46 -0800,861,2618 +3813,4574,2013-11-13 05:27:20 -0800,862,2623 +3814,7997,2013-11-13 08:12:41 -0800,862,2624 +3815,6097,2013-11-10 16:07:38 -0800,862,2620 +3816,7640,2013-11-08 13:47:45 -0800,862,2623 +3817,6547,2013-11-11 11:03:18 -0800,862,2622 +3818,3489,2013-11-10 20:23:26 -0800,862,2624 +3819,5195,2013-11-12 02:43:28 -0800,863,2625 +3820,6509,2013-11-10 09:12:53 -0800,863,2627 +3821,4793,2013-11-10 08:51:08 -0800,863,2627 +3822,4356,2013-11-11 02:03:35 -0800,863,2626 +3823,5250,2013-11-09 23:39:50 -0800,863,2627 +3824,6681,2013-11-09 18:54:11 -0800,863,2627 +3825,4644,2013-11-09 07:25:53 -0800,863,2625 +3826,5590,2013-11-09 19:55:01 -0800,863,2627 +3827,7872,2013-11-10 03:11:26 -0800,864,2628 +3828,5960,2013-11-07 19:31:31 -0800,864,2629 +3829,8530,2013-11-13 02:06:36 -0800,864,2629 +3830,3950,2013-11-12 00:39:44 -0800,864,2630 +3831,594,2013-11-10 03:44:22 -0800,864,2629 +3832,3583,2013-11-08 05:18:13 -0800,864,2628 +3833,3665,2013-11-11 11:10:43 -0800,864,2628 +3834,6133,2013-11-08 00:29:09 -0800,865,2632 +3835,2798,2013-11-07 21:52:49 -0800,865,2634 +3836,795,2013-11-07 18:16:38 -0800,865,2633 +3837,749,2013-11-07 20:51:28 -0800,865,2633 +3838,4699,2013-11-06 18:24:35 -0800,866,2638 +3839,9348,2013-11-09 15:45:09 -0800,866,2637 +3840,7053,2013-11-09 04:47:33 -0800,866,2637 +3841,3042,2013-11-08 08:38:18 -0800,866,2637 +3842,4496,2013-11-13 06:24:54 -0800,867,2641 +3843,9714,2013-11-10 03:06:20 -0800,867,2639 +3844,5482,2013-11-08 06:18:11 -0800,867,2640 +3845,8494,2013-11-06 17:32:58 -0800,867,2640 +3846,9241,2013-11-09 10:46:19 -0800,867,2639 +3847,6909,2013-11-09 00:25:12 -0800,867,2640 +3848,8321,2013-11-11 06:03:22 -0800,867,2640 +3849,9486,2013-11-11 18:46:00 -0800,867,2640 +3850,3661,2013-11-10 19:08:12 -0800,867,2641 +3851,8432,2013-11-11 10:49:36 -0800,868,2642 +3852,832,2013-11-12 14:02:04 -0800,868,2642 +3853,1286,2013-11-07 07:42:11 -0800,868,2642 +3854,628,2013-11-12 09:33:15 -0800,868,2642 +3855,2089,2013-11-08 20:34:58 -0800,868,2642 +3856,3970,2013-11-10 03:23:00 -0800,868,2642 +3857,8210,2013-11-09 18:33:42 -0800,868,2642 +3858,1628,2013-11-13 03:07:49 -0800,868,2642 +3859,199,2013-11-07 00:25:17 -0800,869,2644 +3860,1964,2013-11-13 01:35:01 -0800,869,2643 +3861,7862,2013-11-12 11:58:22 -0800,869,2644 +3862,7998,2013-11-11 17:28:24 -0800,870,2645 +3863,8382,2013-11-11 10:29:00 -0800,871,2650 +3864,5285,2013-11-07 00:31:33 -0800,871,2647 +3865,3295,2013-11-12 01:19:34 -0800,871,2650 +3866,6593,2013-11-12 12:24:45 -0800,871,2649 +3867,2279,2013-11-11 04:52:07 -0800,871,2650 +3868,7981,2013-11-07 07:57:02 -0800,872,2652 +3869,8544,2013-11-12 14:35:29 -0800,873,2655 +3870,9012,2013-11-07 18:55:13 -0800,873,2655 +3871,4691,2013-11-10 08:43:28 -0800,873,2655 +3872,4820,2013-11-08 20:20:00 -0800,874,2656 +3873,8892,2013-11-11 09:03:24 -0800,874,2656 +3874,8065,2013-11-10 03:17:25 -0800,874,2656 +3875,7755,2013-11-12 14:54:58 -0800,874,2656 +3876,6391,2013-11-08 03:48:55 -0800,875,2658 +3877,789,2013-11-11 19:00:14 -0800,875,2658 +3878,9689,2013-11-09 16:45:35 -0800,875,2658 +3879,2037,2013-11-11 15:13:11 -0800,875,2658 +3880,2885,2013-11-10 13:51:22 -0800,876,2660 +3881,5097,2013-11-07 16:43:50 -0800,876,2660 +3882,5526,2013-11-06 12:59:39 -0800,876,2660 +3883,6529,2013-11-10 08:40:13 -0800,876,2660 +3884,4426,2013-11-06 13:33:45 -0800,876,2659 +3885,8274,2013-11-10 17:39:52 -0800,877,2661 +3886,530,2013-11-12 03:10:30 -0800,878,2667 +3887,2827,2013-11-08 10:08:25 -0800,878,2666 +3888,1048,2013-11-07 04:58:12 -0800,878,2667 +3889,2390,2013-11-08 22:48:09 -0800,878,2666 +3890,4688,2013-11-07 14:24:31 -0800,879,2669 +3891,2649,2013-11-08 22:42:01 -0800,879,2669 +3892,7820,2013-11-08 17:35:22 -0800,880,2675 +3893,8295,2013-11-10 20:50:38 -0800,880,2672 +3894,3615,2013-11-08 14:58:44 -0800,880,2675 +3895,6120,2013-11-12 03:21:33 -0800,880,2673 +3896,7537,2013-11-09 03:36:09 -0800,880,2675 +3897,1255,2013-11-11 18:45:12 -0800,881,2676 +3898,3072,2013-11-13 08:26:46 -0800,881,2676 +3899,5930,2013-11-06 12:14:02 -0800,881,2676 +3900,3978,2013-11-07 14:27:43 -0800,881,2676 +3901,572,2013-11-10 20:04:39 -0800,881,2676 +3902,7339,2013-11-08 14:43:47 -0800,882,2677 +3903,146,2013-11-12 21:46:15 -0800,882,2680 +3904,9834,2013-11-09 08:03:56 -0800,883,2681 +3905,6595,2013-11-07 01:31:57 -0800,883,2682 +3906,434,2013-11-12 18:32:45 -0800,883,2685 +3907,2710,2013-11-08 10:53:50 -0800,883,2682 +3908,5138,2013-11-08 17:28:44 -0800,883,2681 +3909,6177,2013-11-07 10:49:08 -0800,884,2687 +3910,4975,2013-11-07 20:57:50 -0800,884,2690 +3911,4900,2013-11-08 19:03:52 -0800,884,2686 +3912,8078,2013-11-10 08:20:51 -0800,884,2687 +3913,8432,2013-11-13 03:57:09 -0800,884,2690 +3914,9885,2013-11-12 02:20:07 -0800,884,2688 +3915,2658,2013-11-08 17:08:18 -0800,885,2691 +3916,3836,2013-11-08 23:14:06 -0800,885,2691 +3917,3290,2013-11-09 14:33:28 -0800,885,2691 +3918,347,2013-11-10 09:37:00 -0800,885,2691 +3919,1767,2013-11-11 07:01:28 -0800,885,2691 +3920,883,2013-11-13 04:52:02 -0800,887,2693 +3921,33,2013-11-11 09:20:59 -0800,887,2693 +3922,3631,2013-11-07 02:29:28 -0800,887,2693 +3923,2459,2013-11-10 21:37:07 -0800,887,2693 +3924,2621,2013-11-09 09:02:25 -0800,887,2693 +3925,924,2013-11-06 13:17:02 -0800,888,2694 +3926,5336,2013-11-10 04:40:43 -0800,888,2694 +3927,4672,2013-11-07 22:05:38 -0800,888,2694 +3928,6367,2013-11-13 04:57:03 -0800,888,2694 +3929,3519,2013-11-09 12:11:19 -0800,888,2694 +3930,2191,2013-11-12 08:04:56 -0800,888,2694 +3931,8556,2013-11-12 03:59:35 -0800,888,2694 +3932,8393,2013-11-12 21:42:44 -0800,888,2694 +3933,4090,2013-11-08 14:48:46 -0800,888,2694 +3934,5700,2013-11-10 14:50:21 -0800,889,2695 +3935,5758,2013-11-08 04:24:41 -0800,889,2697 +3936,514,2013-11-10 03:48:58 -0800,889,2697 +3937,3654,2013-11-09 11:49:42 -0800,889,2697 +3938,8859,2013-11-10 18:44:57 -0800,889,2696 +3939,1655,2013-11-12 08:07:58 -0800,889,2696 +3940,4970,2013-11-06 08:57:24 -0800,889,2697 +3941,5786,2013-11-12 20:34:20 -0800,890,2701 +3942,9231,2013-11-13 04:13:14 -0800,890,2698 +3943,4572,2013-11-09 16:19:29 -0800,890,2698 +3944,1984,2013-11-10 07:28:10 -0800,890,2699 +3945,3128,2013-11-11 01:03:30 -0800,890,2698 +3946,2441,2013-11-12 23:22:46 -0800,890,2700 +3947,6531,2013-11-08 10:47:33 -0800,890,2699 +3948,96,2013-11-13 05:19:41 -0800,890,2700 +3949,2916,2013-11-07 15:19:54 -0800,890,2700 +3950,1562,2013-11-10 20:06:50 -0800,891,2703 +3951,7492,2013-11-09 09:52:14 -0800,892,2705 +3952,624,2013-11-09 12:58:56 -0800,892,2704 +3953,1686,2013-11-12 06:53:51 -0800,892,2704 +3954,2631,2013-11-09 00:23:09 -0800,892,2704 +3955,3038,2013-11-10 13:29:47 -0800,892,2705 +3956,4875,2013-11-11 12:43:12 -0800,892,2705 +3957,5388,2013-11-07 23:07:40 -0800,892,2705 +3958,6755,2013-11-10 03:17:28 -0800,893,2707 +3959,4741,2013-11-10 01:55:27 -0800,893,2707 +3960,2849,2013-11-11 22:41:51 -0800,893,2707 +3961,4299,2013-11-07 17:05:10 -0800,893,2707 +3962,3735,2013-11-11 04:59:09 -0800,893,2707 +3963,2360,2013-11-06 17:41:26 -0800,893,2707 +3964,1350,2013-11-08 02:34:17 -0800,893,2707 +3965,4999,2013-11-08 00:00:52 -0800,893,2707 +3966,9880,2013-11-07 06:21:32 -0800,893,2707 +3967,4266,2013-11-12 09:24:48 -0800,894,2711 +3968,4486,2013-11-12 08:07:53 -0800,894,2708 +3969,9465,2013-11-06 23:30:00 -0800,894,2710 +3970,2890,2013-11-12 11:41:54 -0800,895,2713 +3971,4898,2013-11-08 17:01:03 -0800,895,2715 +3972,1618,2013-11-13 07:02:34 -0800,895,2715 +3973,9295,2013-11-09 07:28:29 -0800,895,2714 +3974,9054,2013-11-11 19:46:27 -0800,895,2714 +3975,3711,2013-11-11 12:00:16 -0800,895,2714 +3976,523,2013-11-09 07:48:32 -0800,896,2717 +3977,7930,2013-11-11 13:51:44 -0800,896,2718 +3978,16,2013-11-10 13:15:42 -0800,896,2719 +3979,5914,2013-11-07 02:14:41 -0800,896,2719 +3980,2151,2013-11-07 13:53:25 -0800,896,2718 +3981,773,2013-11-12 09:38:01 -0800,896,2716 +3982,2733,2013-11-08 04:11:54 -0800,896,2717 +3983,9432,2013-11-06 16:14:00 -0800,897,2721 +3984,787,2013-11-08 23:02:31 -0800,897,2721 +3985,7454,2013-11-10 12:56:57 -0800,899,2728 +3986,686,2013-11-10 19:59:57 -0800,899,2726 +3987,5723,2013-11-12 23:03:04 -0800,899,2726 +3988,1392,2013-11-09 20:55:52 -0800,899,2725 +3989,3810,2013-11-07 03:20:33 -0800,899,2728 +3990,2470,2013-11-08 02:06:43 -0800,899,2724 +3991,3358,2013-11-09 10:59:21 -0800,899,2728 +3992,4610,2013-11-07 06:20:01 -0800,899,2728 +3993,2314,2013-11-11 16:40:18 -0800,900,2729 +3994,8476,2013-11-13 04:34:19 -0800,900,2729 +3995,2990,2013-11-07 12:36:46 -0800,900,2729 +3996,4155,2013-11-10 17:13:54 -0800,900,2729 +3997,530,2013-11-08 11:26:08 -0800,900,2730 +3998,1532,2013-11-10 13:30:23 -0800,901,2732 +3999,7770,2013-11-09 09:05:41 -0800,901,2732 +4000,7739,2013-11-06 15:35:04 -0800,901,2732 +4001,8720,2013-11-10 21:46:18 -0800,901,2733 +4002,3845,2013-11-12 07:28:31 -0800,901,2732 +4003,4295,2013-11-11 18:00:15 -0800,901,2732 +4004,6881,2013-11-09 06:43:34 -0800,901,2732 +4005,9433,2013-11-11 21:31:25 -0800,901,2732 +4006,6830,2013-11-08 06:13:28 -0800,902,2734 +4007,3040,2013-11-10 00:21:38 -0800,902,2734 +4008,6028,2013-11-08 15:20:37 -0800,902,2734 +4009,9689,2013-11-10 08:40:55 -0800,902,2734 +4010,5533,2013-11-09 09:31:07 -0800,902,2734 +4011,8792,2013-11-07 13:38:13 -0800,902,2734 +4012,1233,2013-11-08 19:25:05 -0800,902,2734 +4013,2464,2013-11-10 13:48:20 -0800,903,2735 +4014,146,2013-11-12 14:37:24 -0800,903,2737 +4015,4891,2013-11-10 09:12:50 -0800,903,2736 +4016,1838,2013-11-08 23:41:18 -0800,903,2736 +4017,9255,2013-11-10 05:54:09 -0800,904,2739 +4018,6277,2013-11-07 01:04:56 -0800,904,2741 +4019,7451,2013-11-10 23:58:17 -0800,904,2741 +4020,8917,2013-11-09 04:45:11 -0800,905,2744 +4021,5680,2013-11-10 17:31:49 -0800,905,2743 +4022,3883,2013-11-11 15:20:38 -0800,905,2743 +4023,5548,2013-11-07 15:16:15 -0800,905,2744 +4024,8689,2013-11-08 04:43:00 -0800,906,2747 +4025,5154,2013-11-09 04:59:57 -0800,906,2749 +4026,7441,2013-11-08 20:59:45 -0800,906,2748 +4027,2539,2013-11-08 16:43:09 -0800,906,2747 +4028,2160,2013-11-09 21:46:57 -0800,906,2749 +4029,2321,2013-11-11 23:05:09 -0800,906,2749 +4030,1693,2013-11-11 17:13:30 -0800,906,2748 +4031,8990,2013-11-07 17:45:22 -0800,907,2751 +4032,4779,2013-11-12 19:14:17 -0800,907,2750 +4033,8579,2013-11-08 01:22:46 -0800,907,2750 +4034,2333,2013-11-06 08:43:15 -0800,907,2752 +4035,9447,2013-11-11 19:14:51 -0800,907,2751 +4036,1782,2013-11-09 10:15:26 -0800,907,2752 +4037,7019,2013-11-10 16:54:36 -0800,907,2750 +4038,8480,2013-11-12 23:14:23 -0800,908,2753 +4039,1595,2013-11-09 10:12:30 -0800,908,2757 +4040,448,2013-11-11 21:56:01 -0800,908,2755 +4041,6634,2013-11-07 14:02:58 -0800,908,2756 +4042,2241,2013-11-09 02:42:53 -0800,908,2755 +4043,3960,2013-11-10 08:22:20 -0800,909,2760 +4044,4411,2013-11-06 14:02:03 -0800,909,2759 +4045,2250,2013-11-06 22:14:44 -0800,910,2764 +4046,9247,2013-11-11 08:13:18 -0800,910,2763 +4047,7870,2013-11-08 05:42:18 -0800,910,2763 +4048,6461,2013-11-10 03:22:15 -0800,910,2763 +4049,7513,2013-11-10 02:42:22 -0800,911,2768 +4050,1271,2013-11-06 14:49:20 -0800,911,2768 +4051,8119,2013-11-11 16:16:39 -0800,911,2767 +4052,6000,2013-11-10 21:35:48 -0800,912,2769 +4053,8730,2013-11-09 22:47:52 -0800,912,2771 +4054,8981,2013-11-12 02:49:45 -0800,913,2772 +4055,6742,2013-11-12 04:19:23 -0800,913,2773 +4056,4870,2013-11-06 09:39:33 -0800,913,2773 +4057,747,2013-11-12 10:15:18 -0800,913,2773 +4058,833,2013-11-07 17:02:29 -0800,913,2773 +4059,1590,2013-11-12 06:55:58 -0800,913,2773 +4060,5317,2013-11-06 15:13:50 -0800,913,2773 +4061,5985,2013-11-07 09:33:31 -0800,913,2772 +4062,9650,2013-11-12 12:30:47 -0800,914,2776 +4063,2041,2013-11-11 03:30:07 -0800,914,2776 +4064,6429,2013-11-10 18:33:21 -0800,914,2776 +4065,4625,2013-11-08 06:49:44 -0800,914,2776 +4066,6248,2013-11-11 16:04:07 -0800,914,2776 +4067,7616,2013-11-11 14:43:01 -0800,914,2776 +4068,9620,2013-11-10 02:46:57 -0800,914,2776 +4069,2575,2013-11-09 00:42:28 -0800,915,2782 +4070,7878,2013-11-13 01:23:18 -0800,915,2781 +4071,4512,2013-11-07 20:56:50 -0800,915,2779 +4072,461,2013-11-09 14:25:47 -0800,916,2785 +4073,9536,2013-11-11 16:16:44 -0800,916,2788 +4074,7679,2013-11-08 06:08:03 -0800,916,2784 +4075,7666,2013-11-08 08:35:26 -0800,916,2785 +4076,7915,2013-11-10 11:53:33 -0800,916,2787 +4077,9633,2013-11-11 13:52:34 -0800,916,2787 +4078,7458,2013-11-09 02:31:12 -0800,917,2789 +4079,5082,2013-11-09 00:20:15 -0800,917,2790 +4080,629,2013-11-08 06:51:57 -0800,917,2790 +4081,7944,2013-11-12 03:46:57 -0800,918,2792 +4082,6064,2013-11-12 02:26:15 -0800,919,2798 +4083,2742,2013-11-09 04:00:12 -0800,919,2797 +4084,5619,2013-11-06 13:52:11 -0800,919,2796 +4085,8869,2013-11-07 20:38:42 -0800,920,2799 +4086,7218,2013-11-07 07:51:10 -0800,920,2799 +4087,3561,2013-11-10 04:45:49 -0800,920,2799 +4088,8622,2013-11-08 08:53:56 -0800,920,2799 +4089,4061,2013-11-06 20:29:10 -0800,922,2809 +4090,5719,2013-11-12 09:13:44 -0800,922,2809 +4091,4845,2013-11-07 05:53:33 -0800,922,2805 +4092,5159,2013-11-08 10:30:56 -0800,922,2805 +4093,1916,2013-11-09 04:25:58 -0800,923,2810 +4094,8423,2013-11-07 08:06:00 -0800,923,2810 +4095,3913,2013-11-07 08:14:23 -0800,923,2810 +4096,129,2013-11-09 23:52:21 -0800,923,2810 +4097,7769,2013-11-10 13:38:41 -0800,923,2811 +4098,3468,2013-11-06 14:15:49 -0800,923,2810 +4099,6184,2013-11-11 08:20:51 -0800,923,2810 +4100,6570,2013-11-12 15:57:30 -0800,926,2819 +4101,4839,2013-11-11 07:44:16 -0800,926,2821 +4102,7578,2013-11-08 10:56:11 -0800,926,2820 +4103,7352,2013-11-11 10:22:35 -0800,926,2819 +4104,2280,2013-11-07 06:50:17 -0800,926,2821 +4105,6296,2013-11-12 21:11:52 -0800,926,2821 +4106,4700,2013-11-13 06:57:57 -0800,926,2821 +4107,2528,2013-11-06 15:32:28 -0800,926,2822 +4108,8931,2013-11-12 11:50:12 -0800,927,2827 +4109,1779,2013-11-11 03:24:19 -0800,927,2827 +4110,193,2013-11-11 12:04:59 -0800,928,2828 +4111,1051,2013-11-13 04:14:56 -0800,928,2828 +4112,6762,2013-11-13 04:33:21 -0800,928,2828 +4113,1798,2013-11-08 22:46:41 -0800,928,2828 +4114,5542,2013-11-09 09:38:29 -0800,928,2828 +4115,3511,2013-11-09 08:10:42 -0800,928,2828 +4116,2927,2013-11-08 17:23:29 -0800,928,2828 +4117,5482,2013-11-07 21:33:37 -0800,928,2828 +4118,8164,2013-11-08 03:16:46 -0800,928,2828 +4119,9766,2013-11-06 08:51:15 -0800,929,2829 +4120,2949,2013-11-13 00:05:31 -0800,929,2829 +4121,8126,2013-11-06 22:00:56 -0800,929,2829 +4122,1051,2013-11-13 07:12:25 -0800,929,2829 +4123,7245,2013-11-11 11:47:47 -0800,929,2829 +4124,463,2013-11-06 19:15:57 -0800,930,2830 +4125,5939,2013-11-09 04:45:33 -0800,930,2830 +4126,7683,2013-11-07 05:00:55 -0800,930,2831 +4127,951,2013-11-09 01:17:27 -0800,930,2832 +4128,1269,2013-11-06 12:01:44 -0800,930,2832 +4129,7031,2013-11-10 02:39:53 -0800,930,2832 +4130,6279,2013-11-10 10:26:06 -0800,930,2831 +4131,9585,2013-11-10 23:17:33 -0800,932,2837 +4132,6387,2013-11-09 09:04:48 -0800,933,2839 +4133,5377,2013-11-12 10:33:18 -0800,933,2840 +4134,7356,2013-11-10 22:36:01 -0800,933,2839 +4135,2178,2013-11-10 14:57:28 -0800,933,2839 +4136,4378,2013-11-07 11:42:26 -0800,934,2841 +4137,1927,2013-11-10 00:56:34 -0800,934,2842 +4138,6970,2013-11-10 16:58:42 -0800,934,2842 +4139,1564,2013-11-08 11:24:16 -0800,934,2841 +4140,9480,2013-11-09 14:49:38 -0800,934,2842 +4141,1271,2013-11-06 13:08:18 -0800,934,2842 +4142,6450,2013-11-08 20:22:28 -0800,934,2843 +4143,5817,2013-11-08 12:16:04 -0800,935,2844 +4144,164,2013-11-08 19:52:43 -0800,935,2844 +4145,1441,2013-11-11 08:07:42 -0800,935,2844 +4146,4791,2013-11-08 19:58:09 -0800,935,2844 +4147,1233,2013-11-12 06:16:46 -0800,935,2844 +4148,9020,2013-11-10 02:39:53 -0800,935,2844 +4149,3582,2013-11-07 10:36:11 -0800,935,2844 +4150,7759,2013-11-07 11:43:28 -0800,936,2847 +4151,5133,2013-11-12 10:36:57 -0800,937,2849 +4152,2695,2013-11-11 21:17:14 -0800,937,2849 +4153,3390,2013-11-11 14:17:34 -0800,937,2850 +4154,3777,2013-11-07 05:42:49 -0800,937,2850 +4155,5189,2013-11-07 03:19:45 -0800,937,2850 +4156,6712,2013-11-10 12:44:03 -0800,938,2852 +4157,2948,2013-11-06 09:06:37 -0800,940,2858 +4158,9438,2013-11-09 09:34:23 -0800,940,2855 +4159,2747,2013-11-10 00:10:29 -0800,940,2857 +4160,5829,2013-11-10 19:30:04 -0800,941,2861 +4161,9000,2013-11-08 19:11:20 -0800,941,2861 +4162,8770,2013-11-06 16:02:52 -0800,941,2859 +4163,5365,2013-11-06 22:31:05 -0800,943,2867 +4164,2888,2013-11-12 17:39:37 -0800,943,2866 +4165,9289,2013-11-09 11:18:21 -0800,943,2866 +4166,7368,2013-11-08 17:52:48 -0800,943,2868 +4167,9617,2013-11-10 08:25:55 -0800,943,2866 +4168,9083,2013-11-12 13:17:56 -0800,943,2868 +4169,3569,2013-11-08 06:00:57 -0800,943,2868 +4170,1448,2013-11-06 22:19:27 -0800,944,2869 +4171,660,2013-11-11 14:34:32 -0800,944,2869 +4172,9227,2013-11-08 19:13:57 -0800,945,2871 +4173,3821,2013-11-07 07:20:33 -0800,945,2871 +4174,622,2013-11-06 10:57:55 -0800,945,2871 +4175,1199,2013-11-10 18:18:44 -0800,945,2872 +4176,9690,2013-11-08 13:32:37 -0800,945,2871 +4177,718,2013-11-12 19:55:01 -0800,945,2871 +4178,3714,2013-11-07 18:41:07 -0800,945,2872 +4179,8653,2013-11-11 14:05:09 -0800,947,2878 +4180,5567,2013-11-08 03:00:42 -0800,947,2877 +4181,5829,2013-11-12 13:54:09 -0800,947,2878 +4182,2166,2013-11-09 19:48:01 -0800,949,2884 +4183,3835,2013-11-09 05:54:30 -0800,949,2884 +4184,6055,2013-11-11 16:59:18 -0800,949,2884 +4185,7520,2013-11-09 18:11:19 -0800,949,2884 +4186,5931,2013-11-10 11:32:44 -0800,949,2884 +4187,5360,2013-11-11 07:38:59 -0800,949,2884 +4188,8243,2013-11-06 13:08:02 -0800,950,2886 +4189,3013,2013-11-12 06:09:19 -0800,950,2885 +4190,4999,2013-11-08 04:59:55 -0800,950,2886 +4191,4325,2013-11-09 00:35:25 -0800,950,2885 +4192,6151,2013-11-11 14:46:22 -0800,950,2886 +4193,2321,2013-11-10 00:21:32 -0800,951,2890 +4194,3763,2013-11-08 16:11:07 -0800,951,2887 +4195,9351,2013-11-12 09:15:17 -0800,951,2887 +4196,1853,2013-11-08 17:27:22 -0800,952,2891 +4197,2749,2013-11-09 18:02:21 -0800,952,2891 +4198,550,2013-11-11 18:54:29 -0800,952,2891 +4199,8862,2013-11-11 00:19:49 -0800,952,2891 +4200,9276,2013-11-11 00:26:27 -0800,954,2895 +4201,7981,2013-11-11 15:07:21 -0800,954,2895 +4202,1129,2013-11-06 16:53:59 -0800,954,2895 +4203,9622,2013-11-12 00:57:46 -0800,954,2895 +4204,6213,2013-11-06 17:19:52 -0800,954,2895 +4205,8418,2013-11-07 10:02:13 -0800,955,2899 +4206,3245,2013-11-11 16:11:54 -0800,955,2899 +4207,3776,2013-11-06 10:11:35 -0800,955,2897 +4208,7997,2013-11-10 01:50:36 -0800,955,2899 +4209,4353,2013-11-09 14:28:32 -0800,955,2897 +4210,1353,2013-11-13 04:35:26 -0800,955,2897 +4211,9588,2013-11-10 10:43:46 -0800,955,2896 +4212,3894,2013-11-10 16:10:38 -0800,955,2898 +4213,2366,2013-11-12 23:18:22 -0800,955,2897 +4214,2239,2013-11-08 06:02:59 -0800,956,2901 +4215,6864,2013-11-10 16:32:27 -0800,956,2901 +4216,316,2013-11-07 22:04:59 -0800,957,2903 +4217,3618,2013-11-07 23:57:09 -0800,957,2904 +4218,4755,2013-11-10 02:18:19 -0800,957,2903 +4219,6498,2013-11-13 01:25:51 -0800,958,2905 +4220,3529,2013-11-08 00:19:32 -0800,959,2906 +4221,3474,2013-11-08 21:57:55 -0800,960,2912 +4222,4862,2013-11-10 08:05:44 -0800,960,2909 +4223,8886,2013-11-10 23:04:49 -0800,960,2909 +4224,2817,2013-11-06 09:44:00 -0800,960,2909 +4225,5380,2013-11-08 11:13:07 -0800,960,2910 +4226,3010,2013-11-09 19:45:45 -0800,960,2910 +4227,852,2013-11-13 04:19:32 -0800,961,2914 +4228,2120,2013-11-10 16:42:28 -0800,961,2913 +4229,8199,2013-11-06 09:17:32 -0800,961,2913 +4230,1757,2013-11-11 05:59:32 -0800,961,2914 +4231,1097,2013-11-11 15:17:41 -0800,961,2914 +4232,8528,2013-11-07 05:37:12 -0800,962,2915 +4233,1340,2013-11-08 00:04:23 -0800,962,2915 +4234,8288,2013-11-07 13:47:39 -0800,962,2915 +4235,6488,2013-11-12 09:50:22 -0800,962,2915 +4236,4019,2013-11-06 18:38:54 -0800,962,2915 +4237,5786,2013-11-09 12:39:54 -0800,962,2915 +4238,6062,2013-11-07 19:32:08 -0800,962,2916 +4239,140,2013-11-11 14:09:41 -0800,962,2915 +4240,573,2013-11-07 10:11:45 -0800,962,2915 +4241,6013,2013-11-13 00:44:36 -0800,963,2919 +4242,798,2013-11-07 09:36:25 -0800,963,2917 +4243,9418,2013-11-11 20:58:05 -0800,963,2919 +4244,6098,2013-11-07 20:25:14 -0800,963,2919 +4245,6865,2013-11-09 20:25:10 -0800,963,2919 +4246,7281,2013-11-11 09:53:53 -0800,963,2919 +4247,4941,2013-11-11 23:07:40 -0800,963,2919 +4248,1410,2013-11-12 07:56:41 -0800,964,2923 +4249,2152,2013-11-11 04:03:06 -0800,964,2920 +4250,9771,2013-11-11 19:40:36 -0800,964,2923 +4251,3052,2013-11-08 09:50:07 -0800,964,2920 +4252,3734,2013-11-08 21:20:25 -0800,964,2921 +4253,2980,2013-11-09 12:18:59 -0800,964,2922 +4254,217,2013-11-07 06:21:10 -0800,964,2921 +4255,985,2013-11-10 23:08:18 -0800,964,2923 +4256,9054,2013-11-07 16:38:27 -0800,964,2922 +4257,1533,2013-11-10 02:57:18 -0800,965,2927 +4258,3528,2013-11-07 05:25:12 -0800,965,2927 +4259,7248,2013-11-11 04:41:04 -0800,965,2924 +4260,5551,2013-11-08 01:05:33 -0800,965,2926 +4261,6423,2013-11-08 00:20:50 -0800,965,2927 +4262,3138,2013-11-10 05:59:08 -0800,965,2924 +4263,540,2013-11-07 23:49:24 -0800,965,2925 +4264,9538,2013-11-07 14:31:16 -0800,966,2930 +4265,8344,2013-11-09 08:49:32 -0800,966,2930 +4266,3540,2013-11-10 19:57:35 -0800,966,2930 +4267,413,2013-11-08 00:44:18 -0800,966,2929 +4268,1420,2013-11-09 02:39:28 -0800,966,2930 +4269,7392,2013-11-06 09:39:56 -0800,966,2928 +4270,9093,2013-11-07 19:41:16 -0800,966,2930 +4271,8928,2013-11-11 06:20:45 -0800,967,2934 +4272,1030,2013-11-13 00:29:31 -0800,967,2934 +4273,940,2013-11-11 18:59:17 -0800,967,2933 +4274,8440,2013-11-07 15:42:19 -0800,967,2933 +4275,83,2013-11-09 03:28:33 -0800,967,2932 +4276,3749,2013-11-11 04:33:44 -0800,968,2935 +4277,2183,2013-11-10 14:17:49 -0800,968,2936 +4278,627,2013-11-12 16:53:19 -0800,968,2936 +4279,1959,2013-11-10 09:39:49 -0800,968,2936 +4280,5265,2013-11-10 12:08:02 -0800,968,2935 +4281,3081,2013-11-10 20:59:40 -0800,968,2936 +4282,7986,2013-11-13 04:53:37 -0800,968,2936 +4283,2611,2013-11-11 21:21:01 -0800,968,2936 +4284,6462,2013-11-10 01:33:22 -0800,969,2937 +4285,3310,2013-11-10 03:53:05 -0800,969,2938 +4286,6172,2013-11-12 18:42:07 -0800,970,2940 +4287,1136,2013-11-10 18:16:33 -0800,970,2939 +4288,1141,2013-11-06 22:30:40 -0800,970,2939 +4289,632,2013-11-10 07:21:51 -0800,971,2943 +4290,9787,2013-11-06 15:30:22 -0800,971,2943 +4291,8040,2013-11-08 20:08:08 -0800,971,2942 +4292,3447,2013-11-06 22:00:56 -0800,971,2942 +4293,6623,2013-11-11 21:38:51 -0800,971,2946 +4294,7022,2013-11-11 13:33:51 -0800,971,2946 +4295,2984,2013-11-11 03:19:30 -0800,971,2942 +4296,8914,2013-11-10 23:36:26 -0800,972,2947 +4297,7428,2013-11-12 06:55:22 -0800,972,2947 +4298,3251,2013-11-10 14:43:10 -0800,972,2947 +4299,3757,2013-11-13 01:40:53 -0800,972,2947 +4300,8880,2013-11-06 09:02:22 -0800,972,2947 +4301,810,2013-11-11 08:15:04 -0800,972,2947 +4302,4764,2013-11-08 09:14:19 -0800,972,2947 +4303,2682,2013-11-08 20:24:35 -0800,972,2947 +4304,2918,2013-11-11 05:02:10 -0800,972,2947 +4305,4027,2013-11-08 09:57:22 -0800,973,2950 +4306,8717,2013-11-06 22:39:56 -0800,973,2948 +4307,5543,2013-11-09 13:22:58 -0800,973,2950 +4308,919,2013-11-09 05:22:44 -0800,973,2948 +4309,2757,2013-11-11 21:46:22 -0800,975,2958 +4310,2381,2013-11-10 11:06:27 -0800,975,2959 +4311,7851,2013-11-11 18:30:23 -0800,975,2959 +4312,1150,2013-11-09 09:21:27 -0800,976,2960 +4313,370,2013-11-07 06:44:16 -0800,976,2961 +4314,4525,2013-11-08 23:47:39 -0800,976,2961 +4315,9486,2013-11-10 14:55:50 -0800,976,2961 +4316,654,2013-11-08 04:09:50 -0800,977,2964 +4317,7220,2013-11-09 07:24:53 -0800,977,2964 +4318,9561,2013-11-09 08:11:10 -0800,978,2970 +4319,9743,2013-11-09 13:14:06 -0800,978,2969 +4320,4977,2013-11-06 14:39:11 -0800,979,2972 +4321,1327,2013-11-10 14:40:22 -0800,979,2971 +4322,4870,2013-11-09 14:00:23 -0800,979,2973 +4323,6568,2013-11-10 02:08:24 -0800,979,2974 +4324,8880,2013-11-10 07:00:43 -0800,980,2977 +4325,4011,2013-11-09 18:32:01 -0800,980,2976 +4326,178,2013-11-07 03:31:27 -0800,980,2976 +4327,5929,2013-11-09 07:46:21 -0800,980,2977 +4328,2210,2013-11-12 07:37:18 -0800,980,2977 +4329,9190,2013-11-11 20:05:32 -0800,980,2976 +4330,2590,2013-11-11 21:01:37 -0800,980,2976 +4331,1460,2013-11-12 17:05:07 -0800,980,2976 +4332,5786,2013-11-12 13:20:51 -0800,980,2976 +4333,932,2013-11-10 19:15:01 -0800,981,2978 +4334,140,2013-11-06 14:00:06 -0800,981,2978 +4335,7598,2013-11-09 22:20:47 -0800,981,2978 +4336,1211,2013-11-11 11:13:37 -0800,981,2980 +4337,948,2013-11-11 04:04:27 -0800,981,2978 +4338,9670,2013-11-07 19:40:23 -0800,983,2985 +4339,2964,2013-11-07 02:31:27 -0800,983,2983 +4340,2310,2013-11-07 11:09:03 -0800,983,2982 +4341,1399,2013-11-12 06:25:35 -0800,983,2982 +4342,4951,2013-11-12 20:37:54 -0800,983,2984 +4343,5077,2013-11-12 23:00:57 -0800,983,2983 +4344,3924,2013-11-09 05:26:16 -0800,983,2985 +4345,1710,2013-11-09 17:58:42 -0800,983,2982 +4346,4755,2013-11-11 18:09:14 -0800,983,2984 +4347,6940,2013-11-12 09:51:51 -0800,984,2988 +4348,4069,2013-11-07 21:45:10 -0800,984,2990 +4349,2334,2013-11-06 21:36:18 -0800,984,2987 +4350,9100,2013-11-13 02:46:31 -0800,985,2992 +4351,5762,2013-11-08 09:40:31 -0800,985,2991 +4352,9896,2013-11-10 10:31:01 -0800,986,2994 +4353,2026,2013-11-07 05:54:34 -0800,986,2993 +4354,8785,2013-11-12 13:34:00 -0800,986,2994 +4355,4780,2013-11-12 16:26:52 -0800,986,2993 +4356,4526,2013-11-07 10:15:22 -0800,987,2997 +4357,5813,2013-11-11 08:02:40 -0800,987,2996 +4358,6409,2013-11-08 00:45:04 -0800,987,2996 +4359,363,2013-11-13 00:32:33 -0800,987,2996 +4360,8390,2013-11-07 05:29:12 -0800,987,2998 +4361,56,2013-11-08 10:31:43 -0800,987,2996 +4362,192,2013-11-09 21:08:03 -0800,987,2998 +4363,8370,2013-11-06 11:25:30 -0800,987,2998 +4364,2972,2013-11-10 05:22:46 -0800,987,2997 +4365,7129,2013-11-12 20:31:40 -0800,988,3001 +4366,1587,2013-11-07 15:42:24 -0800,988,3001 +4367,5320,2013-11-13 08:30:36 -0800,988,3001 +4368,9111,2013-11-07 08:13:03 -0800,988,3001 +4369,655,2013-11-07 01:50:52 -0800,988,3000 +4370,7484,2013-11-07 10:12:09 -0800,990,3009 +4371,775,2013-11-06 19:52:07 -0800,990,3008 +4372,5131,2013-11-08 20:57:26 -0800,990,3008 +4373,6277,2013-11-10 05:40:43 -0800,990,3007 +4374,6668,2013-11-09 06:55:27 -0800,990,3009 +4375,3584,2013-11-10 02:32:47 -0800,990,3007 +4376,3968,2013-11-13 00:54:47 -0800,991,3013 +4377,278,2013-11-08 05:48:24 -0800,991,3014 +4378,8116,2013-11-10 02:12:19 -0800,993,3019 +4379,8866,2013-11-12 22:42:56 -0800,993,3022 +4380,1880,2013-11-07 11:48:47 -0800,993,3019 +4381,7253,2013-11-12 18:05:11 -0800,993,3020 +4382,9881,2013-11-10 14:23:07 -0800,993,3022 +4383,4164,2013-11-10 08:26:06 -0800,993,3019 +4384,5566,2013-11-08 14:24:43 -0800,993,3019 +4385,7675,2013-11-06 12:18:00 -0800,993,3020 +4386,6380,2013-11-11 23:08:33 -0800,994,3026 +4387,8420,2013-11-11 08:08:31 -0800,994,3025 +4388,2580,2013-11-11 19:51:33 -0800,994,3023 +4389,7119,2013-11-12 00:04:14 -0800,994,3024 +4390,6269,2013-11-09 11:18:42 -0800,994,3026 +4391,630,2013-11-08 12:39:19 -0800,995,3028 +4392,8458,2013-11-06 11:48:39 -0800,995,3028 +4393,2714,2013-11-12 17:24:42 -0800,995,3029 +4394,3979,2013-11-07 10:52:40 -0800,995,3028 +4395,8624,2013-11-11 20:45:29 -0800,996,3031 +4396,9734,2013-11-07 16:22:41 -0800,996,3032 +4397,9436,2013-11-07 01:19:41 -0800,996,3031 +4398,956,2013-11-12 08:01:12 -0800,996,3032 +4399,3919,2013-11-12 05:41:48 -0800,997,3033 +4400,9328,2013-11-08 12:11:16 -0800,997,3033 +4401,772,2013-11-06 13:23:53 -0800,997,3033 +4402,5153,2013-11-10 00:35:36 -0800,997,3033 +4403,8269,2013-11-08 02:49:44 -0800,997,3035 +4404,9640,2013-11-12 06:57:34 -0800,998,3042 +4405,6988,2013-11-10 05:07:54 -0800,998,3041 +4406,2934,2013-11-13 01:51:10 -0800,998,3042 +4407,3579,2013-11-08 21:32:12 -0800,998,3042 +4408,7342,2013-11-08 19:47:12 -0800,998,3041 +4409,7856,2013-11-09 13:25:35 -0800,998,3038 +4410,3993,2013-11-06 20:52:26 -0800,998,3040 +4411,4054,2013-11-08 08:06:04 -0800,998,3042 +4412,3532,2013-11-06 11:13:20 -0800,998,3042 +4413,1880,2013-11-07 10:18:11 -0800,999,3044 +4414,5023,2013-11-11 02:00:04 -0800,999,3046 +4415,1230,2013-11-07 07:10:29 -0800,999,3045 +4416,4298,2013-11-08 20:44:08 -0800,999,3044 +4417,2965,2013-11-12 04:51:01 -0800,999,3045 +4418,6609,2013-11-11 13:03:18 -0800,999,3045 +4419,353,2013-11-08 05:04:22 -0800,999,3046 +4420,3840,2013-11-12 11:36:43 -0800,1001,3050 +4421,6242,2013-11-09 14:56:59 -0800,1001,3051 +4422,6182,2013-11-10 11:29:35 -0800,1001,3050 +4423,254,2013-11-11 12:23:00 -0800,1001,3051 +4424,148,2013-11-11 23:03:18 -0800,1001,3049 +4425,5915,2013-11-08 07:16:47 -0800,1001,3050 +4426,3795,2013-11-07 07:08:13 -0800,1001,3051 +4427,2398,2013-11-10 15:47:36 -0800,1002,3052 +4428,8753,2013-11-07 23:52:10 -0800,1002,3052 +4429,7439,2013-11-10 01:45:29 -0800,1002,3053 +4430,2480,2013-11-06 17:00:31 -0800,1002,3052 +4431,3654,2013-11-07 14:54:31 -0800,1003,3055 +4432,4646,2013-11-09 03:12:54 -0800,1003,3055 +4433,5489,2013-11-11 22:04:07 -0800,1003,3055 +4434,32,2013-11-12 23:14:53 -0800,1003,3055 +4435,8212,2013-11-07 20:15:53 -0800,1003,3055 +4436,2921,2013-11-07 12:00:35 -0800,1004,3057 +4437,7429,2013-11-10 02:28:14 -0800,1004,3057 +4438,3364,2013-11-09 14:36:35 -0800,1005,3060 +4439,6679,2013-11-07 18:20:49 -0800,1005,3060 +4440,7778,2013-11-12 22:17:47 -0800,1005,3060 +4441,3265,2013-11-11 04:08:45 -0800,1005,3059 +4442,9121,2013-11-11 00:44:27 -0800,1005,3060 +4443,8332,2013-11-13 05:59:00 -0800,1005,3059 +4444,7914,2013-11-11 10:27:46 -0800,1005,3060 +4445,4282,2013-11-08 18:00:24 -0800,1005,3060 +4446,1941,2013-11-08 11:14:05 -0800,1005,3059 +4447,3383,2013-11-11 07:39:16 -0800,1007,3065 +4448,8550,2013-11-10 21:48:13 -0800,1007,3064 +4449,7320,2013-11-13 00:21:08 -0800,1007,3065 +4450,9231,2013-11-06 21:45:01 -0800,1008,3066 +4451,2850,2013-11-12 16:03:18 -0800,1008,3066 +4452,4125,2013-11-06 13:46:38 -0800,1008,3066 +4453,1246,2013-11-09 00:21:48 -0800,1008,3067 +4454,6979,2013-11-11 17:09:07 -0800,1009,3068 +4455,9046,2013-11-08 01:51:26 -0800,1009,3069 +4456,9660,2013-11-07 21:17:24 -0800,1009,3069 +4457,3030,2013-11-11 22:58:59 -0800,1009,3070 +4458,8468,2013-11-11 01:41:21 -0800,1010,3071 +4459,6454,2013-11-11 18:19:59 -0800,1010,3074 +4460,1635,2013-11-08 00:37:02 -0800,1010,3072 +4461,530,2013-11-09 20:46:05 -0800,1010,3071 +4462,3070,2013-11-12 08:19:46 -0800,1010,3073 +4463,7520,2013-11-12 19:43:37 -0800,1010,3072 +4464,6096,2013-11-10 16:25:56 -0800,1010,3072 +4465,2598,2013-11-08 01:20:28 -0800,1011,3079 +4466,1568,2013-11-12 14:38:33 -0800,1011,3077 +4467,184,2013-11-06 23:13:20 -0800,1011,3077 +4468,7076,2013-11-07 23:45:58 -0800,1012,3080 +4469,9129,2013-11-10 08:44:13 -0800,1012,3081 +4470,6643,2013-11-10 13:25:31 -0800,1013,3086 +4471,6981,2013-11-09 13:52:35 -0800,1013,3087 +4472,9117,2013-11-07 04:16:27 -0800,1013,3088 +4473,8881,2013-11-07 09:21:25 -0800,1013,3087 +4474,1016,2013-11-09 16:29:09 -0800,1013,3088 +4475,8558,2013-11-07 02:53:36 -0800,1013,3087 +4476,3127,2013-11-09 17:46:15 -0800,1013,3088 +4477,6877,2013-11-08 09:16:13 -0800,1014,3089 +4478,2066,2013-11-08 21:00:10 -0800,1014,3089 +4479,6877,2013-11-08 04:40:34 -0800,1014,3089 +4480,1884,2013-11-10 08:51:27 -0800,1014,3090 +4481,5389,2013-11-08 16:30:44 -0800,1015,3094 +4482,9314,2013-11-06 15:31:51 -0800,1015,3091 +4483,664,2013-11-11 07:49:17 -0800,1015,3095 +4484,6322,2013-11-11 22:10:01 -0800,1015,3094 +4485,737,2013-11-09 07:06:53 -0800,1016,3096 +4486,9814,2013-11-06 23:21:30 -0800,1016,3096 +4487,4330,2013-11-11 00:17:52 -0800,1016,3096 +4488,1098,2013-11-06 14:58:34 -0800,1016,3096 +4489,5243,2013-11-11 11:30:16 -0800,1016,3096 +4490,1914,2013-11-08 07:31:09 -0800,1016,3096 +4491,8528,2013-11-08 12:02:40 -0800,1016,3096 +4492,9316,2013-11-07 00:22:34 -0800,1016,3096 +4493,5172,2013-11-07 05:41:15 -0800,1017,3097 +4494,3338,2013-11-06 15:54:21 -0800,1017,3097 +4495,6841,2013-11-06 13:18:01 -0800,1017,3097 +4496,7791,2013-11-10 20:21:08 -0800,1017,3097 +4497,2982,2013-11-09 16:49:35 -0800,1018,3098 +4498,5471,2013-11-11 01:49:33 -0800,1018,3098 +4499,4319,2013-11-09 22:40:46 -0800,1018,3098 +4500,2367,2013-11-06 23:06:08 -0800,1018,3098 +4501,9027,2013-11-12 21:15:41 -0800,1018,3098 +4502,3143,2013-11-09 04:53:28 -0800,1019,3100 +4503,8711,2013-11-08 02:58:55 -0800,1019,3100 +4504,6116,2013-11-12 19:19:24 -0800,1020,3104 +4505,1729,2013-11-07 01:09:32 -0800,1020,3105 +4506,6573,2013-11-08 01:34:11 -0800,1020,3104 +4507,7473,2013-11-06 15:46:51 -0800,1020,3105 +4508,4525,2013-11-12 08:35:04 -0800,1020,3107 +4509,77,2013-11-11 14:33:54 -0800,1021,3108 +4510,1220,2013-11-10 15:53:57 -0800,1021,3108 +4511,958,2013-11-12 03:32:59 -0800,1021,3108 +4512,3269,2013-11-06 18:40:15 -0800,1021,3108 +4513,2465,2013-11-06 14:50:38 -0800,1021,3108 +4514,8020,2013-11-09 11:35:06 -0800,1022,3110 +4515,2096,2013-11-08 12:47:11 -0800,1022,3110 +4516,3913,2013-11-06 19:59:16 -0800,1022,3109 +4517,6200,2013-11-09 16:16:08 -0800,1022,3109 +4518,4430,2013-11-10 14:31:45 -0800,1022,3110 +4519,2762,2013-11-09 15:16:54 -0800,1022,3110 +4520,4561,2013-11-09 18:10:43 -0800,1022,3110 +4521,5031,2013-11-11 23:30:03 -0800,1022,3109 +4522,9456,2013-11-13 00:59:36 -0800,1022,3109 +4523,8945,2013-11-12 09:12:12 -0800,1024,3115 +4524,5970,2013-11-10 22:36:05 -0800,1024,3117 +4525,3279,2013-11-11 11:32:13 -0800,1024,3117 +4526,85,2013-11-12 00:05:47 -0800,1024,3115 +4527,1655,2013-11-07 21:41:46 -0800,1024,3116 +4528,5565,2013-11-10 20:06:11 -0800,1024,3116 +4529,4959,2013-11-09 18:15:59 -0800,1024,3114 +4530,9566,2013-11-09 22:18:36 -0800,1025,3120 +4531,9045,2013-11-11 19:41:06 -0800,1025,3122 +4532,24,2013-11-13 01:15:33 -0800,1025,3121 +4533,3614,2013-11-08 13:06:02 -0800,1025,3119 +4534,4936,2013-11-10 09:44:07 -0800,1025,3121 +4535,9640,2013-11-10 17:52:18 -0800,1025,3120 +4536,636,2013-11-10 13:06:35 -0800,1025,3121 +4537,9387,2013-11-07 12:20:18 -0800,1025,3118 +4538,7643,2013-11-09 01:37:49 -0800,1026,3124 +4539,2869,2013-11-08 01:42:06 -0800,1027,3128 +4540,7355,2013-11-07 10:27:48 -0800,1027,3129 +4541,1016,2013-11-08 02:47:05 -0800,1027,3127 +4542,1552,2013-11-06 17:08:30 -0800,1027,3127 +4543,7340,2013-11-11 16:31:50 -0800,1027,3128 +4544,8292,2013-11-08 19:28:05 -0800,1027,3128 +4545,873,2013-11-09 22:16:25 -0800,1027,3129 +4546,694,2013-11-09 23:16:29 -0800,1028,3130 +4547,6988,2013-11-10 08:27:29 -0800,1028,3130 +4548,9886,2013-11-12 20:29:24 -0800,1029,3133 +4549,9680,2013-11-12 22:34:13 -0800,1029,3134 +4550,3567,2013-11-10 06:41:28 -0800,1029,3133 +4551,2882,2013-11-10 08:14:35 -0800,1029,3134 +4552,2895,2013-11-11 13:19:05 -0800,1029,3133 +4553,6826,2013-11-08 19:28:18 -0800,1029,3134 +4554,1439,2013-11-10 05:49:45 -0800,1030,3138 +4555,5894,2013-11-07 08:17:34 -0800,1030,3137 +4556,8573,2013-11-07 12:29:46 -0800,1030,3137 +4557,3336,2013-11-09 19:18:29 -0800,1030,3136 +4558,6196,2013-11-12 15:58:40 -0800,1030,3137 +4559,3813,2013-11-08 11:55:28 -0800,1030,3139 +4560,7920,2013-11-11 11:45:16 -0800,1030,3136 +4561,1946,2013-11-09 16:35:08 -0800,1030,3137 +4562,2913,2013-11-11 08:26:45 -0800,1030,3136 +4563,4020,2013-11-06 22:29:28 -0800,1031,3140 +4564,2929,2013-11-07 18:02:00 -0800,1031,3140 +4565,8833,2013-11-07 10:18:07 -0800,1032,3142 +4566,9442,2013-11-09 10:23:06 -0800,1032,3142 +4567,1064,2013-11-12 07:44:13 -0800,1033,3144 +4568,3458,2013-11-10 06:58:34 -0800,1033,3144 +4569,8490,2013-11-11 00:56:20 -0800,1033,3145 +4570,3361,2013-11-07 03:31:08 -0800,1033,3145 +4571,3329,2013-11-08 13:21:35 -0800,1034,3146 +4572,5579,2013-11-11 19:53:24 -0800,1034,3146 +4573,1870,2013-11-11 02:17:46 -0800,1034,3146 +4574,4855,2013-11-09 21:42:58 -0800,1034,3146 +4575,6253,2013-11-07 20:26:11 -0800,1034,3146 +4576,1832,2013-11-07 05:17:39 -0800,1034,3146 +4577,6765,2013-11-09 20:06:11 -0800,1035,3147 +4578,1788,2013-11-10 07:00:45 -0800,1035,3147 +4579,6270,2013-11-08 04:49:31 -0800,1036,3149 +4580,2851,2013-11-10 00:13:58 -0800,1037,3150 +4581,6184,2013-11-08 14:34:11 -0800,1037,3150 +4582,19,2013-11-09 16:43:57 -0800,1037,3150 +4583,5693,2013-11-12 02:17:43 -0800,1037,3151 +4584,2929,2013-11-10 17:30:41 -0800,1037,3152 +4585,4058,2013-11-09 09:46:00 -0800,1037,3152 +4586,328,2013-11-12 07:44:56 -0800,1038,3156 +4587,2073,2013-11-12 22:54:14 -0800,1038,3153 +4588,80,2013-11-10 11:20:43 -0800,1038,3156 +4589,5021,2013-11-09 05:43:34 -0800,1038,3153 +4590,4380,2013-11-13 00:32:12 -0800,1039,3158 +4591,1811,2013-11-09 01:13:43 -0800,1039,3158 +4592,662,2013-11-08 22:06:39 -0800,1039,3158 +4593,8367,2013-11-09 03:22:41 -0800,1040,3160 +4594,1298,2013-11-08 15:43:09 -0800,1040,3160 +4595,3060,2013-11-12 09:22:41 -0800,1040,3160 +4596,73,2013-11-12 18:12:22 -0800,1040,3160 +4597,6025,2013-11-09 00:46:10 -0800,1040,3159 +4598,4561,2013-11-13 04:01:51 -0800,1040,3159 +4599,851,2013-11-13 00:07:57 -0800,1041,3163 +4600,1100,2013-11-11 09:37:29 -0800,1041,3161 +4601,2026,2013-11-12 15:24:45 -0800,1041,3162 +4602,1181,2013-11-11 03:35:17 -0800,1041,3161 +4603,3000,2013-11-08 10:59:07 -0800,1041,3161 +4604,250,2013-11-09 16:32:42 -0800,1041,3163 +4605,9734,2013-11-09 23:01:33 -0800,1041,3163 +4606,7513,2013-11-10 12:22:54 -0800,1042,3166 +4607,3669,2013-11-06 17:54:33 -0800,1043,3168 +4608,8912,2013-11-08 22:12:29 -0800,1043,3167 +4609,1562,2013-11-08 14:27:53 -0800,1043,3168 +4610,252,2013-11-06 20:38:47 -0800,1043,3168 +4611,4565,2013-11-13 04:24:25 -0800,1043,3167 +4612,1395,2013-11-07 00:48:20 -0800,1044,3169 +4613,3354,2013-11-13 05:16:36 -0800,1044,3169 +4614,2761,2013-11-08 12:18:12 -0800,1044,3169 +4615,2618,2013-11-13 05:42:44 -0800,1044,3169 +4616,567,2013-11-10 04:57:25 -0800,1044,3169 +4617,7995,2013-11-13 00:39:24 -0800,1044,3169 +4618,4998,2013-11-07 09:40:32 -0800,1044,3169 +4619,3254,2013-11-10 03:51:18 -0800,1045,3172 +4620,643,2013-11-11 19:32:45 -0800,1045,3171 +4621,6683,2013-11-07 08:21:50 -0800,1045,3172 +4622,8377,2013-11-09 04:13:00 -0800,1045,3170 +4623,2687,2013-11-07 15:50:46 -0800,1045,3172 +4624,4147,2013-11-08 09:38:00 -0800,1045,3172 +4625,1352,2013-11-07 17:38:21 -0800,1045,3171 +4626,8260,2013-11-12 09:40:15 -0800,1047,3177 +4627,3542,2013-11-11 03:03:56 -0800,1047,3181 +4628,2570,2013-11-07 20:44:20 -0800,1047,3177 +4629,8646,2013-11-08 17:44:56 -0800,1047,3181 +4630,3990,2013-11-10 09:01:48 -0800,1047,3179 +4631,6831,2013-11-07 22:56:53 -0800,1047,3177 +4632,2260,2013-11-10 20:17:59 -0800,1047,3177 +4633,4960,2013-11-10 09:09:05 -0800,1048,3182 +4634,4424,2013-11-07 11:10:51 -0800,1048,3182 +4635,9311,2013-11-08 22:34:19 -0800,1048,3182 +4636,1029,2013-11-13 05:15:57 -0800,1048,3182 +4637,6956,2013-11-10 04:35:33 -0800,1050,3187 +4638,276,2013-11-10 23:45:28 -0800,1050,3188 +4639,1023,2013-11-08 03:54:12 -0800,1051,3190 +4640,4014,2013-11-06 17:21:07 -0800,1051,3190 +4641,8310,2013-11-12 05:39:05 -0800,1051,3190 +4642,5931,2013-11-07 06:56:50 -0800,1051,3190 +4643,6368,2013-11-12 10:15:18 -0800,1051,3190 +4644,1660,2013-11-06 16:25:34 -0800,1051,3190 +4645,1963,2013-11-06 21:32:55 -0800,1052,3192 +4646,1823,2013-11-07 15:41:45 -0800,1052,3194 +4647,4588,2013-11-09 21:50:55 -0800,1052,3192 +4648,6558,2013-11-10 11:01:34 -0800,1052,3194 +4649,2335,2013-11-10 09:46:40 -0800,1052,3192 +4650,8429,2013-11-07 04:17:48 -0800,1052,3194 +4651,556,2013-11-11 18:45:54 -0800,1052,3191 +4652,7372,2013-11-09 21:30:34 -0800,1053,3198 +4653,245,2013-11-08 11:04:57 -0800,1053,3197 +4654,570,2013-11-09 14:12:28 -0800,1053,3199 +4655,7565,2013-11-09 11:58:24 -0800,1053,3199 +4656,4712,2013-11-07 04:19:42 -0800,1053,3199 +4657,6929,2013-11-08 07:37:13 -0800,1054,3202 +4658,6538,2013-11-10 03:51:35 -0800,1054,3202 +4659,6861,2013-11-09 10:13:06 -0800,1054,3202 +4660,2295,2013-11-08 05:37:18 -0800,1055,3205 +4661,286,2013-11-06 23:05:19 -0800,1055,3203 +4662,3740,2013-11-10 00:47:34 -0800,1056,3208 +4663,7166,2013-11-06 10:07:39 -0800,1056,3209 +4664,3369,2013-11-08 21:34:26 -0800,1056,3209 +4665,1889,2013-11-10 11:05:06 -0800,1056,3211 +4666,1900,2013-11-10 16:16:40 -0800,1056,3208 +4667,1752,2013-11-12 01:52:16 -0800,1056,3211 +4668,7230,2013-11-10 19:46:35 -0800,1056,3208 +4669,7658,2013-11-08 00:40:51 -0800,1056,3209 +4670,4748,2013-11-11 13:37:14 -0800,1056,3209 +4671,9800,2013-11-12 05:38:16 -0800,1057,3212 +4672,7283,2013-11-08 01:53:21 -0800,1057,3212 +4673,3636,2013-11-09 01:53:22 -0800,1057,3212 +4674,2344,2013-11-08 03:56:46 -0800,1057,3213 +4675,2118,2013-11-08 21:33:14 -0800,1057,3213 +4676,4585,2013-11-06 12:05:10 -0800,1057,3212 +4677,9442,2013-11-09 20:15:22 -0800,1057,3213 +4678,8178,2013-11-10 15:55:40 -0800,1057,3213 +4679,9515,2013-11-09 18:42:18 -0800,1057,3212 +4680,6294,2013-11-12 18:48:38 -0800,1058,3214 +4681,2587,2013-11-12 05:49:46 -0800,1058,3216 +4682,5925,2013-11-13 06:13:11 -0800,1058,3214 +4683,120,2013-11-07 19:57:02 -0800,1058,3215 +4684,9679,2013-11-08 08:37:30 -0800,1058,3215 +4685,7862,2013-11-08 08:55:42 -0800,1059,3219 +4686,4448,2013-11-09 07:46:31 -0800,1059,3220 +4687,5638,2013-11-10 23:05:25 -0800,1059,3219 +4688,7413,2013-11-10 16:31:00 -0800,1059,3221 +4689,2930,2013-11-08 17:24:17 -0800,1059,3220 +4690,674,2013-11-11 20:31:54 -0800,1059,3219 +4691,1334,2013-11-08 04:05:01 -0800,1059,3222 +4692,2583,2013-11-07 02:21:08 -0800,1059,3221 +4693,3795,2013-11-08 14:23:05 -0800,1059,3222 +4694,4372,2013-11-08 21:09:52 -0800,1060,3223 +4695,3983,2013-11-11 02:04:55 -0800,1061,3228 +4696,4200,2013-11-07 05:08:52 -0800,1062,3230 +4697,9169,2013-11-10 23:01:50 -0800,1062,3230 +4698,6043,2013-11-07 20:26:32 -0800,1062,3231 +4699,4880,2013-11-10 16:54:16 -0800,1063,3232 +4700,174,2013-11-10 05:16:47 -0800,1064,3235 +4701,476,2013-11-12 16:44:28 -0800,1064,3234 +4702,1696,2013-11-08 20:06:33 -0800,1064,3235 +4703,3488,2013-11-06 19:21:55 -0800,1064,3233 +4704,2500,2013-11-08 21:13:00 -0800,1064,3234 +4705,6509,2013-11-10 04:03:53 -0800,1064,3234 +4706,1925,2013-11-10 20:50:01 -0800,1064,3233 +4707,1060,2013-11-07 05:23:16 -0800,1064,3233 +4708,7377,2013-11-08 01:26:05 -0800,1065,3236 +4709,9640,2013-11-08 10:13:56 -0800,1065,3237 +4710,3946,2013-11-07 23:08:20 -0800,1065,3236 +4711,7327,2013-11-06 11:06:26 -0800,1065,3237 +4712,3013,2013-11-09 01:49:49 -0800,1066,3239 +4713,8290,2013-11-07 20:10:23 -0800,1066,3239 +4714,1422,2013-11-11 21:20:12 -0800,1067,3241 +4715,5500,2013-11-11 05:11:28 -0800,1068,3244 +4716,7438,2013-11-07 04:51:04 -0800,1069,3246 +4717,2873,2013-11-07 04:23:53 -0800,1069,3246 +4718,1670,2013-11-06 18:40:30 -0800,1069,3246 +4719,9170,2013-11-10 09:42:01 -0800,1070,3253 +4720,9036,2013-11-13 04:03:52 -0800,1070,3252 +4721,40,2013-11-09 21:56:58 -0800,1070,3250 +4722,6245,2013-11-08 09:45:51 -0800,1070,3253 +4723,3996,2013-11-07 10:42:35 -0800,1070,3250 +4724,3165,2013-11-07 01:19:18 -0800,1070,3253 +4725,843,2013-11-07 09:11:15 -0800,1070,3250 +4726,8087,2013-11-08 17:31:06 -0800,1070,3253 +4727,7098,2013-11-10 15:20:51 -0800,1071,3254 +4728,5984,2013-11-08 01:33:23 -0800,1071,3254 +4729,4384,2013-11-09 00:43:05 -0800,1073,3257 +4730,6344,2013-11-10 14:04:18 -0800,1073,3257 +4731,13,2013-11-08 20:41:06 -0800,1073,3258 +4732,4575,2013-11-09 11:43:37 -0800,1073,3258 +4733,2660,2013-11-07 00:37:45 -0800,1073,3258 +4734,2855,2013-11-08 02:38:20 -0800,1073,3257 +4735,3130,2013-11-12 09:51:46 -0800,1073,3258 +4736,7323,2013-11-07 05:15:32 -0800,1073,3258 +4737,5739,2013-11-07 06:06:50 -0800,1074,3259 +4738,5554,2013-11-12 08:32:43 -0800,1074,3259 +4739,3290,2013-11-12 09:11:44 -0800,1075,3264 +4740,8920,2013-11-09 18:07:19 -0800,1075,3264 +4741,8976,2013-11-11 14:00:37 -0800,1075,3265 +4742,1228,2013-11-06 23:00:39 -0800,1075,3264 +4743,4816,2013-11-06 15:32:14 -0800,1076,3267 +4744,3297,2013-11-07 01:51:12 -0800,1076,3267 +4745,8755,2013-11-13 02:26:08 -0800,1076,3266 +4746,176,2013-11-12 04:07:32 -0800,1076,3267 +4747,7751,2013-11-09 23:33:47 -0800,1076,3266 +4748,8727,2013-11-09 02:51:25 -0800,1076,3266 +4749,7475,2013-11-13 05:57:29 -0800,1076,3267 +4750,413,2013-11-06 11:35:29 -0800,1077,3268 +4751,8413,2013-11-07 08:00:05 -0800,1077,3268 +4752,2516,2013-11-12 09:11:04 -0800,1077,3268 +4753,4841,2013-11-09 08:44:55 -0800,1077,3268 +4754,5095,2013-11-11 08:41:20 -0800,1077,3268 +4755,4490,2013-11-07 05:51:22 -0800,1078,3269 +4756,3622,2013-11-06 13:32:41 -0800,1078,3269 +4757,8233,2013-11-09 16:37:40 -0800,1078,3269 +4758,961,2013-11-12 11:13:51 -0800,1078,3269 +4759,7698,2013-11-07 11:27:47 -0800,1079,3273 +4760,137,2013-11-09 10:16:12 -0800,1080,3276 +4761,5339,2013-11-10 17:04:30 -0800,1081,3282 +4762,819,2013-11-09 02:08:47 -0800,1081,3282 +4763,2311,2013-11-07 21:02:32 -0800,1082,3285 +4764,7095,2013-11-06 19:54:02 -0800,1082,3283 +4765,4465,2013-11-07 12:54:56 -0800,1082,3286 +4766,3321,2013-11-10 14:15:01 -0800,1082,3286 +4767,2450,2013-11-09 12:10:59 -0800,1082,3285 +4768,2088,2013-11-09 19:08:08 -0800,1082,3285 +4769,1122,2013-11-09 20:02:49 -0800,1083,3290 +4770,6809,2013-11-09 07:33:41 -0800,1083,3287 +4771,3790,2013-11-10 02:47:50 -0800,1083,3289 +4772,6149,2013-11-08 00:34:35 -0800,1083,3289 +4773,6787,2013-11-13 07:15:50 -0800,1083,3288 +4774,6654,2013-11-11 07:41:49 -0800,1083,3289 +4775,5890,2013-11-07 16:09:40 -0800,1084,3292 +4776,2126,2013-11-12 03:40:19 -0800,1084,3292 +4777,7809,2013-11-09 17:36:52 -0800,1084,3292 +4778,338,2013-11-11 20:34:04 -0800,1084,3291 +4779,1748,2013-11-11 15:43:27 -0800,1084,3291 +4780,4489,2013-11-12 13:39:47 -0800,1084,3292 +4781,3076,2013-11-08 23:11:31 -0800,1085,3295 +4782,1531,2013-11-12 11:16:10 -0800,1085,3295 +4783,2646,2013-11-07 20:23:12 -0800,1085,3293 +4784,2133,2013-11-08 17:53:50 -0800,1085,3295 +4785,2782,2013-11-11 15:01:39 -0800,1085,3293 +4786,7464,2013-11-11 17:48:20 -0800,1085,3293 +4787,6790,2013-11-09 23:08:42 -0800,1085,3293 +4788,1433,2013-11-13 01:24:09 -0800,1085,3296 +4789,7786,2013-11-11 09:43:49 -0800,1085,3296 +4790,4072,2013-11-12 19:41:56 -0800,1087,3302 +4791,5471,2013-11-09 19:15:45 -0800,1087,3302 +4792,5227,2013-11-08 14:21:18 -0800,1087,3302 +4793,8312,2013-11-11 04:29:55 -0800,1087,3302 +4794,3517,2013-11-09 17:40:35 -0800,1087,3302 +4795,1494,2013-11-06 14:58:51 -0800,1087,3302 +4796,5558,2013-11-09 06:29:56 -0800,1087,3302 +4797,4075,2013-11-08 05:37:43 -0800,1087,3302 +4798,9099,2013-11-11 23:32:09 -0800,1087,3302 +4799,7145,2013-11-10 02:57:04 -0800,1088,3305 +4800,569,2013-11-10 22:22:29 -0800,1088,3304 +4801,8769,2013-11-09 22:39:11 -0800,1088,3303 +4802,509,2013-11-08 21:10:39 -0800,1088,3304 +4803,9155,2013-11-09 08:57:54 -0800,1088,3303 +4804,1492,2013-11-11 03:16:18 -0800,1088,3305 +4805,5270,2013-11-11 03:29:42 -0800,1088,3304 +4806,1411,2013-11-07 01:11:27 -0800,1089,3306 +4807,6283,2013-11-10 07:12:42 -0800,1089,3307 +4808,7995,2013-11-11 05:18:10 -0800,1090,3309 +4809,1021,2013-11-10 15:15:28 -0800,1090,3308 +4810,996,2013-11-10 16:10:49 -0800,1090,3309 +4811,2840,2013-11-08 03:42:32 -0800,1091,3313 +4812,3629,2013-11-08 18:26:19 -0800,1091,3312 +4813,4527,2013-11-12 20:18:19 -0800,1091,3311 +4814,1811,2013-11-13 08:00:33 -0800,1091,3313 +4815,3550,2013-11-08 05:27:15 -0800,1091,3312 +4816,980,2013-11-06 12:47:25 -0800,1092,3314 +4817,9874,2013-11-11 13:12:56 -0800,1092,3314 +4818,856,2013-11-08 00:49:31 -0800,1093,3318 +4819,1618,2013-11-11 01:51:36 -0800,1094,3319 +4820,1648,2013-11-07 13:59:27 -0800,1094,3319 +4821,720,2013-11-09 02:40:02 -0800,1094,3319 +4822,2641,2013-11-09 11:37:33 -0800,1094,3319 +4823,2293,2013-11-12 17:06:20 -0800,1095,3321 +4824,6598,2013-11-08 17:31:31 -0800,1095,3320 +4825,8088,2013-11-12 09:20:13 -0800,1095,3321 +4826,5252,2013-11-09 20:59:29 -0800,1095,3320 +4827,8360,2013-11-11 06:43:03 -0800,1095,3323 +4828,4846,2013-11-06 11:14:04 -0800,1096,3326 +4829,1338,2013-11-12 00:25:17 -0800,1096,3324 +4830,7054,2013-11-12 14:35:38 -0800,1096,3326 +4831,5848,2013-11-08 12:35:20 -0800,1096,3326 +4832,9185,2013-11-08 04:18:56 -0800,1096,3326 +4833,2771,2013-11-06 17:10:53 -0800,1096,3326 +4834,8397,2013-11-07 02:23:06 -0800,1096,3324 +4835,8480,2013-11-11 05:38:45 -0800,1096,3325 +4836,4437,2013-11-06 15:47:17 -0800,1097,3329 +4837,6154,2013-11-13 04:59:36 -0800,1097,3329 +4838,1851,2013-11-12 08:46:10 -0800,1097,3327 +4839,6869,2013-11-06 15:59:56 -0800,1097,3328 +4840,5796,2013-11-09 19:27:26 -0800,1097,3330 +4841,1614,2013-11-06 21:11:07 -0800,1097,3327 +4842,2380,2013-11-13 07:03:06 -0800,1097,3328 +4843,6620,2013-11-12 06:36:33 -0800,1098,3331 +4844,6820,2013-11-08 03:11:15 -0800,1099,3333 +4845,3129,2013-11-06 09:04:18 -0800,1099,3336 +4846,9017,2013-11-10 14:54:34 -0800,1099,3336 +4847,3030,2013-11-11 19:42:14 -0800,1099,3334 +4848,7584,2013-11-11 11:20:55 -0800,1099,3336 +4849,1760,2013-11-08 23:21:21 -0800,1099,3335 +4850,2741,2013-11-10 10:56:28 -0800,1099,3335 +4851,6248,2013-11-07 17:49:41 -0800,1100,3340 +4852,6079,2013-11-08 12:08:20 -0800,1100,3337 +4853,2451,2013-11-10 16:46:25 -0800,1101,3342 +4854,9047,2013-11-09 10:48:33 -0800,1101,3341 +4855,9411,2013-11-13 07:15:55 -0800,1101,3342 +4856,4912,2013-11-09 01:35:59 -0800,1101,3341 +4857,6986,2013-11-10 04:40:35 -0800,1101,3342 +4858,2627,2013-11-12 09:37:02 -0800,1101,3342 +4859,267,2013-11-06 23:14:49 -0800,1102,3345 +4860,5127,2013-11-11 04:10:08 -0800,1102,3343 +4861,6584,2013-11-11 02:32:00 -0800,1103,3349 +4862,9139,2013-11-09 01:36:45 -0800,1103,3349 +4863,4216,2013-11-06 18:29:45 -0800,1103,3349 +4864,7311,2013-11-11 20:36:31 -0800,1104,3352 +4865,5875,2013-11-12 20:01:11 -0800,1104,3351 +4866,5433,2013-11-09 12:51:16 -0800,1105,3354 +4867,8575,2013-11-11 21:39:08 -0800,1105,3353 +4868,2371,2013-11-10 13:12:27 -0800,1105,3353 +4869,4857,2013-11-08 22:49:22 -0800,1105,3354 +4870,1298,2013-11-08 02:00:23 -0800,1105,3353 +4871,7375,2013-11-08 13:53:51 -0800,1105,3353 +4872,1621,2013-11-08 23:09:20 -0800,1105,3353 +4873,472,2013-11-11 06:06:54 -0800,1105,3353 +4874,3368,2013-11-08 20:21:37 -0800,1105,3353 +4875,350,2013-11-11 15:33:00 -0800,1106,3358 +4876,8196,2013-11-13 01:57:43 -0800,1106,3357 +4877,9535,2013-11-12 13:40:19 -0800,1107,3360 +4878,6018,2013-11-08 10:42:12 -0800,1107,3360 +4879,338,2013-11-09 17:43:55 -0800,1107,3359 +4880,7114,2013-11-08 11:04:44 -0800,1107,3359 +4881,4370,2013-11-07 21:52:37 -0800,1107,3359 +4882,514,2013-11-09 23:59:48 -0800,1107,3360 +4883,6287,2013-11-11 23:28:01 -0800,1107,3359 +4884,752,2013-11-09 02:06:00 -0800,1107,3360 +4885,1067,2013-11-06 13:31:38 -0800,1107,3359 +4886,6666,2013-11-09 20:13:49 -0800,1108,3363 +4887,1166,2013-11-11 14:41:25 -0800,1108,3363 +4888,2167,2013-11-06 15:42:55 -0800,1108,3362 +4889,4580,2013-11-08 20:43:37 -0800,1110,3367 +4890,9575,2013-11-09 01:16:02 -0800,1110,3368 +4891,7217,2013-11-12 18:36:37 -0800,1110,3366 +4892,3068,2013-11-09 00:37:06 -0800,1110,3366 +4893,3918,2013-11-08 15:16:28 -0800,1111,3369 +4894,4670,2013-11-11 23:47:48 -0800,1111,3373 +4895,1789,2013-11-06 19:50:13 -0800,1111,3369 +4896,9292,2013-11-09 11:06:09 -0800,1112,3376 +4897,7559,2013-11-11 20:08:41 -0800,1113,3378 +4898,2586,2013-11-08 05:50:16 -0800,1113,3377 +4899,470,2013-11-10 05:20:23 -0800,1113,3377 +4900,3797,2013-11-07 18:47:04 -0800,1113,3378 +4901,8717,2013-11-10 05:22:22 -0800,1113,3378 +4902,8052,2013-11-10 03:01:04 -0800,1114,3381 +4903,5097,2013-11-13 05:53:15 -0800,1114,3379 +4904,4981,2013-11-08 04:07:56 -0800,1115,3388 +4905,7454,2013-11-10 07:35:03 -0800,1115,3385 +4906,6856,2013-11-08 19:57:08 -0800,1116,3393 +4907,6089,2013-11-08 18:07:01 -0800,1116,3392 +4908,940,2013-11-07 20:43:41 -0800,1116,3389 +4909,2539,2013-11-08 12:25:06 -0800,1116,3393 +4910,4025,2013-11-12 08:43:30 -0800,1116,3390 +4911,4313,2013-11-06 13:54:10 -0800,1116,3391 +4912,2729,2013-11-09 02:22:13 -0800,1116,3391 +4913,7531,2013-11-07 01:37:15 -0800,1116,3389 +4914,6235,2013-11-10 14:06:07 -0800,1116,3391 +4915,2820,2013-11-12 07:27:37 -0800,1117,3394 +4916,2062,2013-11-10 08:09:02 -0800,1117,3394 +4917,6834,2013-11-06 13:33:02 -0800,1117,3394 +4918,1772,2013-11-09 14:50:46 -0800,1117,3395 +4919,5029,2013-11-09 11:05:25 -0800,1117,3395 +4920,4846,2013-11-11 15:57:00 -0800,1117,3394 +4921,1670,2013-11-06 22:31:00 -0800,1118,3398 +4922,8521,2013-11-09 11:25:41 -0800,1118,3398 +4923,8792,2013-11-12 12:56:20 -0800,1118,3398 +4924,3911,2013-11-08 08:38:16 -0800,1118,3397 +4925,6220,2013-11-10 18:59:18 -0800,1118,3396 +4926,9657,2013-11-08 19:08:00 -0800,1118,3396 +4927,5827,2013-11-07 03:19:50 -0800,1118,3396 +4928,536,2013-11-12 08:50:41 -0800,1119,3401 +4929,4425,2013-11-13 06:40:52 -0800,1119,3402 +4930,5799,2013-11-07 13:29:40 -0800,1120,3406 +4931,9320,2013-11-07 12:42:13 -0800,1120,3406 +4932,415,2013-11-06 17:58:00 -0800,1120,3404 +4933,8826,2013-11-12 21:27:07 -0800,1120,3406 +4934,1585,2013-11-09 04:23:31 -0800,1120,3404 +4935,1480,2013-11-08 07:05:23 -0800,1121,3407 +4936,2845,2013-11-07 08:04:37 -0800,1121,3410 +4937,4630,2013-11-07 22:40:49 -0800,1121,3409 +4938,6650,2013-11-06 20:53:31 -0800,1121,3410 +4939,9591,2013-11-07 04:55:50 -0800,1121,3410 +4940,6812,2013-11-10 20:43:57 -0800,1122,3411 +4941,1040,2013-11-11 03:19:28 -0800,1122,3412 +4942,4720,2013-11-10 01:49:41 -0800,1122,3412 +4943,9834,2013-11-09 18:51:59 -0800,1122,3411 +4944,1488,2013-11-12 20:47:06 -0800,1122,3412 +4945,2781,2013-11-06 16:59:09 -0800,1122,3411 +4946,2516,2013-11-09 00:47:50 -0800,1122,3411 +4947,1016,2013-11-12 02:16:08 -0800,1122,3411 +4948,6620,2013-11-12 19:21:17 -0800,1122,3412 +4949,1215,2013-11-11 13:58:27 -0800,1124,3419 +4950,3338,2013-11-09 05:20:33 -0800,1124,3418 +4951,2876,2013-11-09 12:39:29 -0800,1124,3419 +4952,6040,2013-11-07 09:06:41 -0800,1125,3422 +4953,1290,2013-11-11 12:28:05 -0800,1125,3422 +4954,159,2013-11-07 20:45:06 -0800,1125,3423 +4955,1240,2013-11-12 09:50:36 -0800,1125,3421 +4956,7020,2013-11-08 16:27:28 -0800,1125,3422 +4957,7518,2013-11-07 07:47:10 -0800,1125,3421 +4958,9040,2013-11-08 16:43:05 -0800,1125,3421 +4959,4567,2013-11-08 09:56:38 -0800,1126,3425 +4960,3818,2013-11-07 16:05:39 -0800,1126,3424 +4961,780,2013-11-10 17:25:10 -0800,1126,3424 +4962,1097,2013-11-12 05:22:17 -0800,1127,3426 +4963,6947,2013-11-12 11:59:52 -0800,1128,3431 +4964,1432,2013-11-11 02:45:44 -0800,1128,3430 +4965,8991,2013-11-08 18:14:47 -0800,1128,3432 +4966,7240,2013-11-08 18:46:15 -0800,1128,3433 +4967,4131,2013-11-07 17:52:59 -0800,1128,3431 +4968,5155,2013-11-06 19:34:37 -0800,1128,3432 +4969,3087,2013-11-10 21:30:52 -0800,1128,3433 +4970,3897,2013-11-12 13:00:21 -0800,1130,3438 +4971,5030,2013-11-08 17:47:26 -0800,1130,3438 +4972,177,2013-11-06 23:44:28 -0800,1130,3438 +4973,5350,2013-11-07 17:26:36 -0800,1130,3438 +4974,789,2013-11-08 14:10:01 -0800,1130,3438 +4975,5687,2013-11-11 00:59:24 -0800,1130,3438 +4976,1513,2013-11-12 01:14:17 -0800,1130,3438 +4977,2592,2013-11-10 16:59:14 -0800,1130,3438 +4978,5420,2013-11-10 04:10:27 -0800,1131,3439 +4979,3410,2013-11-08 10:30:29 -0800,1132,3440 +4980,4017,2013-11-12 11:02:03 -0800,1132,3440 +4981,125,2013-11-13 01:10:43 -0800,1132,3441 +4982,7051,2013-11-09 05:45:37 -0800,1132,3440 +4983,8280,2013-11-08 14:46:04 -0800,1132,3440 +4984,3340,2013-11-10 11:43:14 -0800,1132,3441 +4985,8464,2013-11-12 18:23:24 -0800,1132,3440 +4986,3961,2013-11-11 09:48:24 -0800,1133,3443 +4987,4530,2013-11-06 16:41:20 -0800,1133,3444 +4988,6026,2013-11-09 05:40:18 -0800,1133,3442 +4989,5400,2013-11-11 04:44:09 -0800,1133,3445 +4990,4424,2013-11-10 00:50:25 -0800,1134,3447 +4991,5536,2013-11-08 04:54:09 -0800,1134,3450 +4992,1528,2013-11-10 13:45:00 -0800,1134,3447 +4993,4870,2013-11-07 17:15:11 -0800,1134,3448 +4994,8530,2013-11-11 20:32:25 -0800,1135,3451 +4995,623,2013-11-06 10:07:02 -0800,1135,3452 +4996,7980,2013-11-09 18:19:37 -0800,1135,3451 +4997,700,2013-11-11 10:56:47 -0800,1136,3453 +4998,2574,2013-11-10 03:38:14 -0800,1136,3453 +4999,9510,2013-11-07 05:55:43 -0800,1136,3453 +5000,2987,2013-11-10 17:36:36 -0800,1136,3453 +5001,2560,2013-11-13 08:31:24 -0800,1136,3453 +5002,4343,2013-11-12 07:39:18 -0800,1136,3453 +5003,6274,2013-11-12 05:24:48 -0800,1136,3453 +5004,2660,2013-11-11 18:35:19 -0800,1136,3453 +5005,2212,2013-11-07 05:23:21 -0800,1136,3453 +5006,3171,2013-11-10 07:33:28 -0800,1137,3455 +5007,8752,2013-11-12 18:47:42 -0800,1137,3455 +5008,4784,2013-11-12 16:48:21 -0800,1137,3454 +5009,6566,2013-11-10 14:34:36 -0800,1138,3456 +5010,5816,2013-11-07 23:24:33 -0800,1138,3456 +5011,5411,2013-11-06 11:27:45 -0800,1138,3456 +5012,866,2013-11-08 08:10:14 -0800,1138,3456 +5013,1440,2013-11-11 00:30:19 -0800,1138,3456 +5014,1251,2013-11-12 11:19:59 -0800,1138,3456 +5015,2260,2013-11-06 15:12:49 -0800,1138,3456 +5016,134,2013-11-12 17:56:20 -0800,1138,3456 +5017,2448,2013-11-06 19:39:14 -0800,1138,3456 +5018,8814,2013-11-12 19:56:35 -0800,1139,3457 +5019,3075,2013-11-08 14:43:29 -0800,1139,3457 +5020,3157,2013-11-08 02:22:01 -0800,1140,3458 +5021,6413,2013-11-10 02:31:06 -0800,1140,3458 +5022,8130,2013-11-13 07:35:18 -0800,1140,3462 +5023,4998,2013-11-08 18:31:16 -0800,1140,3461 +5024,3140,2013-11-11 17:03:36 -0800,1140,3458 +5025,3644,2013-11-12 03:31:24 -0800,1141,3466 +5026,2480,2013-11-08 19:34:16 -0800,1142,3469 +5027,719,2013-11-12 01:12:22 -0800,1142,3469 +5028,595,2013-11-09 22:19:49 -0800,1142,3469 +5029,3484,2013-11-11 10:07:11 -0800,1143,3471 +5030,3240,2013-11-07 00:55:48 -0800,1143,3471 +5031,4593,2013-11-11 12:01:59 -0800,1143,3471 +5032,9517,2013-11-08 18:21:12 -0800,1143,3472 +5033,3100,2013-11-07 11:07:32 -0800,1143,3471 +5034,2280,2013-11-11 14:56:09 -0800,1143,3472 +5035,3060,2013-11-13 03:10:13 -0800,1143,3471 +5036,7588,2013-11-06 23:59:59 -0800,1145,3474 +5037,8972,2013-11-06 22:15:43 -0800,1145,3476 +5038,8470,2013-11-08 13:52:12 -0800,1145,3475 +5039,8585,2013-11-10 02:46:59 -0800,1145,3474 +5040,6845,2013-11-11 21:50:32 -0800,1145,3477 +5041,3310,2013-11-08 05:11:56 -0800,1146,3479 +5042,971,2013-11-09 20:38:21 -0800,1146,3479 +5043,6378,2013-11-09 23:55:08 -0800,1146,3479 +5044,4832,2013-11-12 20:30:37 -0800,1147,3481 +5045,655,2013-11-11 19:05:15 -0800,1147,3480 +5046,567,2013-11-07 02:15:20 -0800,1147,3481 +5047,3928,2013-11-12 06:03:34 -0800,1147,3481 +5048,3172,2013-11-09 16:47:49 -0800,1147,3484 +5049,1284,2013-11-09 16:32:37 -0800,1147,3482 +5050,1784,2013-11-11 12:54:24 -0800,1147,3482 +5051,7522,2013-11-06 21:46:46 -0800,1147,3484 +5052,3320,2013-11-12 03:06:38 -0800,1147,3483 +5053,8628,2013-11-06 23:44:03 -0800,1148,3485 +5054,590,2013-11-08 15:15:40 -0800,1148,3485 +5055,1545,2013-11-10 12:50:47 -0800,1148,3485 +5056,4920,2013-11-13 07:45:13 -0800,1150,3490 +5057,4152,2013-11-07 07:04:24 -0800,1150,3490 +5058,6359,2013-11-10 03:25:02 -0800,1150,3490 +5059,9127,2013-11-11 03:37:05 -0800,1150,3490 +5060,2762,2013-11-10 06:25:10 -0800,1150,3490 +5061,3593,2013-11-07 07:42:09 -0800,1150,3490 +5062,5966,2013-11-10 19:05:26 -0800,1151,3491 +5063,8863,2013-11-07 03:43:34 -0800,1151,3492 +5064,3882,2013-11-11 06:44:46 -0800,1151,3492 +5065,9311,2013-11-12 22:23:25 -0800,1151,3492 +5066,4656,2013-11-12 04:48:51 -0800,1151,3491 +5067,5517,2013-11-08 05:58:21 -0800,1153,3497 +5068,6745,2013-11-07 23:20:52 -0800,1153,3496 +5069,8960,2013-11-12 01:14:55 -0800,1153,3495 +5070,8940,2013-11-07 12:04:10 -0800,1153,3495 +5071,2450,2013-11-12 14:46:52 -0800,1153,3497 +5072,3736,2013-11-07 00:54:17 -0800,1153,3497 +5073,155,2013-11-06 20:52:37 -0800,1155,3504 +5074,530,2013-11-12 03:52:51 -0800,1155,3504 +5075,9836,2013-11-10 02:27:11 -0800,1155,3503 +5076,4770,2013-11-09 06:37:33 -0800,1155,3503 +5077,1844,2013-11-08 23:40:15 -0800,1155,3504 +5078,8417,2013-11-06 08:53:35 -0800,1155,3504 +5079,7720,2013-11-10 08:49:17 -0800,1155,3504 +5080,5415,2013-11-11 21:19:26 -0800,1155,3504 +5081,7183,2013-11-11 07:32:42 -0800,1155,3504 +5082,3247,2013-11-12 08:37:56 -0800,1156,3507 +5083,1231,2013-11-12 14:30:55 -0800,1157,3509 +5084,874,2013-11-09 23:20:26 -0800,1157,3509 +5085,8453,2013-11-07 12:16:54 -0800,1157,3508 +5086,5159,2013-11-11 08:17:03 -0800,1157,3508 +5087,3424,2013-11-09 01:02:13 -0800,1157,3508 +5088,376,2013-11-07 16:23:28 -0800,1157,3508 +5089,1138,2013-11-09 21:59:57 -0800,1157,3508 +5090,1657,2013-11-09 12:38:46 -0800,1158,3510 +5091,2279,2013-11-06 10:04:40 -0800,1158,3512 +5092,9447,2013-11-07 05:19:53 -0800,1158,3511 +5093,1590,2013-11-07 06:03:37 -0800,1158,3511 +5094,4492,2013-11-09 02:34:48 -0800,1159,3517 +5095,9838,2013-11-09 05:33:15 -0800,1159,3516 +5096,4081,2013-11-10 06:56:58 -0800,1159,3514 +5097,8983,2013-11-13 02:15:24 -0800,1159,3514 +5098,447,2013-11-07 11:11:45 -0800,1159,3515 +5099,1728,2013-11-06 20:43:29 -0800,1159,3517 +5100,2116,2013-11-11 04:48:46 -0800,1159,3514 +5101,5510,2013-11-09 00:46:39 -0800,1159,3516 +5102,9776,2013-11-11 16:17:03 -0800,1159,3517 +5103,5133,2013-11-07 11:49:08 -0800,1161,3524 +5104,1156,2013-11-06 14:43:57 -0800,1162,3525 +5105,742,2013-11-12 17:04:42 -0800,1162,3527 +5106,186,2013-11-08 04:53:36 -0800,1162,3525 +5107,7609,2013-11-07 00:04:30 -0800,1162,3526 +5108,7439,2013-11-12 08:05:28 -0800,1162,3526 +5109,2256,2013-11-09 20:45:50 -0800,1162,3527 +5110,7643,2013-11-12 15:03:26 -0800,1162,3526 +5111,5590,2013-11-10 09:02:29 -0800,1162,3527 +5112,3588,2013-11-12 07:41:08 -0800,1162,3527 +5113,1982,2013-11-06 19:41:51 -0800,1163,3530 +5114,3040,2013-11-08 18:34:53 -0800,1166,3536 +5115,5331,2013-11-10 08:39:32 -0800,1166,3538 +5116,787,2013-11-11 08:58:09 -0800,1166,3538 +5117,8872,2013-11-11 18:56:37 -0800,1166,3537 +5118,5647,2013-11-11 11:48:01 -0800,1166,3537 +5119,7964,2013-11-08 19:19:21 -0800,1166,3539 +5120,4630,2013-11-13 06:42:21 -0800,1167,3540 +5121,8310,2013-11-07 13:37:31 -0800,1167,3544 +5122,2334,2013-11-11 21:56:34 -0800,1167,3541 +5123,4825,2013-11-07 04:25:17 -0800,1167,3544 +5124,536,2013-11-10 05:08:51 -0800,1167,3542 +5125,4832,2013-11-11 11:43:18 -0800,1168,3547 +5126,4633,2013-11-12 06:16:58 -0800,1168,3547 +5127,8332,2013-11-11 11:52:30 -0800,1168,3546 +5128,376,2013-11-08 08:26:16 -0800,1168,3547 +5129,7920,2013-11-07 21:29:37 -0800,1168,3546 +5130,124,2013-11-11 01:29:00 -0800,1168,3545 +5131,7775,2013-11-12 01:48:21 -0800,1168,3547 +5132,4580,2013-11-09 05:13:32 -0800,1168,3547 +5133,4612,2013-11-08 17:46:29 -0800,1170,3557 +5134,3295,2013-11-08 12:39:38 -0800,1170,3555 +5135,5730,2013-11-12 15:10:15 -0800,1171,3560 +5136,1593,2013-11-11 14:00:24 -0800,1171,3559 +5137,7327,2013-11-11 13:40:43 -0800,1171,3561 +5138,2299,2013-11-07 19:33:36 -0800,1171,3561 +5139,9659,2013-11-13 03:31:19 -0800,1171,3560 +5140,2596,2013-11-07 04:13:56 -0800,1171,3559 +5141,4520,2013-11-08 19:05:52 -0800,1171,3561 +5142,8515,2013-11-07 05:53:52 -0800,1171,3558 +5143,7734,2013-11-12 12:26:30 -0800,1172,3563 +5144,810,2013-11-08 01:31:06 -0800,1173,3564 +5145,7913,2013-11-09 08:05:49 -0800,1173,3564 +5146,9394,2013-11-10 21:31:55 -0800,1173,3565 +5147,9323,2013-11-08 17:41:36 -0800,1174,3570 +5148,1630,2013-11-12 04:43:07 -0800,1174,3571 +5149,4177,2013-11-13 04:18:04 -0800,1174,3568 +5150,6265,2013-11-12 01:54:38 -0800,1174,3570 +5151,4486,2013-11-08 09:06:20 -0800,1174,3567 +5152,1629,2013-11-08 10:20:21 -0800,1174,3570 +5153,8713,2013-11-10 07:45:40 -0800,1175,3573 +5154,1084,2013-11-10 20:41:03 -0800,1175,3573 +5155,5350,2013-11-09 21:16:12 -0800,1175,3574 +5156,8033,2013-11-11 02:25:16 -0800,1175,3574 +5157,2720,2013-11-12 14:15:53 -0800,1175,3574 +5158,1490,2013-11-10 20:07:19 -0800,1176,3577 +5159,8669,2013-11-10 23:50:49 -0800,1176,3577 +5160,9680,2013-11-12 23:54:26 -0800,1176,3577 +5161,7698,2013-11-13 06:51:42 -0800,1176,3577 +5162,6823,2013-11-11 03:19:50 -0800,1176,3577 +5163,851,2013-11-08 02:07:55 -0800,1176,3577 +5164,8176,2013-11-08 03:47:21 -0800,1176,3577 +5165,1496,2013-11-10 16:43:50 -0800,1177,3578 +5166,3177,2013-11-06 21:00:50 -0800,1177,3578 +5167,9345,2013-11-10 03:42:04 -0800,1177,3578 +5168,2570,2013-11-10 15:45:09 -0800,1177,3578 +5169,7073,2013-11-11 19:25:03 -0800,1177,3578 +5170,5036,2013-11-11 22:36:48 -0800,1177,3578 +5171,900,2013-11-13 06:30:10 -0800,1177,3578 +5172,4660,2013-11-12 05:37:35 -0800,1177,3578 +5173,5682,2013-11-11 18:11:12 -0800,1177,3578 +5174,4077,2013-11-08 22:44:33 -0800,1178,3580 +5175,2462,2013-11-12 11:12:45 -0800,1178,3582 +5176,8633,2013-11-07 07:51:14 -0800,1178,3582 +5177,6998,2013-11-12 13:28:21 -0800,1178,3581 +5178,3653,2013-11-09 10:09:08 -0800,1178,3579 +5179,3721,2013-11-09 00:55:56 -0800,1178,3581 +5180,6645,2013-11-07 13:06:51 -0800,1179,3584 +5181,2785,2013-11-07 10:11:24 -0800,1179,3585 +5182,6618,2013-11-10 09:39:48 -0800,1179,3585 +5183,9651,2013-11-06 20:53:27 -0800,1179,3585 +5184,6241,2013-11-12 00:15:57 -0800,1179,3586 +5185,3850,2013-11-11 14:07:11 -0800,1179,3586 +5186,4086,2013-11-08 18:53:04 -0800,1179,3585 +5187,8170,2013-11-09 11:22:26 -0800,1180,3591 +5188,1489,2013-11-11 11:06:21 -0800,1181,3593 +5189,3240,2013-11-08 16:55:05 -0800,1181,3592 +5190,1680,2013-11-07 02:40:33 -0800,1181,3595 +5191,1823,2013-11-08 16:34:40 -0800,1181,3592 +5192,2448,2013-11-11 11:51:17 -0800,1181,3594 +5193,6640,2013-11-11 08:10:22 -0800,1181,3593 +5194,2393,2013-11-07 19:26:23 -0800,1181,3595 +5195,1930,2013-11-10 06:26:53 -0800,1182,3597 +5196,8469,2013-11-10 00:08:42 -0800,1182,3597 +5197,5410,2013-11-09 00:40:09 -0800,1182,3597 +5198,7366,2013-11-11 17:25:37 -0800,1182,3598 +5199,6033,2013-11-11 18:35:42 -0800,1182,3597 +5200,3344,2013-11-07 08:52:18 -0800,1182,3598 +5201,6509,2013-11-13 01:33:28 -0800,1182,3598 +5202,6955,2013-11-12 21:11:43 -0800,1183,3600 +5203,1394,2013-11-07 06:32:25 -0800,1183,3600 +5204,1623,2013-11-10 10:32:52 -0800,1183,3600 +5205,7620,2013-11-10 20:58:05 -0800,1183,3600 +5206,6086,2013-11-11 15:23:59 -0800,1183,3601 +5207,3452,2013-11-11 16:07:01 -0800,1183,3601 +5208,9760,2013-11-07 16:32:18 -0800,1183,3601 +5209,1267,2013-11-06 21:21:12 -0800,1183,3599 +5210,3879,2013-11-12 14:17:13 -0800,1183,3601 +5211,1860,2013-11-11 19:27:12 -0800,1184,3602 +5212,2154,2013-11-08 02:02:14 -0800,1184,3602 +5213,5546,2013-11-11 19:40:18 -0800,1185,3604 +5214,9539,2013-11-10 00:50:17 -0800,1185,3604 +5215,1657,2013-11-08 14:02:17 -0800,1185,3603 +5216,2955,2013-11-12 15:33:41 -0800,1185,3603 +5217,2045,2013-11-10 00:21:55 -0800,1185,3603 +5218,6077,2013-11-10 22:59:06 -0800,1185,3604 +5219,1229,2013-11-10 21:43:14 -0800,1186,3606 +5220,4761,2013-11-08 06:05:54 -0800,1186,3606 +5221,5019,2013-11-11 16:23:41 -0800,1186,3608 +5222,30,2013-11-12 17:48:01 -0800,1186,3606 +5223,8091,2013-11-08 23:10:12 -0800,1186,3606 +5224,1077,2013-11-09 04:19:37 -0800,1186,3609 +5225,2687,2013-11-11 21:45:18 -0800,1187,3610 +5226,2420,2013-11-07 14:19:51 -0800,1187,3610 +5227,7581,2013-11-09 11:56:38 -0800,1187,3610 +5228,2777,2013-11-08 03:23:40 -0800,1187,3610 +5229,5330,2013-11-06 22:33:55 -0800,1187,3610 +5230,6115,2013-11-12 16:48:24 -0800,1188,3611 +5231,9154,2013-11-08 01:57:08 -0800,1190,3619 +5232,2017,2013-11-10 07:22:06 -0800,1190,3617 +5233,3035,2013-11-13 07:19:01 -0800,1190,3618 +5234,5218,2013-11-12 19:45:02 -0800,1190,3616 +5235,8622,2013-11-12 18:34:12 -0800,1190,3619 +5236,2126,2013-11-11 23:15:47 -0800,1190,3616 +5237,3881,2013-11-07 19:45:20 -0800,1190,3618 +5238,5610,2013-11-10 18:01:46 -0800,1190,3616 +5239,8367,2013-11-10 04:42:39 -0800,1190,3616 +5240,2155,2013-11-11 03:10:40 -0800,1191,3621 +5241,7250,2013-11-11 21:01:33 -0800,1191,3622 +5242,5681,2013-11-12 17:43:13 -0800,1192,3623 +5243,2832,2013-11-10 14:35:18 -0800,1192,3624 +5244,1880,2013-11-08 21:46:12 -0800,1193,3626 +5245,6248,2013-11-07 05:27:41 -0800,1195,3629 +5246,6311,2013-11-06 18:40:16 -0800,1195,3629 +5247,2551,2013-11-06 14:54:54 -0800,1195,3629 +5248,8169,2013-11-07 22:28:41 -0800,1195,3629 +5249,2467,2013-11-08 05:49:54 -0800,1195,3629 +5250,5056,2013-11-10 07:45:31 -0800,1195,3629 +5251,7823,2013-11-09 02:16:11 -0800,1195,3629 +5252,6240,2013-11-08 19:26:53 -0800,1196,3631 +5253,9173,2013-11-08 14:39:19 -0800,1196,3631 +5254,7012,2013-11-11 05:18:00 -0800,1196,3631 +5255,7712,2013-11-07 02:44:37 -0800,1196,3631 +5256,6346,2013-11-07 04:29:04 -0800,1196,3630 +5257,2468,2013-11-09 06:56:58 -0800,1197,3633 +5258,2793,2013-11-06 15:22:43 -0800,1197,3632 +5259,9354,2013-11-08 18:29:10 -0800,1197,3633 +5260,2989,2013-11-10 12:22:06 -0800,1197,3632 +5261,1564,2013-11-08 06:05:15 -0800,1197,3632 +5262,9614,2013-11-08 01:32:08 -0800,1198,3634 +5263,7184,2013-11-09 13:54:45 -0800,1198,3635 +5264,6434,2013-11-10 07:22:57 -0800,1198,3638 +5265,7295,2013-11-09 11:34:04 -0800,1199,3639 +5266,2840,2013-11-10 21:11:06 -0800,1199,3640 +5267,6837,2013-11-06 17:53:44 -0800,1199,3639 +5268,7736,2013-11-08 21:14:45 -0800,1199,3640 +5269,9098,2013-11-11 10:17:35 -0800,1199,3641 +5270,8142,2013-11-10 21:15:48 -0800,1200,3643 +5271,3932,2013-11-10 08:39:48 -0800,1200,3642 +5272,7165,2013-11-12 11:43:50 -0800,1201,3645 +5273,5654,2013-11-10 17:43:34 -0800,1201,3647 +5274,8637,2013-11-12 19:19:04 -0800,1201,3647 +5275,6809,2013-11-09 02:34:03 -0800,1201,3647 +5276,8545,2013-11-13 02:33:43 -0800,1201,3646 +5277,1422,2013-11-09 07:37:46 -0800,1201,3645 +5278,9329,2013-11-08 14:54:32 -0800,1201,3647 +5279,8535,2013-11-10 19:11:58 -0800,1201,3645 +5280,7197,2013-11-08 23:18:13 -0800,1201,3646 +5281,7914,2013-11-07 00:38:59 -0800,1202,3652 +5282,3099,2013-11-13 04:02:46 -0800,1203,3654 +5283,5015,2013-11-11 08:08:29 -0800,1203,3655 +5284,5660,2013-11-10 02:27:43 -0800,1203,3656 +5285,688,2013-11-06 18:18:33 -0800,1204,3661 +5286,5582,2013-11-13 04:05:12 -0800,1204,3657 +5287,1563,2013-11-07 12:23:10 -0800,1204,3661 +5288,4866,2013-11-06 18:32:33 -0800,1204,3660 +5289,7777,2013-11-06 10:31:14 -0800,1205,3665 +5290,5714,2013-11-10 08:56:20 -0800,1205,3664 +5291,8695,2013-11-11 11:23:57 -0800,1205,3664 +5292,5079,2013-11-08 01:36:08 -0800,1205,3664 +5293,2727,2013-11-12 22:44:56 -0800,1206,3667 +5294,8772,2013-11-07 15:38:43 -0800,1206,3667 +5295,8272,2013-11-11 10:27:58 -0800,1206,3666 +5296,260,2013-11-11 14:23:54 -0800,1206,3667 +5297,5258,2013-11-11 17:05:33 -0800,1206,3666 +5298,8553,2013-11-10 01:45:01 -0800,1206,3667 +5299,7994,2013-11-12 05:13:28 -0800,1206,3666 +5300,5560,2013-11-11 09:25:02 -0800,1206,3668 +5301,4642,2013-11-08 09:20:37 -0800,1206,3667 +5302,6199,2013-11-08 09:42:31 -0800,1207,3671 +5303,9170,2013-11-09 21:27:37 -0800,1207,3669 +5304,8270,2013-11-10 17:02:12 -0800,1207,3673 +5305,6840,2013-11-07 04:59:52 -0800,1208,3674 +5306,7019,2013-11-11 11:39:08 -0800,1208,3674 +5307,1440,2013-11-12 21:02:24 -0800,1208,3674 +5308,5516,2013-11-08 22:55:31 -0800,1208,3674 +5309,1545,2013-11-06 20:27:17 -0800,1208,3674 +5310,9413,2013-11-12 23:48:58 -0800,1208,3674 +5311,712,2013-11-11 07:09:40 -0800,1208,3674 +5312,2386,2013-11-11 16:19:11 -0800,1208,3674 +5313,5456,2013-11-12 00:44:57 -0800,1209,3678 +5314,3594,2013-11-07 20:25:14 -0800,1210,3680 +5315,6071,2013-11-12 19:39:22 -0800,1210,3680 +5316,9565,2013-11-12 11:34:35 -0800,1211,3683 +5317,8412,2013-11-12 17:04:04 -0800,1212,3687 +5318,4743,2013-11-08 21:39:15 -0800,1212,3687 +5319,9271,2013-11-06 23:27:01 -0800,1212,3686 +5320,2797,2013-11-09 19:00:48 -0800,1212,3686 +5321,8450,2013-11-10 03:29:35 -0800,1213,3688 +5322,2468,2013-11-06 14:38:29 -0800,1213,3688 +5323,5455,2013-11-11 02:53:44 -0800,1213,3688 +5324,8690,2013-11-09 21:11:34 -0800,1213,3688 +5325,4956,2013-11-10 12:13:57 -0800,1213,3688 +5326,1750,2013-11-08 21:48:05 -0800,1213,3688 +5327,5676,2013-11-08 17:34:56 -0800,1214,3689 +5328,6866,2013-11-11 02:15:51 -0800,1214,3690 +5329,7943,2013-11-08 01:41:11 -0800,1214,3690 +5330,9446,2013-11-10 09:54:08 -0800,1216,3694 +5331,2716,2013-11-12 16:48:18 -0800,1216,3696 +5332,2622,2013-11-11 14:57:01 -0800,1216,3696 +5333,6025,2013-11-10 10:15:34 -0800,1216,3696 +5334,7112,2013-11-07 08:00:56 -0800,1216,3697 +5335,6609,2013-11-08 09:38:16 -0800,1216,3697 +5336,138,2013-11-08 23:17:11 -0800,1216,3694 +5337,4580,2013-11-12 21:24:44 -0800,1216,3695 +5338,5310,2013-11-08 16:08:52 -0800,1217,3700 +5339,8389,2013-11-08 14:03:42 -0800,1217,3699 +5340,4130,2013-11-12 17:34:04 -0800,1217,3700 +5341,1099,2013-11-06 23:51:19 -0800,1218,3702 +5342,1215,2013-11-11 06:28:49 -0800,1219,3707 +5343,3736,2013-11-09 08:09:41 -0800,1219,3706 +5344,7113,2013-11-07 14:00:10 -0800,1219,3707 +5345,4612,2013-11-11 11:36:29 -0800,1219,3707 +5346,4528,2013-11-07 19:30:55 -0800,1219,3707 +5347,2796,2013-11-09 03:57:18 -0800,1219,3706 +5348,5861,2013-11-07 06:38:12 -0800,1220,3709 +5349,3326,2013-11-10 07:45:18 -0800,1220,3710 +5350,6562,2013-11-12 10:40:40 -0800,1221,3713 +5351,2767,2013-11-07 15:45:31 -0800,1222,3715 +5352,9560,2013-11-06 20:47:31 -0800,1223,3721 +5353,4772,2013-11-09 19:55:52 -0800,1224,3725 +5354,8911,2013-11-10 02:17:42 -0800,1225,3727 +5355,6445,2013-11-08 14:20:55 -0800,1225,3727 +5356,2355,2013-11-07 12:11:53 -0800,1225,3727 +5357,3397,2013-11-10 23:36:56 -0800,1225,3726 +5358,7415,2013-11-06 22:41:26 -0800,1225,3727 +5359,6050,2013-11-08 06:58:38 -0800,1225,3727 +5360,2994,2013-11-07 16:38:48 -0800,1225,3726 +5361,432,2013-11-07 07:01:25 -0800,1225,3727 +5362,1352,2013-11-12 23:58:10 -0800,1226,3728 +5363,9536,2013-11-06 21:26:30 -0800,1226,3728 +5364,5790,2013-11-10 13:51:13 -0800,1226,3728 +5365,4056,2013-11-12 15:53:12 -0800,1227,3729 +5366,1144,2013-11-12 23:14:04 -0800,1228,3733 +5367,9490,2013-11-11 18:20:18 -0800,1228,3734 +5368,7717,2013-11-08 01:04:59 -0800,1228,3733 +5369,4063,2013-11-08 00:54:04 -0800,1228,3734 +5370,7647,2013-11-10 19:30:26 -0800,1228,3733 +5371,1291,2013-11-10 08:47:03 -0800,1229,3735 +5372,9370,2013-11-09 18:44:23 -0800,1229,3735 +5373,6098,2013-11-09 23:49:43 -0800,1229,3735 +5374,6230,2013-11-09 01:56:21 -0800,1229,3735 +5375,2271,2013-11-09 06:38:51 -0800,1229,3735 +5376,9481,2013-11-07 23:34:23 -0800,1229,3735 +5377,6162,2013-11-12 13:09:17 -0800,1229,3735 +5378,8152,2013-11-13 02:13:52 -0800,1229,3735 +5379,6454,2013-11-06 09:57:22 -0800,1230,3736 +5380,6128,2013-11-12 15:46:18 -0800,1230,3736 +5381,8313,2013-11-11 16:02:07 -0800,1230,3737 +5382,1647,2013-11-13 07:28:33 -0800,1230,3737 +5383,6418,2013-11-11 10:35:28 -0800,1230,3736 +5384,6823,2013-11-06 11:25:33 -0800,1230,3736 +5385,5892,2013-11-07 09:22:24 -0800,1230,3736 +5386,2674,2013-11-11 00:23:58 -0800,1230,3736 +5387,6082,2013-11-06 11:30:01 -0800,1230,3737 +5388,9742,2013-11-07 23:58:53 -0800,1231,3738 +5389,5125,2013-11-08 07:55:14 -0800,1231,3739 +5390,8430,2013-11-08 09:08:07 -0800,1232,3740 +5391,2639,2013-11-06 15:13:17 -0800,1232,3740 +5392,815,2013-11-12 05:16:37 -0800,1232,3740 +5393,2394,2013-11-08 18:52:17 -0800,1232,3740 +5394,3074,2013-11-11 16:25:24 -0800,1233,3742 +5395,6326,2013-11-09 10:53:43 -0800,1234,3743 +5396,218,2013-11-09 15:43:58 -0800,1234,3743 +5397,2073,2013-11-12 12:59:07 -0800,1234,3743 +5398,3354,2013-11-07 05:31:59 -0800,1234,3744 +5399,7490,2013-11-09 14:47:16 -0800,1234,3743 +5400,9728,2013-11-10 20:15:32 -0800,1235,3749 +5401,3461,2013-11-07 16:06:58 -0800,1237,3755 +5402,5571,2013-11-07 20:44:13 -0800,1237,3755 +5403,8240,2013-11-10 13:52:19 -0800,1237,3754 +5404,3114,2013-11-10 12:42:35 -0800,1237,3757 +5405,256,2013-11-07 18:30:51 -0800,1237,3757 +5406,5488,2013-11-11 05:38:28 -0800,1237,3755 +5407,2876,2013-11-12 12:44:36 -0800,1237,3757 +5408,2995,2013-11-08 05:48:01 -0800,1237,3755 +5409,613,2013-11-08 09:56:45 -0800,1238,3759 +5410,6738,2013-11-10 18:23:18 -0800,1238,3759 +5411,1193,2013-11-13 03:26:47 -0800,1238,3759 +5412,8758,2013-11-11 03:43:27 -0800,1238,3758 +5413,2353,2013-11-06 08:54:13 -0800,1238,3759 +5414,2571,2013-11-09 02:23:15 -0800,1239,3761 +5415,4686,2013-11-10 23:31:11 -0800,1239,3761 +5416,5138,2013-11-10 20:42:51 -0800,1239,3760 +5417,8290,2013-11-08 15:40:07 -0800,1239,3760 +5418,8649,2013-11-10 11:38:00 -0800,1240,3764 +5419,5238,2013-11-11 13:48:05 -0800,1240,3764 +5420,8680,2013-11-11 08:33:56 -0800,1240,3765 +5421,2157,2013-11-12 18:29:23 -0800,1240,3765 +5422,3777,2013-11-07 13:44:03 -0800,1240,3764 +5423,9643,2013-11-08 14:24:02 -0800,1241,3767 +5424,8944,2013-11-13 06:56:00 -0800,1242,3771 +5425,830,2013-11-12 01:42:49 -0800,1242,3772 +5426,11,2013-11-09 23:53:35 -0800,1242,3774 +5427,1297,2013-11-11 21:58:23 -0800,1242,3772 +5428,3260,2013-11-08 03:08:50 -0800,1242,3775 +5429,2519,2013-11-08 05:30:36 -0800,1242,3775 +5430,1436,2013-11-08 19:59:52 -0800,1242,3772 +5431,9037,2013-11-07 21:00:48 -0800,1242,3771 +5432,4932,2013-11-12 11:28:54 -0800,1243,3777 +5433,2863,2013-11-12 07:50:16 -0800,1243,3777 +5434,9715,2013-11-13 04:44:21 -0800,1244,3780 +5435,9214,2013-11-11 05:19:33 -0800,1244,3780 +5436,383,2013-11-10 16:34:57 -0800,1244,3779 +5437,355,2013-11-07 21:58:30 -0800,1244,3779 +5438,2088,2013-11-09 16:51:47 -0800,1244,3778 +5439,4439,2013-11-07 16:39:01 -0800,1244,3779 +5440,3067,2013-11-11 14:29:05 -0800,1245,3785 +5441,4811,2013-11-13 01:19:31 -0800,1245,3786 +5442,2550,2013-11-07 01:27:23 -0800,1245,3785 +5443,7350,2013-11-12 00:38:05 -0800,1245,3784 +5444,6418,2013-11-10 18:07:26 -0800,1245,3785 +5445,3426,2013-11-09 23:57:10 -0800,1246,3787 +5446,1847,2013-11-10 18:39:05 -0800,1246,3787 +5447,7159,2013-11-10 07:28:10 -0800,1246,3787 +5448,916,2013-11-06 19:33:14 -0800,1246,3787 +5449,9796,2013-11-09 00:55:41 -0800,1246,3787 +5450,9055,2013-11-12 02:36:53 -0800,1246,3787 +5451,7173,2013-11-06 10:27:10 -0800,1247,3789 +5452,4810,2013-11-08 07:44:24 -0800,1247,3790 +5453,2973,2013-11-09 14:24:03 -0800,1247,3790 +5454,8598,2013-11-08 18:41:28 -0800,1247,3790 +5455,7615,2013-11-12 10:32:27 -0800,1247,3790 +5456,3720,2013-11-07 13:08:16 -0800,1247,3790 +5457,5522,2013-11-09 18:53:23 -0800,1248,3794 +5458,455,2013-11-10 20:29:09 -0800,1248,3792 +5459,5010,2013-11-09 20:04:51 -0800,1248,3795 +5460,8920,2013-11-11 10:48:30 -0800,1249,3799 +5461,7726,2013-11-06 14:00:49 -0800,1249,3797 +5462,235,2013-11-07 06:22:57 -0800,1249,3799 +5463,4274,2013-11-08 02:06:45 -0800,1249,3797 +5464,4931,2013-11-07 17:32:41 -0800,1250,3800 +5465,4315,2013-11-07 01:00:09 -0800,1250,3802 +5466,538,2013-11-09 17:57:15 -0800,1250,3802 +5467,335,2013-11-07 16:46:52 -0800,1250,3802 +5468,76,2013-11-07 02:44:20 -0800,1250,3802 +5469,2431,2013-11-11 13:55:17 -0800,1251,3803 +5470,3797,2013-11-10 15:54:00 -0800,1252,3804 +5471,8568,2013-11-09 05:01:14 -0800,1252,3804 +5472,144,2013-11-13 03:36:02 -0800,1252,3804 +5473,2435,2013-11-08 11:41:54 -0800,1252,3805 +5474,7684,2013-11-11 15:56:36 -0800,1252,3804 +5475,6730,2013-11-12 05:21:48 -0800,1252,3805 +5476,8711,2013-11-10 03:04:23 -0800,1252,3805 +5477,8011,2013-11-08 20:24:45 -0800,1252,3804 +5478,1136,2013-11-10 15:21:43 -0800,1253,3807 +5479,1882,2013-11-12 06:59:14 -0800,1253,3807 +5480,7888,2013-11-10 10:29:35 -0800,1253,3807 +5481,6263,2013-11-09 01:07:53 -0800,1253,3807 +5482,2550,2013-11-11 16:07:18 -0800,1253,3807 +5483,5731,2013-11-07 06:07:22 -0800,1253,3807 +5484,181,2013-11-11 06:47:30 -0800,1254,3808 +5485,8974,2013-11-09 06:04:31 -0800,1254,3811 +5486,2639,2013-11-10 09:59:14 -0800,1254,3808 +5487,8386,2013-11-12 20:43:01 -0800,1254,3809 +5488,3450,2013-11-07 05:20:25 -0800,1256,3817 +5489,5300,2013-11-11 01:50:21 -0800,1256,3816 +5490,8689,2013-11-06 23:04:26 -0800,1256,3816 +5491,6409,2013-11-12 06:15:28 -0800,1256,3816 +5492,3722,2013-11-10 01:10:52 -0800,1256,3817 +5493,2785,2013-11-12 15:24:08 -0800,1256,3816 +5494,6043,2013-11-06 11:21:43 -0800,1257,3819 +5495,5070,2013-11-06 22:45:17 -0800,1257,3819 +5496,8446,2013-11-12 18:10:43 -0800,1258,3822 +5497,3900,2013-11-08 15:46:03 -0800,1258,3822 +5498,7250,2013-11-11 02:54:23 -0800,1258,3822 +5499,6473,2013-11-13 01:23:16 -0800,1258,3822 +5500,7130,2013-11-12 06:24:27 -0800,1258,3822 +5501,2294,2013-11-10 21:46:09 -0800,1258,3820 +5502,3750,2013-11-10 01:33:47 -0800,1259,3823 +5503,7259,2013-11-09 17:41:57 -0800,1259,3823 +5504,6437,2013-11-07 23:54:02 -0800,1259,3823 +5505,6580,2013-11-09 05:09:22 -0800,1259,3823 +5506,6119,2013-11-09 15:36:27 -0800,1259,3823 +5507,3854,2013-11-12 08:11:55 -0800,1260,3826 +5508,3442,2013-11-07 08:43:51 -0800,1262,3835 +5509,9489,2013-11-11 17:32:29 -0800,1262,3835 +5510,5278,2013-11-07 22:12:46 -0800,1262,3834 +5511,9073,2013-11-07 06:45:36 -0800,1262,3834 +5512,5835,2013-11-07 03:43:01 -0800,1262,3835 +5513,9211,2013-11-10 17:18:57 -0800,1263,3836 +5514,1123,2013-11-10 12:26:05 -0800,1263,3836 +5515,4583,2013-11-06 17:06:17 -0800,1263,3836 +5516,8466,2013-11-12 16:46:03 -0800,1263,3836 +5517,6169,2013-11-08 05:06:43 -0800,1263,3836 +5518,5692,2013-11-07 06:52:07 -0800,1263,3836 +5519,3192,2013-11-08 07:38:32 -0800,1263,3836 +5520,5990,2013-11-09 07:30:00 -0800,1263,3836 +5521,9584,2013-11-11 11:43:05 -0800,1264,3837 +5522,3860,2013-11-09 01:05:04 -0800,1264,3840 +5523,8290,2013-11-10 00:15:18 -0800,1264,3839 +5524,9724,2013-11-12 21:04:20 -0800,1264,3840 +5525,6440,2013-11-09 05:06:39 -0800,1264,3840 +5526,8325,2013-11-10 21:51:19 -0800,1264,3837 +5527,1274,2013-11-11 07:47:52 -0800,1264,3840 +5528,9479,2013-11-12 07:50:52 -0800,1264,3838 +5529,4024,2013-11-13 00:58:10 -0800,1265,3841 +5530,7672,2013-11-10 12:30:44 -0800,1265,3841 +5531,4330,2013-11-13 01:53:50 -0800,1265,3841 +5532,9027,2013-11-07 18:30:45 -0800,1265,3841 +5533,4746,2013-11-07 17:34:09 -0800,1265,3841 +5534,1684,2013-11-11 15:42:50 -0800,1265,3841 +5535,6939,2013-11-10 14:00:34 -0800,1265,3841 +5536,6153,2013-11-09 20:26:53 -0800,1265,3841 +5537,6327,2013-11-11 02:41:45 -0800,1266,3842 +5538,3670,2013-11-13 07:05:03 -0800,1267,3843 +5539,1136,2013-11-07 01:03:13 -0800,1267,3843 +5540,8996,2013-11-12 22:50:59 -0800,1267,3844 +5541,2598,2013-11-10 02:03:05 -0800,1267,3844 +5542,6154,2013-11-07 12:03:56 -0800,1267,3844 +5543,4713,2013-11-07 16:52:16 -0800,1268,3845 +5544,4837,2013-11-10 05:00:18 -0800,1268,3845 +5545,3247,2013-11-11 11:31:16 -0800,1268,3845 +5546,3311,2013-11-11 01:24:54 -0800,1268,3845 +5547,2810,2013-11-10 20:34:39 -0800,1268,3846 +5548,7329,2013-11-10 06:30:39 -0800,1268,3846 +5549,2220,2013-11-07 20:11:59 -0800,1269,3850 +5550,3040,2013-11-08 18:14:23 -0800,1269,3849 +5551,8955,2013-11-09 03:37:03 -0800,1269,3848 +5552,1185,2013-11-08 14:54:57 -0800,1269,3848 +5553,1647,2013-11-08 18:34:49 -0800,1269,3849 +5554,4870,2013-11-12 14:00:35 -0800,1270,3853 +5555,686,2013-11-06 22:12:44 -0800,1271,3856 +5556,2083,2013-11-09 18:20:11 -0800,1271,3855 +5557,2549,2013-11-06 18:27:05 -0800,1271,3856 +5558,7892,2013-11-12 13:33:40 -0800,1271,3854 +5559,3743,2013-11-08 04:43:00 -0800,1271,3857 +5560,4692,2013-11-13 02:46:51 -0800,1271,3854 +5561,6134,2013-11-10 08:38:29 -0800,1271,3854 +5562,1342,2013-11-12 19:37:45 -0800,1271,3855 +5563,4880,2013-11-13 07:20:52 -0800,1273,3861 +5564,5022,2013-11-08 00:44:07 -0800,1273,3862 +5565,310,2013-11-09 03:03:24 -0800,1274,3865 +5566,616,2013-11-10 08:51:08 -0800,1274,3866 +5567,3064,2013-11-10 03:59:47 -0800,1274,3867 +5568,8156,2013-11-08 22:05:00 -0800,1274,3868 +5569,3185,2013-11-06 11:56:50 -0800,1274,3867 +5570,5550,2013-11-06 23:59:51 -0800,1274,3868 +5571,8551,2013-11-10 16:26:59 -0800,1274,3867 +5572,3489,2013-11-10 00:44:35 -0800,1274,3868 +5573,1814,2013-11-13 02:04:12 -0800,1274,3867 +5574,9023,2013-11-09 11:08:45 -0800,1275,3871 +5575,3234,2013-11-12 21:45:17 -0800,1275,3870 +5576,1190,2013-11-07 23:19:21 -0800,1275,3872 +5577,8740,2013-11-08 01:52:31 -0800,1275,3872 +5578,3819,2013-11-08 08:27:36 -0800,1275,3871 +5579,1835,2013-11-12 11:54:40 -0800,1276,3873 +5580,1861,2013-11-12 01:18:40 -0800,1276,3874 +5581,5240,2013-11-07 00:33:15 -0800,1276,3874 +5582,2484,2013-11-06 16:56:41 -0800,1278,3882 +5583,5222,2013-11-10 03:20:54 -0800,1278,3880 +5584,7894,2013-11-11 00:29:32 -0800,1278,3882 +5585,7339,2013-11-10 04:03:56 -0800,1278,3882 +5586,4783,2013-11-07 18:02:13 -0800,1278,3879 +5587,89,2013-11-08 14:45:05 -0800,1278,3882 +5588,5147,2013-11-12 15:32:00 -0800,1278,3880 +5589,4336,2013-11-08 08:44:46 -0800,1278,3883 +5590,9267,2013-11-11 21:52:31 -0800,1278,3880 +5591,7242,2013-11-12 06:05:12 -0800,1279,3886 +5592,3081,2013-11-11 17:46:17 -0800,1279,3884 +5593,4573,2013-11-10 15:41:32 -0800,1279,3884 +5594,3296,2013-11-11 21:24:51 -0800,1279,3888 +5595,4859,2013-11-12 17:19:10 -0800,1279,3885 +5596,1235,2013-11-09 00:55:10 -0800,1279,3884 +5597,6277,2013-11-08 16:53:57 -0800,1279,3888 +5598,6966,2013-11-07 05:57:08 -0800,1279,3886 +5599,1812,2013-11-09 22:03:34 -0800,1280,3889 +5600,4052,2013-11-11 08:52:48 -0800,1280,3889 +5601,2954,2013-11-09 20:54:03 -0800,1280,3889 +5602,3240,2013-11-10 03:22:03 -0800,1280,3889 +5603,9246,2013-11-11 21:15:52 -0800,1280,3889 +5604,2288,2013-11-09 16:36:37 -0800,1281,3890 +5605,6542,2013-11-10 15:28:11 -0800,1281,3891 +5606,3778,2013-11-11 13:03:41 -0800,1283,3897 +5607,6852,2013-11-09 06:51:05 -0800,1283,3898 +5608,639,2013-11-09 04:47:13 -0800,1283,3899 +5609,2375,2013-11-12 13:24:32 -0800,1283,3898 +5610,2631,2013-11-12 01:58:56 -0800,1283,3897 +5611,7180,2013-11-07 14:16:19 -0800,1283,3897 +5612,6021,2013-11-07 05:01:54 -0800,1283,3897 +5613,4025,2013-11-11 01:36:47 -0800,1283,3898 +5614,7677,2013-11-07 02:41:43 -0800,1283,3898 +5615,8282,2013-11-11 11:05:12 -0800,1284,3902 +5616,8090,2013-11-12 21:37:16 -0800,1284,3901 +5617,7178,2013-11-06 16:41:41 -0800,1284,3902 +5618,8513,2013-11-12 23:30:52 -0800,1284,3902 +5619,6695,2013-11-09 17:15:46 -0800,1284,3901 +5620,5840,2013-11-09 22:48:36 -0800,1284,3902 +5621,8464,2013-11-12 04:42:59 -0800,1284,3902 +5622,3190,2013-11-13 07:44:36 -0800,1284,3902 +5623,5670,2013-11-08 00:34:56 -0800,1285,3904 +5624,1470,2013-11-10 18:40:36 -0800,1285,3903 +5625,1623,2013-11-10 06:46:38 -0800,1285,3903 +5626,8078,2013-11-11 08:32:56 -0800,1285,3904 +5627,7180,2013-11-09 01:00:08 -0800,1285,3904 +5628,7698,2013-11-10 19:53:54 -0800,1285,3903 +5629,983,2013-11-11 02:47:48 -0800,1285,3903 +5630,5328,2013-11-07 20:09:20 -0800,1285,3903 +5631,3413,2013-11-10 23:04:15 -0800,1285,3903 +5632,3177,2013-11-06 11:41:14 -0800,1286,3905 +5633,4160,2013-11-10 09:59:35 -0800,1286,3905 +5634,8646,2013-11-08 06:04:18 -0800,1286,3905 +5635,2187,2013-11-12 10:54:29 -0800,1286,3905 +5636,8265,2013-11-11 05:58:32 -0800,1286,3905 +5637,6965,2013-11-08 10:44:06 -0800,1286,3905 +5638,9237,2013-11-08 16:31:53 -0800,1286,3905 +5639,1429,2013-11-08 08:55:21 -0800,1286,3905 +5640,257,2013-11-12 12:29:34 -0800,1287,3906 +5641,1474,2013-11-08 11:19:12 -0800,1287,3907 +5642,8073,2013-11-07 18:36:14 -0800,1287,3907 +5643,289,2013-11-08 13:18:54 -0800,1287,3906 +5644,5964,2013-11-08 10:15:59 -0800,1287,3907 +5645,6478,2013-11-07 04:26:41 -0800,1288,3909 +5646,300,2013-11-09 08:58:19 -0800,1288,3908 +5647,9666,2013-11-12 19:03:49 -0800,1288,3910 +5648,1072,2013-11-12 13:23:35 -0800,1288,3910 +5649,6556,2013-11-07 21:46:14 -0800,1288,3909 +5650,7427,2013-11-12 14:07:05 -0800,1288,3909 +5651,1360,2013-11-10 23:43:36 -0800,1289,3911 +5652,3116,2013-11-10 09:50:06 -0800,1290,3915 +5653,4218,2013-11-08 04:11:12 -0800,1290,3914 +5654,5370,2013-11-10 18:32:29 -0800,1290,3914 +5655,175,2013-11-10 08:37:38 -0800,1290,3914 +5656,2222,2013-11-10 06:11:18 -0800,1290,3914 +5657,1622,2013-11-07 04:38:48 -0800,1291,3916 +5658,5350,2013-11-08 17:58:01 -0800,1291,3916 +5659,5030,2013-11-07 02:27:21 -0800,1291,3916 +5660,8412,2013-11-07 19:29:57 -0800,1291,3916 +5661,6541,2013-11-09 20:08:27 -0800,1292,3921 +5662,7780,2013-11-12 03:49:17 -0800,1292,3918 +5663,7613,2013-11-11 09:16:34 -0800,1292,3919 +5664,4597,2013-11-12 16:31:10 -0800,1292,3921 +5665,9026,2013-11-11 21:32:29 -0800,1292,3918 +5666,4311,2013-11-11 22:00:11 -0800,1292,3920 +5667,3775,2013-11-07 12:30:13 -0800,1292,3921 +5668,8247,2013-11-10 00:03:42 -0800,1292,3921 +5669,5658,2013-11-11 07:42:26 -0800,1292,3920 +5670,4320,2013-11-08 06:25:36 -0800,1293,3925 +5671,5026,2013-11-12 05:45:31 -0800,1293,3925 +5672,7618,2013-11-09 17:26:13 -0800,1294,3928 +5673,1657,2013-11-08 19:08:42 -0800,1294,3929 +5674,4161,2013-11-06 17:38:09 -0800,1294,3928 +5675,5510,2013-11-08 01:19:00 -0800,1294,3930 +5676,8587,2013-11-12 12:01:17 -0800,1294,3929 +5677,2610,2013-11-10 16:13:43 -0800,1294,3927 +5678,2363,2013-11-06 10:17:18 -0800,1295,3936 +5679,4024,2013-11-06 14:23:50 -0800,1295,3936 +5680,6788,2013-11-12 04:32:47 -0800,1295,3932 +5681,2850,2013-11-06 16:25:10 -0800,1296,3938 +5682,4520,2013-11-09 06:47:24 -0800,1296,3941 +5683,4154,2013-11-12 05:22:04 -0800,1296,3937 +5684,3629,2013-11-13 04:07:39 -0800,1296,3937 +5685,2339,2013-11-10 17:26:37 -0800,1296,3938 +5686,7014,2013-11-07 08:38:42 -0800,1296,3937 +5687,6447,2013-11-08 17:55:15 -0800,1296,3940 +5688,570,2013-11-07 20:13:58 -0800,1298,3944 +5689,8771,2013-11-08 09:49:05 -0800,1298,3946 +5690,4275,2013-11-09 15:19:33 -0800,1299,3951 +5691,7677,2013-11-12 16:33:14 -0800,1299,3949 +5692,1186,2013-11-11 09:36:36 -0800,1299,3949 +5693,353,2013-11-08 07:20:15 -0800,1299,3951 +5694,3852,2013-11-08 20:10:13 -0800,1299,3949 +5695,3411,2013-11-07 12:21:21 -0800,1299,3951 +5696,1240,2013-11-11 21:21:39 -0800,1299,3951 +5697,2987,2013-11-08 14:22:11 -0800,1300,3954 +5698,8498,2013-11-12 06:31:28 -0800,1300,3952 +5699,8910,2013-11-12 18:52:35 -0800,1300,3954 +5700,867,2013-11-12 14:42:26 -0800,1300,3952 +5701,5698,2013-11-06 12:32:30 -0800,1300,3953 +5702,4773,2013-11-08 05:24:55 -0800,1300,3953 +5703,2676,2013-11-11 18:09:06 -0800,1301,3955 +5704,4880,2013-11-07 11:13:59 -0800,1301,3955 +5705,1058,2013-11-09 20:28:41 -0800,1301,3955 +5706,9578,2013-11-10 14:05:10 -0800,1301,3955 +5707,6750,2013-11-07 22:08:18 -0800,1302,3956 +5708,3267,2013-11-10 02:43:07 -0800,1302,3956 +5709,8486,2013-11-09 12:09:41 -0800,1302,3956 +5710,1620,2013-11-08 16:59:23 -0800,1302,3956 +5711,8974,2013-11-11 05:06:43 -0800,1302,3956 +5712,5332,2013-11-08 03:03:00 -0800,1302,3957 +5713,8125,2013-11-09 13:20:59 -0800,1302,3956 +5714,279,2013-11-10 03:43:54 -0800,1302,3958 +5715,7393,2013-11-11 01:57:03 -0800,1303,3960 +5716,2499,2013-11-07 13:53:01 -0800,1303,3959 +5717,3429,2013-11-07 05:42:34 -0800,1303,3961 +5718,749,2013-11-09 13:59:00 -0800,1303,3960 +5719,295,2013-11-06 23:43:42 -0800,1304,3963 +5720,6773,2013-11-09 22:03:56 -0800,1305,3966 +5721,8287,2013-11-09 14:26:48 -0800,1306,3970 +5722,3897,2013-11-11 14:48:07 -0800,1306,3969 +5723,9541,2013-11-08 05:37:52 -0800,1306,3968 +5724,1367,2013-11-08 19:28:32 -0800,1306,3969 +5725,4676,2013-11-07 19:08:09 -0800,1306,3968 +5726,1553,2013-11-11 01:13:51 -0800,1307,3973 +5727,5455,2013-11-07 22:17:12 -0800,1307,3971 +5728,8439,2013-11-12 06:34:43 -0800,1307,3974 +5729,8333,2013-11-12 01:54:28 -0800,1307,3974 +5730,4413,2013-11-09 12:15:11 -0800,1307,3972 +5731,7690,2013-11-12 11:21:16 -0800,1307,3971 +5732,6291,2013-11-09 14:08:11 -0800,1307,3974 +5733,8934,2013-11-12 15:13:07 -0800,1307,3971 +5734,128,2013-11-07 19:18:46 -0800,1308,3976 +5735,1275,2013-11-10 05:16:35 -0800,1308,3976 +5736,5981,2013-11-06 11:55:59 -0800,1308,3977 +5737,2898,2013-11-08 18:10:53 -0800,1308,3976 +5738,2295,2013-11-09 23:19:12 -0800,1308,3977 +5739,112,2013-11-12 15:48:13 -0800,1309,3979 +5740,8981,2013-11-12 04:29:14 -0800,1309,3979 +5741,5910,2013-11-10 20:19:06 -0800,1309,3979 +5742,1863,2013-11-10 22:58:17 -0800,1309,3979 +5743,9623,2013-11-08 21:59:00 -0800,1309,3979 +5744,7148,2013-11-12 03:40:36 -0800,1309,3979 +5745,3174,2013-11-09 01:31:40 -0800,1309,3979 +5746,3390,2013-11-11 16:46:48 -0800,1310,3984 +5747,3740,2013-11-07 13:40:13 -0800,1310,3984 +5748,9244,2013-11-08 01:22:01 -0800,1310,3983 +5749,6745,2013-11-09 23:42:43 -0800,1310,3982 +5750,6853,2013-11-09 14:32:14 -0800,1312,3990 +5751,673,2013-11-08 02:18:30 -0800,1312,3991 +5752,1513,2013-11-11 23:20:36 -0800,1312,3989 +5753,8688,2013-11-07 03:36:21 -0800,1312,3990 +5754,6777,2013-11-10 03:58:14 -0800,1312,3990 +5755,2222,2013-11-09 03:22:02 -0800,1312,3991 +5756,6195,2013-11-09 17:07:00 -0800,1313,3994 +5757,7080,2013-11-08 00:49:18 -0800,1313,3996 +5758,7086,2013-11-09 17:16:07 -0800,1313,3993 +5759,890,2013-11-08 05:32:38 -0800,1313,3993 +5760,3656,2013-11-12 21:09:13 -0800,1313,3995 +5761,5578,2013-11-09 00:01:40 -0800,1313,3993 +5762,1452,2013-11-08 07:38:04 -0800,1313,3992 +5763,9372,2013-11-07 06:03:45 -0800,1314,4000 +5764,7898,2013-11-10 17:18:30 -0800,1314,3999 +5765,8746,2013-11-10 15:43:42 -0800,1314,3999 +5766,7559,2013-11-12 00:13:28 -0800,1315,4004 +5767,6299,2013-11-11 08:15:41 -0800,1315,4001 +5768,1663,2013-11-10 14:14:20 -0800,1315,4004 +5769,5993,2013-11-08 23:02:19 -0800,1315,4001 +5770,1527,2013-11-07 05:09:39 -0800,1315,4003 +5771,6276,2013-11-10 10:03:10 -0800,1315,4004 +5772,7294,2013-11-10 02:21:37 -0800,1316,4007 +5773,1540,2013-11-11 14:26:51 -0800,1316,4005 +5774,7564,2013-11-10 10:14:42 -0800,1316,4008 +5775,8910,2013-11-11 12:45:28 -0800,1317,4012 +5776,1434,2013-11-10 07:40:20 -0800,1317,4012 +5777,4273,2013-11-07 07:00:15 -0800,1317,4009 +5778,8767,2013-11-12 19:21:52 -0800,1317,4010 +5779,1457,2013-11-12 20:08:00 -0800,1317,4009 +5780,9773,2013-11-07 14:43:38 -0800,1317,4009 +5781,8361,2013-11-10 13:10:14 -0800,1318,4014 +5782,8039,2013-11-08 00:52:31 -0800,1318,4013 +5783,6681,2013-11-09 11:25:09 -0800,1318,4014 +5784,8170,2013-11-07 00:28:33 -0800,1318,4013 +5785,2397,2013-11-06 18:10:25 -0800,1318,4014 +5786,2510,2013-11-07 21:58:18 -0800,1318,4013 +5787,8785,2013-11-09 04:47:12 -0800,1318,4014 +5788,9143,2013-11-06 21:42:08 -0800,1318,4014 +5789,5244,2013-11-09 00:26:21 -0800,1318,4013 +5790,5321,2013-11-11 12:06:59 -0800,1319,4015 +5791,3156,2013-11-11 15:33:38 -0800,1319,4015 +5792,5726,2013-11-11 09:23:36 -0800,1319,4015 +5793,6858,2013-11-12 18:41:43 -0800,1319,4015 +5794,2465,2013-11-08 13:45:00 -0800,1319,4015 +5795,792,2013-11-11 04:37:06 -0800,1319,4015 +5796,5345,2013-11-08 22:56:53 -0800,1319,4015 +5797,1314,2013-11-06 20:47:51 -0800,1319,4015 +5798,4430,2013-11-10 23:32:04 -0800,1320,4017 +5799,8250,2013-11-09 19:40:33 -0800,1320,4017 +5800,4320,2013-11-08 00:29:54 -0800,1321,4018 +5801,7118,2013-11-11 22:41:51 -0800,1321,4020 +5802,2979,2013-11-08 15:51:46 -0800,1321,4019 +5803,7527,2013-11-10 14:18:35 -0800,1321,4020 +5804,4831,2013-11-08 22:36:09 -0800,1321,4020 +5805,7962,2013-11-09 20:36:38 -0800,1321,4020 +5806,190,2013-11-07 08:31:01 -0800,1321,4020 +5807,4628,2013-11-08 07:43:55 -0800,1322,4021 +5808,6388,2013-11-10 08:08:53 -0800,1322,4021 +5809,789,2013-11-06 14:03:24 -0800,1323,4022 +5810,7297,2013-11-08 02:09:09 -0800,1323,4023 +5811,676,2013-11-09 07:47:33 -0800,1323,4023 +5812,5052,2013-11-12 06:08:57 -0800,1324,4025 +5813,6581,2013-11-09 09:17:40 -0800,1324,4028 +5814,5197,2013-11-08 08:24:18 -0800,1324,4027 +5815,983,2013-11-11 12:24:53 -0800,1324,4024 +5816,1159,2013-11-06 16:06:42 -0800,1325,4030 +5817,4025,2013-11-08 14:33:31 -0800,1325,4030 +5818,3997,2013-11-08 09:36:10 -0800,1325,4029 +5819,8592,2013-11-12 23:38:56 -0800,1325,4030 +5820,8091,2013-11-13 03:10:29 -0800,1325,4029 +5821,139,2013-11-07 10:28:54 -0800,1325,4030 +5822,1964,2013-11-08 03:34:49 -0800,1325,4029 +5823,4921,2013-11-08 08:40:42 -0800,1325,4029 +5824,7815,2013-11-08 12:07:00 -0800,1326,4031 +5825,4680,2013-11-07 13:38:52 -0800,1326,4033 +5826,9153,2013-11-10 12:06:11 -0800,1326,4033 +5827,8426,2013-11-06 13:53:09 -0800,1326,4032 +5828,1441,2013-11-09 21:51:51 -0800,1326,4033 +5829,4853,2013-11-11 10:04:24 -0800,1327,4034 +5830,963,2013-11-08 19:59:25 -0800,1327,4034 +5831,3867,2013-11-10 13:18:28 -0800,1327,4034 +5832,3436,2013-11-08 10:00:46 -0800,1327,4034 +5833,8483,2013-11-12 01:06:56 -0800,1328,4036 +5834,3665,2013-11-06 16:54:24 -0800,1328,4035 +5835,3877,2013-11-12 20:53:35 -0800,1328,4036 +5836,2268,2013-11-07 12:03:28 -0800,1328,4038 +5837,4957,2013-11-10 12:09:15 -0800,1328,4036 +5838,3831,2013-11-08 09:28:48 -0800,1328,4038 +5839,7620,2013-11-07 01:29:09 -0800,1328,4037 +5840,9277,2013-11-11 04:21:36 -0800,1328,4038 +5841,3472,2013-11-06 09:42:49 -0800,1328,4037 +5842,9155,2013-11-12 08:22:19 -0800,1329,4039 +5843,6487,2013-11-07 23:29:52 -0800,1329,4040 +5844,8465,2013-11-07 01:51:53 -0800,1329,4042 +5845,4118,2013-11-09 09:33:04 -0800,1331,4045 +5846,6290,2013-11-08 11:39:23 -0800,1331,4046 +5847,5910,2013-11-08 13:53:33 -0800,1331,4047 +5848,2498,2013-11-12 20:29:44 -0800,1331,4046 +5849,1613,2013-11-11 23:24:28 -0800,1332,4048 +5850,8858,2013-11-12 10:54:45 -0800,1332,4049 +5851,6745,2013-11-09 18:40:02 -0800,1332,4048 +5852,3540,2013-11-10 16:14:15 -0800,1332,4049 +5853,2322,2013-11-10 22:09:41 -0800,1332,4048 +5854,5866,2013-11-06 18:16:59 -0800,1332,4048 +5855,1234,2013-11-10 23:48:55 -0800,1332,4048 +5856,5590,2013-11-12 11:24:12 -0800,1332,4049 +5857,9717,2013-11-06 09:10:14 -0800,1333,4051 +5858,3170,2013-11-08 23:31:59 -0800,1333,4051 +5859,5519,2013-11-07 13:28:40 -0800,1333,4051 +5860,2761,2013-11-10 19:18:05 -0800,1333,4050 +5861,4335,2013-11-09 17:59:43 -0800,1333,4050 +5862,3081,2013-11-08 21:00:40 -0800,1333,4051 +5863,1519,2013-11-12 08:48:12 -0800,1333,4051 +5864,3750,2013-11-06 09:19:40 -0800,1333,4051 +5865,4043,2013-11-10 06:34:35 -0800,1333,4051 +5866,4071,2013-11-09 15:47:21 -0800,1334,4053 +5867,7595,2013-11-09 09:56:30 -0800,1334,4054 +5868,3067,2013-11-11 03:37:52 -0800,1334,4053 +5869,4017,2013-11-08 22:31:54 -0800,1334,4054 +5870,3814,2013-11-06 13:14:22 -0800,1334,4053 +5871,6228,2013-11-11 18:25:11 -0800,1334,4052 +5872,3760,2013-11-08 20:25:45 -0800,1334,4052 +5873,1664,2013-11-10 03:26:10 -0800,1334,4053 +5874,7641,2013-11-07 18:39:10 -0800,1334,4052 +5875,3442,2013-11-12 01:29:15 -0800,1335,4055 +5876,1619,2013-11-07 08:45:07 -0800,1335,4055 +5877,7434,2013-11-10 08:21:36 -0800,1335,4055 +5878,4265,2013-11-09 20:25:33 -0800,1335,4055 +5879,5357,2013-11-10 03:38:02 -0800,1335,4055 +5880,6586,2013-11-13 01:26:41 -0800,1335,4055 +5881,9020,2013-11-07 19:51:35 -0800,1335,4055 +5882,8321,2013-11-09 09:08:31 -0800,1335,4055 +5883,9085,2013-11-06 15:07:28 -0800,1335,4055 +5884,3579,2013-11-09 18:12:57 -0800,1337,4063 +5885,6351,2013-11-08 09:14:36 -0800,1337,4060 +5886,9277,2013-11-09 22:37:36 -0800,1337,4062 +5887,6180,2013-11-07 16:47:55 -0800,1338,4068 +5888,3467,2013-11-09 15:33:47 -0800,1338,4064 +5889,1866,2013-11-11 20:55:02 -0800,1338,4065 +5890,6072,2013-11-11 11:47:26 -0800,1339,4069 +5891,9428,2013-11-11 10:43:48 -0800,1339,4069 +5892,7379,2013-11-08 07:19:12 -0800,1339,4069 +5893,142,2013-11-12 20:11:15 -0800,1339,4069 +5894,4913,2013-11-09 12:23:09 -0800,1339,4069 +5895,9874,2013-11-07 15:48:17 -0800,1339,4069 +5896,6770,2013-11-12 04:00:52 -0800,1339,4069 +5897,6097,2013-11-08 05:39:23 -0800,1340,4070 +5898,1578,2013-11-06 08:42:09 -0800,1340,4073 +5899,2583,2013-11-07 04:24:09 -0800,1340,4070 +5900,6461,2013-11-10 05:42:15 -0800,1340,4072 +5901,4085,2013-11-06 08:53:23 -0800,1340,4070 +5902,6336,2013-11-08 12:39:48 -0800,1340,4072 +5903,2775,2013-11-09 01:55:05 -0800,1340,4070 +5904,3688,2013-11-11 08:35:08 -0800,1341,4076 +5905,4744,2013-11-09 00:22:12 -0800,1341,4075 +5906,8955,2013-11-07 15:47:03 -0800,1341,4076 +5907,2737,2013-11-13 04:03:01 -0800,1342,4077 +5908,4968,2013-11-06 11:06:17 -0800,1342,4077 +5909,6752,2013-11-10 09:02:17 -0800,1343,4078 +5910,4810,2013-11-11 21:48:49 -0800,1343,4079 +5911,9710,2013-11-11 18:48:47 -0800,1343,4078 +5912,721,2013-11-06 11:36:54 -0800,1343,4079 +5913,3992,2013-11-08 22:34:22 -0800,1344,4080 +5914,1190,2013-11-13 02:47:37 -0800,1344,4080 +5915,7909,2013-11-12 22:09:51 -0800,1344,4081 +5916,7331,2013-11-07 06:40:04 -0800,1344,4080 +5917,8585,2013-11-08 12:05:13 -0800,1344,4081 +5918,9618,2013-11-11 01:38:57 -0800,1346,4083 +5919,5668,2013-11-06 08:55:30 -0800,1346,4083 +5920,9044,2013-11-08 23:12:46 -0800,1346,4083 +5921,2028,2013-11-09 13:07:30 -0800,1346,4083 +5922,4410,2013-11-07 19:31:42 -0800,1346,4084 +5923,479,2013-11-12 00:56:44 -0800,1346,4083 +5924,5058,2013-11-10 08:43:44 -0800,1346,4084 +5925,7431,2013-11-07 20:01:19 -0800,1346,4083 +5926,3277,2013-11-09 02:29:08 -0800,1346,4084 +5927,138,2013-11-11 20:07:34 -0800,1347,4085 +5928,6290,2013-11-13 07:31:29 -0800,1347,4087 +5929,9355,2013-11-08 01:08:02 -0800,1348,4089 +5930,9243,2013-11-11 14:38:43 -0800,1348,4089 +5931,3010,2013-11-07 11:52:07 -0800,1348,4089 +5932,9040,2013-11-09 23:08:56 -0800,1348,4089 +5933,1310,2013-11-08 14:50:06 -0800,1349,4091 +5934,9784,2013-11-09 16:36:12 -0800,1349,4090 +5935,1784,2013-11-12 21:28:46 -0800,1350,4092 +5936,2830,2013-11-10 16:26:04 -0800,1350,4093 +5937,4866,2013-11-11 21:18:39 -0800,1350,4095 +5938,8250,2013-11-10 18:49:17 -0800,1350,4095 +5939,8397,2013-11-08 05:46:27 -0800,1350,4092 +5940,3194,2013-11-06 23:43:31 -0800,1350,4094 +5941,9492,2013-11-09 23:02:03 -0800,1350,4094 +5942,3672,2013-11-12 20:17:14 -0800,1350,4095 +5943,7417,2013-11-08 23:14:01 -0800,1351,4100 +5944,5464,2013-11-06 11:24:19 -0800,1351,4100 +5945,6990,2013-11-08 13:30:17 -0800,1351,4096 +5946,6834,2013-11-08 17:43:30 -0800,1351,4096 +5947,6891,2013-11-12 11:18:06 -0800,1353,4105 +5948,141,2013-11-12 06:52:37 -0800,1353,4105 +5949,9250,2013-11-07 15:16:45 -0800,1353,4105 +5950,5252,2013-11-12 07:33:04 -0800,1354,4106 +5951,1395,2013-11-12 05:54:46 -0800,1354,4107 +5952,1621,2013-11-07 02:45:07 -0800,1355,4109 +5953,9461,2013-11-10 07:18:24 -0800,1355,4108 +5954,5663,2013-11-07 21:10:10 -0800,1356,4112 +5955,4251,2013-11-09 02:09:08 -0800,1356,4112 +5956,9456,2013-11-11 03:57:17 -0800,1356,4112 +5957,4040,2013-11-11 13:41:27 -0800,1356,4113 +5958,2691,2013-11-09 22:32:30 -0800,1356,4110 +5959,3444,2013-11-10 22:11:54 -0800,1356,4113 +5960,1117,2013-11-12 19:00:52 -0800,1356,4110 +5961,1620,2013-11-11 19:16:53 -0800,1356,4111 +5962,476,2013-11-09 05:22:58 -0800,1357,4115 +5963,3886,2013-11-08 12:30:35 -0800,1357,4115 +5964,4265,2013-11-06 21:13:34 -0800,1357,4115 +5965,6390,2013-11-12 21:06:36 -0800,1357,4114 +5966,4522,2013-11-09 22:17:53 -0800,1357,4114 +5967,537,2013-11-07 15:48:08 -0800,1357,4114 +5968,7783,2013-11-10 04:39:47 -0800,1357,4114 +5969,8842,2013-11-07 19:16:06 -0800,1358,4118 +5970,1689,2013-11-13 02:23:09 -0800,1358,4116 +5971,47,2013-11-09 17:04:16 -0800,1358,4116 +5972,2544,2013-11-11 23:14:33 -0800,1359,4124 +5973,9229,2013-11-13 04:25:03 -0800,1360,4125 +5974,541,2013-11-08 11:00:44 -0800,1360,4127 +5975,4873,2013-11-09 15:30:35 -0800,1360,4127 +5976,7753,2013-11-12 18:34:29 -0800,1360,4128 +5977,3220,2013-11-10 01:26:34 -0800,1360,4128 +5978,566,2013-11-09 23:14:28 -0800,1360,4125 +5979,2825,2013-11-06 22:02:29 -0800,1361,4130 +5980,7279,2013-11-09 05:07:38 -0800,1361,4131 +5981,7664,2013-11-10 12:38:24 -0800,1361,4130 +5982,1886,2013-11-13 04:07:27 -0800,1361,4129 +5983,5713,2013-11-13 08:17:48 -0800,1362,4135 +5984,2647,2013-11-08 10:21:26 -0800,1362,4135 +5985,2117,2013-11-12 17:09:30 -0800,1363,4137 +5986,4836,2013-11-12 12:48:42 -0800,1363,4136 +5987,5620,2013-11-09 01:40:42 -0800,1363,4136 +5988,2929,2013-11-08 19:59:11 -0800,1363,4137 +5989,7148,2013-11-13 00:18:15 -0800,1363,4136 +5990,2257,2013-11-11 11:19:09 -0800,1363,4137 +5991,3720,2013-11-08 08:41:33 -0800,1363,4137 +5992,5622,2013-11-09 20:30:39 -0800,1363,4136 +5993,8120,2013-11-10 19:55:24 -0800,1363,4136 +5994,9224,2013-11-09 18:47:28 -0800,1364,4138 +5995,936,2013-11-12 08:42:16 -0800,1364,4138 +5996,4893,2013-11-11 22:48:25 -0800,1364,4138 +5997,8380,2013-11-09 06:00:05 -0800,1364,4138 +5998,846,2013-11-09 18:04:13 -0800,1364,4138 +5999,4449,2013-11-11 05:10:59 -0800,1364,4138 +6000,553,2013-11-08 07:18:05 -0800,1365,4141 +6001,3763,2013-11-11 12:33:54 -0800,1365,4142 +6002,9517,2013-11-09 11:09:48 -0800,1365,4140 +6003,1441,2013-11-07 15:02:29 -0800,1365,4140 +6004,859,2013-11-13 01:42:35 -0800,1365,4142 +6005,4863,2013-11-11 00:06:50 -0800,1366,4146 +6006,9048,2013-11-06 23:08:02 -0800,1366,4144 +6007,1084,2013-11-11 11:54:37 -0800,1366,4144 +6008,5250,2013-11-10 20:57:48 -0800,1366,4145 +6009,8854,2013-11-12 14:38:00 -0800,1366,4145 +6010,1380,2013-11-07 21:33:05 -0800,1367,4147 +6011,5526,2013-11-08 07:15:29 -0800,1367,4148 +6012,2576,2013-11-09 00:55:06 -0800,1367,4150 +6013,196,2013-11-12 13:43:46 -0800,1368,4151 +6014,6381,2013-11-06 21:06:00 -0800,1368,4151 +6015,2039,2013-11-12 00:23:44 -0800,1368,4151 +6016,5760,2013-11-08 10:52:35 -0800,1369,4153 +6017,3361,2013-11-09 20:42:54 -0800,1369,4154 +6018,3627,2013-11-13 01:18:02 -0800,1369,4153 +6019,9368,2013-11-09 20:27:33 -0800,1370,4158 +6020,385,2013-11-10 22:40:31 -0800,1370,4158 +6021,2329,2013-11-12 09:50:19 -0800,1370,4156 +6022,3360,2013-11-07 06:14:42 -0800,1370,4158 +6023,353,2013-11-08 12:29:45 -0800,1370,4156 +6024,8988,2013-11-10 15:25:19 -0800,1370,4157 +6025,817,2013-11-07 10:27:57 -0800,1371,4160 +6026,7527,2013-11-12 11:28:35 -0800,1371,4162 +6027,3997,2013-11-11 09:41:47 -0800,1371,4160 +6028,2954,2013-11-07 05:18:01 -0800,1371,4160 +6029,2086,2013-11-07 08:54:16 -0800,1371,4162 +6030,7709,2013-11-12 01:18:22 -0800,1371,4159 +6031,5968,2013-11-10 03:23:19 -0800,1371,4160 +6032,9523,2013-11-09 11:44:45 -0800,1371,4163 +6033,3936,2013-11-12 11:34:33 -0800,1371,4163 +6034,4567,2013-11-11 21:13:09 -0800,1372,4166 +6035,723,2013-11-11 02:01:08 -0800,1372,4164 +6036,3719,2013-11-10 11:13:31 -0800,1372,4166 +6037,8448,2013-11-06 22:36:26 -0800,1372,4166 +6038,1433,2013-11-11 02:17:50 -0800,1372,4164 +6039,6750,2013-11-07 12:46:23 -0800,1372,4168 +6040,6023,2013-11-13 04:59:31 -0800,1372,4167 +6041,7234,2013-11-08 13:47:06 -0800,1373,4173 +6042,9859,2013-11-11 16:49:50 -0800,1373,4169 +6043,3542,2013-11-10 14:19:41 -0800,1373,4169 +6044,4676,2013-11-13 07:19:29 -0800,1373,4171 +6045,3334,2013-11-10 06:29:23 -0800,1373,4171 +6046,192,2013-11-10 15:52:34 -0800,1373,4169 +6047,3310,2013-11-09 04:06:45 -0800,1373,4171 +6048,5190,2013-11-12 22:19:01 -0800,1373,4169 +6049,8391,2013-11-08 17:13:03 -0800,1373,4169 +6050,9672,2013-11-09 17:00:10 -0800,1375,4179 +6051,4720,2013-11-13 06:58:17 -0800,1375,4179 +6052,7470,2013-11-12 00:36:59 -0800,1376,4180 +6053,6731,2013-11-09 13:24:04 -0800,1377,4186 +6054,2957,2013-11-10 13:34:36 -0800,1377,4183 +6055,4730,2013-11-12 23:39:11 -0800,1377,4187 +6056,1264,2013-11-09 02:58:49 -0800,1377,4187 +6057,314,2013-11-13 01:49:00 -0800,1377,4186 +6058,8175,2013-11-06 10:46:13 -0800,1377,4187 +6059,1626,2013-11-13 07:02:15 -0800,1378,4188 +6060,5738,2013-11-10 14:44:07 -0800,1378,4190 +6061,4655,2013-11-13 02:12:01 -0800,1378,4189 +6062,172,2013-11-06 09:20:16 -0800,1378,4190 +6063,6600,2013-11-08 11:08:37 -0800,1378,4188 +6064,6279,2013-11-10 05:30:10 -0800,1378,4188 +6065,3434,2013-11-11 06:06:00 -0800,1378,4188 +6066,1789,2013-11-11 08:41:25 -0800,1379,4191 +6067,4928,2013-11-07 04:08:13 -0800,1381,4195 +6068,9566,2013-11-08 07:49:42 -0800,1381,4195 +6069,3625,2013-11-10 12:52:08 -0800,1381,4195 +6070,8692,2013-11-06 16:28:33 -0800,1381,4195 +6071,1675,2013-11-10 16:11:17 -0800,1381,4195 +6072,9126,2013-11-09 16:18:41 -0800,1381,4195 +6073,5860,2013-11-12 19:25:24 -0800,1381,4195 +6074,8262,2013-11-10 03:16:33 -0800,1381,4195 +6075,1429,2013-11-10 08:36:10 -0800,1382,4196 +6076,8570,2013-11-09 19:14:42 -0800,1382,4197 +6077,5371,2013-11-07 20:56:08 -0800,1382,4196 +6078,5630,2013-11-08 04:44:11 -0800,1382,4197 +6079,1435,2013-11-12 15:52:41 -0800,1382,4196 +6080,6997,2013-11-08 20:16:27 -0800,1382,4196 +6081,2467,2013-11-12 20:15:02 -0800,1383,4198 +6082,8063,2013-11-12 05:44:06 -0800,1383,4198 +6083,140,2013-11-08 12:28:01 -0800,1383,4198 +6084,2441,2013-11-08 03:41:28 -0800,1383,4199 +6085,7859,2013-11-13 03:03:04 -0800,1384,4202 +6086,1520,2013-11-08 20:21:11 -0800,1384,4204 +6087,7034,2013-11-11 10:39:01 -0800,1384,4201 +6088,1052,2013-11-08 08:40:09 -0800,1384,4200 +6089,8326,2013-11-06 15:10:15 -0800,1384,4202 +6090,8863,2013-11-07 17:07:49 -0800,1384,4204 +6091,9864,2013-11-08 08:11:45 -0800,1385,4205 +6092,6880,2013-11-09 12:03:02 -0800,1385,4205 +6093,6113,2013-11-12 07:30:51 -0800,1386,4209 +6094,2778,2013-11-06 18:39:30 -0800,1386,4207 +6095,9829,2013-11-10 20:54:30 -0800,1386,4208 +6096,673,2013-11-10 15:03:20 -0800,1386,4209 +6097,2578,2013-11-08 20:49:14 -0800,1387,4214 +6098,6680,2013-11-07 07:26:20 -0800,1387,4212 +6099,8194,2013-11-08 11:03:10 -0800,1387,4211 +6100,4540,2013-11-09 16:21:23 -0800,1387,4213 +6101,5619,2013-11-12 10:56:09 -0800,1387,4213 +6102,9254,2013-11-10 01:33:35 -0800,1387,4211 +6103,9000,2013-11-10 02:06:25 -0800,1387,4211 +6104,2932,2013-11-07 08:50:24 -0800,1388,4216 +6105,7491,2013-11-06 11:18:35 -0800,1388,4215 +6106,3610,2013-11-08 07:06:00 -0800,1388,4217 +6107,8952,2013-11-07 19:04:55 -0800,1388,4216 +6108,8969,2013-11-07 18:33:55 -0800,1388,4217 +6109,7169,2013-11-07 13:03:31 -0800,1388,4216 +6110,2536,2013-11-08 08:45:25 -0800,1389,4220 +6111,6158,2013-11-13 00:40:42 -0800,1390,4221 +6112,1957,2013-11-07 21:11:18 -0800,1390,4221 +6113,8267,2013-11-12 05:45:00 -0800,1390,4221 +6114,1964,2013-11-06 22:36:54 -0800,1390,4221 +6115,8009,2013-11-11 19:07:37 -0800,1390,4221 +6116,9890,2013-11-12 20:31:06 -0800,1390,4221 +6117,2182,2013-11-08 15:58:02 -0800,1390,4221 +6118,8621,2013-11-06 11:09:11 -0800,1390,4221 +6119,5270,2013-11-08 09:08:50 -0800,1391,4223 +6120,7277,2013-11-12 13:59:57 -0800,1391,4222 +6121,3327,2013-11-12 22:03:55 -0800,1391,4222 +6122,5770,2013-11-10 17:14:49 -0800,1392,4225 +6123,1550,2013-11-12 02:31:48 -0800,1393,4230 +6124,7054,2013-11-07 03:19:07 -0800,1393,4231 +6125,8317,2013-11-11 15:12:15 -0800,1393,4231 +6126,611,2013-11-06 12:43:18 -0800,1394,4233 +6127,162,2013-11-09 12:54:04 -0800,1394,4234 +6128,7752,2013-11-06 20:50:45 -0800,1394,4233 +6129,7638,2013-11-08 23:39:22 -0800,1394,4235 +6130,1713,2013-11-08 18:42:53 -0800,1394,4232 +6131,3472,2013-11-11 12:55:06 -0800,1394,4234 +6132,7936,2013-11-06 19:22:23 -0800,1394,4233 +6133,70,2013-11-12 16:07:50 -0800,1395,4241 +6134,9558,2013-11-11 11:06:11 -0800,1395,4239 +6135,1863,2013-11-07 00:46:50 -0800,1395,4238 +6136,3213,2013-11-08 08:41:57 -0800,1395,4240 +6137,8451,2013-11-11 09:05:12 -0800,1395,4240 +6138,810,2013-11-06 16:16:41 -0800,1395,4241 +6139,1466,2013-11-06 08:45:49 -0800,1395,4241 +6140,3878,2013-11-06 20:20:36 -0800,1395,4237 +6141,3020,2013-11-13 08:16:00 -0800,1396,4244 +6142,4880,2013-11-06 20:39:05 -0800,1396,4243 +6143,4730,2013-11-06 10:47:49 -0800,1396,4242 +6144,8521,2013-11-12 20:37:36 -0800,1396,4243 +6145,8137,2013-11-08 03:50:47 -0800,1396,4243 +6146,2266,2013-11-12 09:15:26 -0800,1396,4242 +6147,7612,2013-11-13 01:22:36 -0800,1397,4245 +6148,5375,2013-11-13 06:35:35 -0800,1397,4245 +6149,8614,2013-11-09 23:39:40 -0800,1397,4246 +6150,5693,2013-11-10 04:22:12 -0800,1397,4245 +6151,8198,2013-11-06 14:30:42 -0800,1397,4245 +6152,6989,2013-11-10 16:55:29 -0800,1398,4248 +6153,7362,2013-11-09 11:56:02 -0800,1399,4251 +6154,5413,2013-11-10 13:03:03 -0800,1399,4253 +6155,5543,2013-11-08 16:51:20 -0800,1399,4253 +6156,2571,2013-11-07 10:08:23 -0800,1399,4254 +6157,5049,2013-11-11 21:21:33 -0800,1400,4255 +6158,9638,2013-11-08 20:16:30 -0800,1400,4258 +6159,2185,2013-11-08 22:57:11 -0800,1400,4255 +6160,7944,2013-11-11 03:57:51 -0800,1400,4258 +6161,8280,2013-11-10 10:33:25 -0800,1400,4255 +6162,8477,2013-11-09 16:18:53 -0800,1400,4255 +6163,6164,2013-11-09 06:14:33 -0800,1400,4256 +6164,9864,2013-11-13 07:05:00 -0800,1400,4257 +6165,8858,2013-11-06 14:22:40 -0800,1401,4262 +6166,9578,2013-11-07 22:32:14 -0800,1401,4261 +6167,129,2013-11-09 04:36:27 -0800,1401,4260 +6168,2345,2013-11-13 00:18:39 -0800,1401,4262 +6169,8551,2013-11-10 04:58:48 -0800,1402,4265 +6170,4527,2013-11-09 16:45:57 -0800,1404,4272 +6171,1348,2013-11-08 12:18:53 -0800,1404,4272 +6172,9270,2013-11-11 10:15:24 -0800,1404,4272 +6173,2783,2013-11-09 16:07:49 -0800,1404,4272 +6174,2223,2013-11-08 21:55:49 -0800,1404,4273 +6175,2046,2013-11-10 02:05:03 -0800,1404,4273 +6176,8938,2013-11-10 19:51:31 -0800,1405,4276 +6177,1541,2013-11-12 23:47:40 -0800,1405,4278 +6178,8560,2013-11-13 05:55:29 -0800,1405,4278 +6179,9549,2013-11-06 11:43:08 -0800,1405,4275 +6180,1524,2013-11-08 03:08:48 -0800,1405,4277 +6181,217,2013-11-07 04:35:00 -0800,1405,4274 +6182,1398,2013-11-12 23:19:31 -0800,1406,4279 +6183,1646,2013-11-13 03:23:55 -0800,1406,4279 +6184,2410,2013-11-08 06:29:38 -0800,1406,4279 +6185,9441,2013-11-12 19:15:52 -0800,1406,4279 +6186,7563,2013-11-08 14:18:20 -0800,1406,4279 +6187,8730,2013-11-07 02:40:57 -0800,1406,4279 +6188,8095,2013-11-12 18:44:49 -0800,1406,4279 +6189,712,2013-11-06 22:05:05 -0800,1407,4281 +6190,1845,2013-11-07 07:53:57 -0800,1407,4280 +6191,9062,2013-11-09 04:08:13 -0800,1407,4281 +6192,7088,2013-11-09 14:35:33 -0800,1407,4281 +6193,8331,2013-11-07 21:55:42 -0800,1408,4284 +6194,6241,2013-11-10 15:47:30 -0800,1408,4284 +6195,7489,2013-11-07 15:37:36 -0800,1408,4283 +6196,4936,2013-11-09 13:23:36 -0800,1408,4284 +6197,1054,2013-11-10 06:11:35 -0800,1408,4284 +6198,1655,2013-11-12 13:34:34 -0800,1409,4285 +6199,8055,2013-11-10 17:36:40 -0800,1410,4286 +6200,9256,2013-11-12 15:33:05 -0800,1410,4286 +6201,3039,2013-11-08 13:30:57 -0800,1410,4287 +6202,7631,2013-11-11 14:05:25 -0800,1410,4290 +6203,8694,2013-11-13 01:21:52 -0800,1410,4289 +6204,7620,2013-11-06 12:47:00 -0800,1410,4287 +6205,3796,2013-11-07 11:17:48 -0800,1410,4286 +6206,5231,2013-11-08 15:16:24 -0800,1411,4295 +6207,8889,2013-11-10 02:24:44 -0800,1411,4291 +6208,3965,2013-11-10 05:21:41 -0800,1411,4291 +6209,3521,2013-11-10 20:22:32 -0800,1411,4294 +6210,6954,2013-11-11 02:22:27 -0800,1411,4294 +6211,8236,2013-11-10 17:13:23 -0800,1411,4295 +6212,5100,2013-11-11 05:40:15 -0800,1411,4291 +6213,6530,2013-11-11 00:31:08 -0800,1412,4296 +6214,7088,2013-11-10 16:15:11 -0800,1412,4296 +6215,3030,2013-11-11 21:39:57 -0800,1412,4296 +6216,5485,2013-11-10 10:15:09 -0800,1412,4296 +6217,8812,2013-11-10 22:45:40 -0800,1412,4296 +6218,8733,2013-11-09 07:45:56 -0800,1412,4296 +6219,2070,2013-11-13 06:38:58 -0800,1412,4296 +6220,955,2013-11-08 20:55:37 -0800,1412,4296 +6221,6594,2013-11-12 09:02:48 -0800,1413,4298 +6222,6050,2013-11-11 19:38:04 -0800,1413,4297 +6223,3474,2013-11-10 04:06:04 -0800,1413,4297 +6224,6242,2013-11-06 14:26:38 -0800,1413,4298 +6225,9265,2013-11-13 06:03:33 -0800,1413,4297 +6226,9760,2013-11-12 23:59:02 -0800,1413,4297 +6227,5811,2013-11-11 06:46:42 -0800,1413,4298 +6228,2874,2013-11-08 17:39:08 -0800,1413,4297 +6229,740,2013-11-09 09:18:08 -0800,1414,4301 +6230,3411,2013-11-10 05:21:13 -0800,1414,4301 +6231,4821,2013-11-12 03:27:40 -0800,1414,4300 +6232,4769,2013-11-11 04:44:58 -0800,1414,4301 +6233,494,2013-11-07 07:20:23 -0800,1415,4302 +6234,4641,2013-11-11 09:33:12 -0800,1415,4302 +6235,1337,2013-11-13 00:54:42 -0800,1415,4302 +6236,7559,2013-11-10 21:36:45 -0800,1415,4302 +6237,7616,2013-11-08 14:35:45 -0800,1415,4303 +6238,8168,2013-11-10 00:32:21 -0800,1416,4304 +6239,991,2013-11-06 19:19:54 -0800,1416,4304 +6240,8223,2013-11-07 12:32:30 -0800,1416,4304 +6241,9486,2013-11-09 05:16:17 -0800,1416,4304 +6242,9644,2013-11-10 19:09:34 -0800,1416,4304 +6243,7241,2013-11-06 08:41:33 -0800,1416,4304 +6244,6459,2013-11-10 19:01:41 -0800,1416,4304 +6245,4416,2013-11-10 13:26:05 -0800,1417,4305 +6246,2043,2013-11-07 00:54:13 -0800,1417,4305 +6247,3246,2013-11-11 07:38:31 -0800,1417,4306 +6248,5188,2013-11-10 06:10:40 -0800,1417,4305 +6249,7244,2013-11-08 21:02:19 -0800,1417,4305 +6250,9291,2013-11-09 02:27:34 -0800,1417,4305 +6251,9186,2013-11-12 20:57:52 -0800,1417,4305 +6252,8414,2013-11-06 14:50:47 -0800,1418,4307 +6253,2076,2013-11-09 22:02:17 -0800,1418,4307 +6254,4935,2013-11-09 00:56:32 -0800,1418,4308 +6255,4180,2013-11-11 08:06:30 -0800,1418,4307 +6256,3292,2013-11-09 06:56:54 -0800,1418,4307 +6257,8147,2013-11-11 15:22:42 -0800,1418,4308 +6258,6837,2013-11-08 02:42:09 -0800,1419,4310 +6259,9076,2013-11-11 06:11:54 -0800,1419,4309 +6260,379,2013-11-08 15:15:11 -0800,1419,4309 +6261,4115,2013-11-13 04:04:19 -0800,1419,4309 +6262,3011,2013-11-09 07:32:43 -0800,1419,4311 +6263,5693,2013-11-08 10:39:26 -0800,1419,4310 +6264,5858,2013-11-12 11:31:56 -0800,1419,4311 +6265,9690,2013-11-10 05:17:12 -0800,1420,4312 +6266,4589,2013-11-09 01:04:32 -0800,1420,4314 +6267,919,2013-11-12 12:52:38 -0800,1420,4312 +6268,7033,2013-11-10 14:06:30 -0800,1420,4314 +6269,4563,2013-11-10 12:55:39 -0800,1421,4315 +6270,7459,2013-11-06 19:57:10 -0800,1421,4315 +6271,8311,2013-11-09 21:03:39 -0800,1421,4315 +6272,9349,2013-11-11 05:32:04 -0800,1421,4315 +6273,770,2013-11-09 11:05:05 -0800,1421,4315 +6274,1616,2013-11-11 14:53:35 -0800,1421,4315 +6275,826,2013-11-10 17:12:28 -0800,1421,4315 +6276,5957,2013-11-07 22:46:52 -0800,1421,4315 +6277,4334,2013-11-10 23:53:54 -0800,1422,4317 +6278,4830,2013-11-10 03:44:02 -0800,1422,4317 +6279,6250,2013-11-11 11:43:24 -0800,1422,4317 +6280,6581,2013-11-07 14:45:29 -0800,1422,4316 +6281,7880,2013-11-07 21:30:49 -0800,1422,4317 +6282,5371,2013-11-12 03:10:34 -0800,1422,4317 +6283,9454,2013-11-07 06:51:57 -0800,1422,4316 +6284,1911,2013-11-08 18:51:02 -0800,1422,4316 +6285,4019,2013-11-06 12:54:51 -0800,1422,4318 +6286,7759,2013-11-12 07:33:12 -0800,1423,4319 +6287,3464,2013-11-12 12:30:44 -0800,1423,4319 +6288,6544,2013-11-07 18:04:07 -0800,1423,4320 +6289,6064,2013-11-06 16:13:11 -0800,1423,4320 +6290,198,2013-11-12 22:35:42 -0800,1423,4319 +6291,7266,2013-11-09 12:10:35 -0800,1423,4320 +6292,1271,2013-11-13 06:42:28 -0800,1423,4319 +6293,2133,2013-11-08 08:04:39 -0800,1423,4320 +6294,7479,2013-11-08 07:57:17 -0800,1424,4323 +6295,1751,2013-11-10 11:43:06 -0800,1424,4321 +6296,8250,2013-11-13 06:38:46 -0800,1424,4321 +6297,8884,2013-11-07 06:22:22 -0800,1424,4321 +6298,8633,2013-11-11 16:57:26 -0800,1425,4326 +6299,5438,2013-11-08 17:20:38 -0800,1425,4326 +6300,4758,2013-11-12 17:35:01 -0800,1426,4332 +6301,3460,2013-11-09 18:29:19 -0800,1426,4328 +6302,2049,2013-11-07 16:12:37 -0800,1426,4329 +6303,4850,2013-11-07 01:47:26 -0800,1426,4328 +6304,5024,2013-11-08 13:25:28 -0800,1426,4332 +6305,3410,2013-11-12 03:52:47 -0800,1426,4328 +6306,7350,2013-11-11 02:45:45 -0800,1426,4331 +6307,9081,2013-11-09 08:43:46 -0800,1426,4331 +6308,7650,2013-11-07 12:52:14 -0800,1427,4333 +6309,5485,2013-11-07 19:52:25 -0800,1427,4333 +6310,248,2013-11-11 03:23:17 -0800,1427,4334 +6311,1087,2013-11-10 02:02:04 -0800,1427,4335 +6312,6423,2013-11-08 16:03:30 -0800,1427,4334 +6313,6719,2013-11-11 22:15:20 -0800,1428,4339 +6314,4233,2013-11-08 09:58:58 -0800,1428,4339 +6315,5938,2013-11-11 11:03:35 -0800,1428,4338 +6316,3760,2013-11-11 04:39:22 -0800,1428,4338 +6317,3268,2013-11-08 05:47:19 -0800,1428,4338 +6318,2527,2013-11-09 03:34:14 -0800,1428,4339 +6319,1396,2013-11-07 07:51:39 -0800,1429,4341 +6320,2063,2013-11-07 05:31:11 -0800,1429,4341 +6321,6352,2013-11-10 19:30:44 -0800,1429,4340 +6322,9028,2013-11-10 11:38:50 -0800,1429,4340 +6323,7617,2013-11-06 11:49:05 -0800,1429,4341 +6324,9158,2013-11-10 15:05:10 -0800,1429,4341 +6325,500,2013-11-11 00:16:02 -0800,1429,4341 +6326,396,2013-11-12 02:37:55 -0800,1429,4341 +6327,5821,2013-11-08 13:15:49 -0800,1429,4340 +6328,4784,2013-11-12 11:06:50 -0800,1430,4342 +6329,660,2013-11-10 16:12:37 -0800,1430,4343 +6330,2270,2013-11-07 13:51:42 -0800,1430,4343 +6331,5880,2013-11-06 11:27:35 -0800,1430,4342 +6332,351,2013-11-10 09:16:41 -0800,1430,4343 +6333,1181,2013-11-10 19:42:15 -0800,1430,4343 +6334,2753,2013-11-11 09:32:03 -0800,1430,4342 +6335,7125,2013-11-07 14:56:23 -0800,1430,4342 +6336,7852,2013-11-12 16:47:09 -0800,1430,4342 +6337,1657,2013-11-08 09:05:31 -0800,1431,4344 +6338,5694,2013-11-11 20:39:37 -0800,1431,4344 +6339,7498,2013-11-07 15:48:01 -0800,1431,4345 +6340,5865,2013-11-07 00:59:44 -0800,1431,4344 +6341,8962,2013-11-09 05:28:27 -0800,1431,4345 +6342,9625,2013-11-11 01:56:10 -0800,1431,4345 +6343,9526,2013-11-06 23:51:50 -0800,1431,4345 +6344,6770,2013-11-11 04:34:26 -0800,1431,4344 +6345,7930,2013-11-10 03:06:57 -0800,1432,4346 +6346,8916,2013-11-12 03:29:10 -0800,1432,4346 +6347,1972,2013-11-08 22:29:14 -0800,1432,4346 +6348,3457,2013-11-09 02:12:50 -0800,1432,4346 +6349,2988,2013-11-08 08:32:02 -0800,1432,4346 +6350,5147,2013-11-07 21:59:12 -0800,1433,4348 +6351,5142,2013-11-06 22:20:40 -0800,1433,4347 +6352,4836,2013-11-10 12:54:17 -0800,1433,4348 +6353,299,2013-11-10 06:52:28 -0800,1433,4348 +6354,9824,2013-11-12 16:46:14 -0800,1433,4347 +6355,2521,2013-11-12 13:23:03 -0800,1434,4349 +6356,4987,2013-11-07 13:37:50 -0800,1434,4349 +6357,5136,2013-11-10 13:54:53 -0800,1435,4354 +6358,3300,2013-11-12 07:52:42 -0800,1435,4353 +6359,1714,2013-11-06 17:15:23 -0800,1435,4352 +6360,9287,2013-11-06 19:07:58 -0800,1435,4352 +6361,7186,2013-11-08 08:30:37 -0800,1435,4354 +6362,757,2013-11-12 23:06:46 -0800,1435,4353 +6363,2452,2013-11-12 22:48:10 -0800,1435,4354 +6364,6379,2013-11-10 00:32:48 -0800,1436,4355 +6365,1067,2013-11-10 22:20:43 -0800,1436,4355 +6366,9210,2013-11-08 12:58:22 -0800,1436,4357 +6367,4240,2013-11-08 11:34:57 -0800,1436,4359 +6368,7109,2013-11-10 21:58:03 -0800,1437,4360 +6369,5153,2013-11-12 17:42:09 -0800,1437,4361 +6370,7265,2013-11-12 02:55:06 -0800,1437,4360 +6371,9317,2013-11-08 22:14:35 -0800,1437,4361 +6372,3334,2013-11-08 14:40:04 -0800,1439,4365 +6373,574,2013-11-07 21:32:14 -0800,1439,4364 +6374,2418,2013-11-13 04:25:49 -0800,1439,4366 +6375,1595,2013-11-13 02:28:09 -0800,1439,4363 +6376,4281,2013-11-10 10:03:32 -0800,1439,4366 +6377,898,2013-11-11 03:06:07 -0800,1439,4366 +6378,4791,2013-11-09 15:43:31 -0800,1442,4379 +6379,8232,2013-11-12 15:16:02 -0800,1442,4378 +6380,6783,2013-11-09 22:03:29 -0800,1442,4378 +6381,4382,2013-11-06 09:03:32 -0800,1442,4377 +6382,9215,2013-11-10 01:35:10 -0800,1442,4377 +6383,7694,2013-11-10 21:59:45 -0800,1442,4377 +6384,7698,2013-11-10 02:02:58 -0800,1442,4378 +6385,2142,2013-11-07 04:44:01 -0800,1442,4378 +6386,7461,2013-11-09 10:26:41 -0800,1443,4382 +6387,4575,2013-11-06 22:36:51 -0800,1443,4383 +6388,1227,2013-11-10 10:07:50 -0800,1443,4381 +6389,2378,2013-11-12 02:20:47 -0800,1443,4383 +6390,3344,2013-11-07 05:04:06 -0800,1443,4382 +6391,758,2013-11-09 21:36:26 -0800,1443,4381 +6392,2174,2013-11-09 22:43:54 -0800,1444,4390 +6393,4320,2013-11-07 22:03:01 -0800,1444,4390 +6394,5260,2013-11-09 21:56:33 -0800,1444,4389 +6395,8134,2013-11-09 05:59:00 -0800,1444,4389 +6396,1329,2013-11-10 23:59:22 -0800,1444,4386 +6397,1257,2013-11-12 17:11:19 -0800,1445,4393 +6398,8814,2013-11-11 18:14:50 -0800,1445,4392 +6399,3081,2013-11-12 06:30:46 -0800,1445,4393 +6400,629,2013-11-06 13:40:40 -0800,1445,4394 +6401,6961,2013-11-06 17:47:15 -0800,1445,4391 +6402,6334,2013-11-06 21:36:33 -0800,1445,4394 +6403,1919,2013-11-12 16:38:08 -0800,1445,4392 +6404,1632,2013-11-12 00:31:52 -0800,1446,4395 +6405,2699,2013-11-13 06:56:10 -0800,1446,4395 +6406,910,2013-11-13 06:28:53 -0800,1446,4395 +6407,3429,2013-11-10 02:15:38 -0800,1446,4395 +6408,572,2013-11-07 22:43:53 -0800,1446,4395 +6409,6647,2013-11-08 06:55:20 -0800,1446,4395 +6410,8061,2013-11-08 15:41:08 -0800,1447,4397 +6411,6894,2013-11-10 16:36:59 -0800,1447,4397 +6412,7156,2013-11-10 22:45:08 -0800,1447,4398 +6413,4164,2013-11-11 02:21:47 -0800,1447,4398 +6414,3565,2013-11-10 09:14:38 -0800,1447,4398 +6415,89,2013-11-08 06:04:31 -0800,1447,4397 +6416,6856,2013-11-10 09:56:05 -0800,1448,4403 +6417,8271,2013-11-10 09:24:50 -0800,1448,4403 +6418,6239,2013-11-11 02:23:56 -0800,1448,4399 +6419,4345,2013-11-09 05:06:05 -0800,1448,4401 +6420,2569,2013-11-10 05:54:11 -0800,1448,4401 +6421,6476,2013-11-07 03:27:32 -0800,1449,4406 +6422,1169,2013-11-11 20:09:39 -0800,1449,4405 +6423,6998,2013-11-12 18:21:10 -0800,1449,4407 +6424,5859,2013-11-10 03:49:26 -0800,1449,4406 +6425,6244,2013-11-06 20:58:53 -0800,1449,4407 +6426,2830,2013-11-13 01:54:14 -0800,1450,4408 +6427,8443,2013-11-10 22:32:19 -0800,1450,4408 +6428,5195,2013-11-07 20:33:27 -0800,1450,4408 +6429,5631,2013-11-09 12:22:55 -0800,1450,4408 +6430,7022,2013-11-06 16:05:45 -0800,1450,4408 +6431,4417,2013-11-08 01:00:09 -0800,1450,4408 +6432,2244,2013-11-06 22:28:05 -0800,1450,4408 +6433,572,2013-11-08 20:40:53 -0800,1451,4409 +6434,7143,2013-11-13 04:05:11 -0800,1451,4409 +6435,4111,2013-11-12 07:39:00 -0800,1451,4409 +6436,4255,2013-11-13 05:57:27 -0800,1451,4409 +6437,7473,2013-11-08 11:18:54 -0800,1451,4409 +6438,7334,2013-11-08 20:16:53 -0800,1451,4410 +6439,6484,2013-11-09 22:21:01 -0800,1451,4409 +6440,5893,2013-11-11 15:24:07 -0800,1452,4411 +6441,1371,2013-11-12 04:14:05 -0800,1452,4412 +6442,4472,2013-11-07 08:14:14 -0800,1452,4412 +6443,2567,2013-11-06 17:34:55 -0800,1452,4414 +6444,6620,2013-11-06 11:19:01 -0800,1452,4412 +6445,4730,2013-11-09 12:30:35 -0800,1452,4413 +6446,7091,2013-11-11 09:05:16 -0800,1452,4414 +6447,8269,2013-11-10 00:57:51 -0800,1453,4415 +6448,2554,2013-11-10 17:08:23 -0800,1453,4415 +6449,5082,2013-11-11 21:08:27 -0800,1453,4415 +6450,2846,2013-11-09 16:42:29 -0800,1453,4415 +6451,3292,2013-11-09 10:58:07 -0800,1453,4415 +6452,3834,2013-11-06 21:14:28 -0800,1454,4417 +6453,6786,2013-11-07 01:19:08 -0800,1454,4419 +6454,6447,2013-11-10 20:40:18 -0800,1454,4418 +6455,6420,2013-11-07 13:00:29 -0800,1454,4416 +6456,2046,2013-11-12 18:48:46 -0800,1454,4419 +6457,8300,2013-11-08 23:42:49 -0800,1454,4419 +6458,9357,2013-11-09 09:24:17 -0800,1454,4417 +6459,5295,2013-11-07 20:21:18 -0800,1456,4429 +6460,9885,2013-11-08 10:47:29 -0800,1456,4428 +6461,9797,2013-11-12 11:42:55 -0800,1457,4430 +6462,9430,2013-11-12 20:45:50 -0800,1457,4430 +6463,524,2013-11-11 04:07:29 -0800,1459,4438 +6464,7173,2013-11-06 20:24:45 -0800,1459,4438 +6465,9511,2013-11-12 23:24:44 -0800,1459,4438 +6466,4565,2013-11-07 09:04:00 -0800,1459,4436 +6467,5341,2013-11-11 00:11:55 -0800,1459,4437 +6468,2531,2013-11-08 00:56:36 -0800,1459,4437 +6469,8774,2013-11-08 15:20:47 -0800,1459,4438 +6470,6869,2013-11-11 04:07:32 -0800,1459,4437 +6471,5280,2013-11-09 11:37:29 -0800,1460,4439 +6472,7211,2013-11-10 16:13:59 -0800,1460,4439 +6473,3828,2013-11-08 11:06:46 -0800,1460,4439 +6474,3797,2013-11-10 05:09:18 -0800,1460,4439 +6475,2424,2013-11-12 02:16:54 -0800,1461,4442 +6476,9230,2013-11-09 07:14:19 -0800,1461,4443 +6477,5154,2013-11-10 01:20:13 -0800,1461,4443 +6478,2922,2013-11-12 07:44:02 -0800,1462,4445 +6479,8591,2013-11-10 13:46:28 -0800,1462,4445 +6480,8816,2013-11-10 22:48:39 -0800,1462,4447 +6481,1327,2013-11-10 01:13:24 -0800,1462,4446 +6482,8563,2013-11-08 22:34:26 -0800,1462,4447 +6483,6611,2013-11-11 19:56:00 -0800,1462,4445 +6484,9478,2013-11-06 10:20:56 -0800,1462,4445 +6485,4991,2013-11-11 04:05:41 -0800,1462,4447 +6486,2180,2013-11-12 18:30:59 -0800,1462,4447 +6487,2872,2013-11-10 19:15:17 -0800,1463,4448 +6488,2493,2013-11-09 00:25:08 -0800,1463,4448 +6489,9331,2013-11-11 18:24:28 -0800,1463,4448 +6490,1898,2013-11-06 23:46:44 -0800,1464,4449 +6491,4615,2013-11-09 17:46:20 -0800,1464,4449 +6492,3336,2013-11-06 10:50:45 -0800,1464,4449 +6493,7741,2013-11-13 01:39:00 -0800,1464,4449 +6494,9029,2013-11-08 01:47:21 -0800,1464,4449 +6495,4896,2013-11-09 11:35:46 -0800,1465,4450 +6496,4116,2013-11-09 17:45:40 -0800,1465,4450 +6497,6852,2013-11-12 01:33:57 -0800,1465,4451 +6498,3693,2013-11-11 22:39:38 -0800,1465,4450 +6499,766,2013-11-08 11:17:02 -0800,1465,4452 +6500,4290,2013-11-11 12:15:42 -0800,1465,4451 +6501,6451,2013-11-11 08:51:14 -0800,1466,4454 +6502,6038,2013-11-12 10:41:58 -0800,1466,4454 +6503,1411,2013-11-08 17:06:37 -0800,1466,4453 +6504,6070,2013-11-11 17:42:09 -0800,1466,4454 +6505,6116,2013-11-12 22:56:48 -0800,1466,4454 +6506,8090,2013-11-07 06:08:42 -0800,1466,4453 +6507,8022,2013-11-13 07:03:09 -0800,1466,4453 +6508,213,2013-11-07 03:59:22 -0800,1466,4453 +6509,8069,2013-11-06 15:27:51 -0800,1467,4456 +6510,3434,2013-11-07 18:49:35 -0800,1467,4455 +6511,8188,2013-11-07 23:36:20 -0800,1467,4457 +6512,9785,2013-11-11 17:31:00 -0800,1467,4455 +6513,27,2013-11-11 11:49:32 -0800,1467,4458 +6514,8845,2013-11-06 11:51:22 -0800,1467,4456 +6515,3274,2013-11-06 09:32:10 -0800,1468,4460 +6516,2231,2013-11-06 20:43:08 -0800,1468,4460 +6517,2371,2013-11-10 15:39:30 -0800,1468,4460 +6518,4486,2013-11-13 08:02:27 -0800,1468,4460 +6519,3910,2013-11-09 22:17:23 -0800,1468,4460 +6520,7854,2013-11-07 01:07:29 -0800,1468,4460 +6521,210,2013-11-11 01:58:35 -0800,1469,4461 +6522,3354,2013-11-09 03:13:25 -0800,1469,4461 +6523,7254,2013-11-08 23:43:19 -0800,1469,4462 +6524,259,2013-11-11 15:32:15 -0800,1469,4461 +6525,2357,2013-11-10 10:25:00 -0800,1469,4461 +6526,8552,2013-11-09 02:00:22 -0800,1469,4461 +6527,3232,2013-11-09 09:14:02 -0800,1469,4461 +6528,9685,2013-11-08 13:03:46 -0800,1469,4462 +6529,278,2013-11-07 03:32:32 -0800,1470,4463 +6530,6927,2013-11-13 05:18:47 -0800,1471,4465 +6531,1389,2013-11-07 06:41:56 -0800,1471,4465 +6532,2578,2013-11-06 22:45:46 -0800,1471,4467 +6533,3390,2013-11-10 08:40:04 -0800,1471,4467 +6534,218,2013-11-13 01:46:18 -0800,1471,4467 +6535,3252,2013-11-11 00:04:17 -0800,1471,4466 +6536,2271,2013-11-10 05:55:35 -0800,1472,4469 +6537,3981,2013-11-07 12:17:39 -0800,1472,4470 +6538,5488,2013-11-10 08:06:07 -0800,1472,4468 +6539,1332,2013-11-13 06:34:20 -0800,1472,4469 +6540,6420,2013-11-08 21:48:14 -0800,1472,4471 +6541,3168,2013-11-09 07:57:11 -0800,1472,4468 +6542,5881,2013-11-10 09:19:16 -0800,1473,4472 +6543,7319,2013-11-12 16:00:25 -0800,1473,4472 +6544,7050,2013-11-07 03:21:26 -0800,1473,4472 +6545,799,2013-11-08 09:59:48 -0800,1473,4472 +6546,2215,2013-11-07 14:03:57 -0800,1473,4472 +6547,7754,2013-11-07 13:23:25 -0800,1473,4472 +6548,1471,2013-11-08 00:29:41 -0800,1473,4472 +6549,6322,2013-11-06 17:00:55 -0800,1474,4477 +6550,4672,2013-11-07 17:45:30 -0800,1474,4476 +6551,9221,2013-11-09 21:54:27 -0800,1474,4475 +6552,8518,2013-11-07 10:26:27 -0800,1474,4477 +6553,7009,2013-11-12 02:41:48 -0800,1474,4477 +6554,2940,2013-11-07 20:41:02 -0800,1474,4473 +6555,5670,2013-11-08 01:08:04 -0800,1475,4479 +6556,4226,2013-11-06 10:51:26 -0800,1476,4482 +6557,2065,2013-11-06 12:49:40 -0800,1476,4480 +6558,5150,2013-11-11 12:46:45 -0800,1476,4481 +6559,1116,2013-11-12 10:47:02 -0800,1476,4480 +6560,8184,2013-11-10 10:05:52 -0800,1477,4486 +6561,2234,2013-11-13 01:08:56 -0800,1478,4487 +6562,4881,2013-11-09 10:11:29 -0800,1478,4487 +6563,4394,2013-11-08 19:43:25 -0800,1479,4489 +6564,5575,2013-11-10 14:38:45 -0800,1479,4489 +6565,9359,2013-11-11 05:48:06 -0800,1479,4489 +6566,7343,2013-11-08 16:35:41 -0800,1479,4490 +6567,1170,2013-11-10 04:01:33 -0800,1479,4490 +6568,2359,2013-11-10 17:03:56 -0800,1480,4493 +6569,5910,2013-11-08 21:06:33 -0800,1480,4494 +6570,4050,2013-11-10 18:46:38 -0800,1480,4494 +6571,1992,2013-11-06 19:10:18 -0800,1480,4492 +6572,333,2013-11-13 03:00:24 -0800,1481,4497 +6573,3565,2013-11-07 13:46:15 -0800,1481,4497 +6574,8261,2013-11-12 00:34:53 -0800,1482,4499 +6575,622,2013-11-10 05:03:24 -0800,1482,4501 +6576,7244,2013-11-06 12:01:22 -0800,1482,4500 +6577,6042,2013-11-10 20:12:17 -0800,1482,4501 +6578,1350,2013-11-08 17:32:31 -0800,1483,4502 +6579,9183,2013-11-12 22:49:40 -0800,1483,4502 +6580,6281,2013-11-11 20:14:58 -0800,1483,4502 +6581,1830,2013-11-12 09:37:27 -0800,1483,4502 +6582,6620,2013-11-09 19:06:39 -0800,1483,4503 +6583,4145,2013-11-12 21:22:16 -0800,1483,4502 +6584,6670,2013-11-08 18:55:58 -0800,1484,4504 +6585,3191,2013-11-09 00:13:56 -0800,1484,4504 +6586,8739,2013-11-12 02:59:43 -0800,1485,4506 +6587,5092,2013-11-07 06:34:41 -0800,1485,4507 +6588,6527,2013-11-12 06:06:11 -0800,1486,4511 +6589,6765,2013-11-12 14:49:47 -0800,1486,4510 +6590,488,2013-11-12 14:33:50 -0800,1486,4510 +6591,3079,2013-11-06 16:12:48 -0800,1486,4510 +6592,4429,2013-11-07 11:43:04 -0800,1486,4511 +6593,8333,2013-11-12 22:09:01 -0800,1486,4511 +6594,4546,2013-11-07 18:06:45 -0800,1486,4509 +6595,8211,2013-11-09 20:28:47 -0800,1486,4508 +6596,818,2013-11-10 16:25:30 -0800,1487,4512 +6597,6631,2013-11-07 17:50:18 -0800,1487,4512 +6598,7288,2013-11-09 13:05:55 -0800,1487,4512 +6599,3786,2013-11-13 07:47:25 -0800,1487,4512 +6600,5930,2013-11-12 07:21:25 -0800,1487,4512 +6601,1730,2013-11-12 15:24:43 -0800,1487,4512 +6602,5625,2013-11-08 21:40:54 -0800,1487,4512 +6603,3844,2013-11-07 00:19:16 -0800,1487,4512 +6604,4485,2013-11-08 18:49:51 -0800,1487,4512 +6605,6763,2013-11-10 12:50:27 -0800,1488,4516 +6606,6581,2013-11-11 03:16:10 -0800,1488,4514 +6607,2926,2013-11-06 18:46:39 -0800,1489,4517 +6608,151,2013-11-08 06:29:05 -0800,1489,4517 +6609,8971,2013-11-08 23:57:01 -0800,1489,4517 +6610,3140,2013-11-09 19:34:06 -0800,1489,4517 +6611,4429,2013-11-09 03:18:42 -0800,1489,4517 +6612,4420,2013-11-09 06:16:22 -0800,1489,4517 +6613,4970,2013-11-10 12:21:22 -0800,1489,4517 +6614,5669,2013-11-10 00:31:00 -0800,1489,4517 +6615,4897,2013-11-08 19:49:32 -0800,1489,4517 +6616,8217,2013-11-07 05:26:28 -0800,1490,4518 +6617,6509,2013-11-06 22:26:36 -0800,1490,4521 +6618,8825,2013-11-11 20:39:31 -0800,1490,4522 +6619,6611,2013-11-13 05:47:05 -0800,1490,4522 +6620,9870,2013-11-07 19:22:00 -0800,1490,4520 +6621,69,2013-11-13 08:08:04 -0800,1490,4520 +6622,6016,2013-11-10 12:32:12 -0800,1490,4519 +6623,7880,2013-11-08 22:11:31 -0800,1490,4519 +6624,4840,2013-11-08 22:35:11 -0800,1491,4526 +6625,7172,2013-11-13 02:09:13 -0800,1491,4525 +6626,8289,2013-11-10 20:44:17 -0800,1491,4524 +6627,9046,2013-11-12 06:39:32 -0800,1491,4526 +6628,7380,2013-11-13 06:10:48 -0800,1491,4523 +6629,9635,2013-11-09 20:59:03 -0800,1493,4532 +6630,4986,2013-11-11 13:47:07 -0800,1494,4537 +6631,7352,2013-11-12 01:51:31 -0800,1495,4538 +6632,1531,2013-11-13 04:51:03 -0800,1495,4538 +6633,2379,2013-11-12 12:26:12 -0800,1495,4538 +6634,7753,2013-11-09 02:17:47 -0800,1495,4538 +6635,8126,2013-11-10 12:20:38 -0800,1495,4538 +6636,1816,2013-11-09 22:00:58 -0800,1495,4538 +6637,8521,2013-11-12 01:10:27 -0800,1495,4538 +6638,3744,2013-11-12 07:45:48 -0800,1496,4541 +6639,8712,2013-11-10 20:25:35 -0800,1497,4543 +6640,448,2013-11-10 04:36:50 -0800,1497,4543 +6641,3718,2013-11-10 10:51:53 -0800,1497,4543 +6642,3836,2013-11-11 10:15:24 -0800,1497,4543 +6643,2318,2013-11-06 12:23:30 -0800,1497,4543 +6644,5264,2013-11-08 13:05:36 -0800,1497,4543 +6645,3261,2013-11-07 11:37:31 -0800,1497,4543 +6646,4170,2013-11-08 11:38:14 -0800,1498,4545 +6647,4130,2013-11-08 18:18:11 -0800,1498,4544 +6648,9660,2013-11-13 07:47:18 -0800,1498,4547 +6649,1330,2013-11-11 08:08:55 -0800,1499,4549 +6650,7859,2013-11-11 22:35:38 -0800,1500,4551 +6651,28,2013-11-12 09:22:45 -0800,1500,4551 +6652,392,2013-11-06 15:34:47 -0800,1500,4551 +6653,3699,2013-11-06 13:37:43 -0800,1500,4551 +6654,7776,2013-11-11 13:25:55 -0800,1500,4551 +6655,2419,2013-11-08 22:18:35 -0800,1500,4551 +6656,3992,2013-11-10 20:11:43 -0800,1500,4551 +6657,2310,2013-11-07 17:27:19 -0800,1500,4551 +6658,6376,2013-11-08 01:08:54 -0800,1500,4551 +6659,761,2013-11-07 20:28:46 -0800,1501,4552 +6660,4650,2013-11-06 15:32:52 -0800,1501,4552 +6661,133,2013-11-09 10:49:59 -0800,1501,4552 +6662,9052,2013-11-12 15:05:04 -0800,1503,4556 +6663,9248,2013-11-09 03:26:16 -0800,1503,4556 +6664,3247,2013-11-12 03:47:26 -0800,1503,4556 +6665,5125,2013-11-11 22:06:13 -0800,1503,4557 +6666,2270,2013-11-06 19:37:24 -0800,1503,4557 +6667,4594,2013-11-10 01:41:36 -0800,1504,4558 +6668,8531,2013-11-10 20:29:25 -0800,1504,4558 +6669,7027,2013-11-08 01:58:43 -0800,1504,4558 +6670,6470,2013-11-07 08:13:03 -0800,1505,4563 +6671,9620,2013-11-07 10:10:29 -0800,1505,4561 +6672,7347,2013-11-12 11:41:17 -0800,1505,4561 +6673,2800,2013-11-07 21:06:06 -0800,1505,4561 +6674,2511,2013-11-06 09:38:09 -0800,1505,4561 +6675,4818,2013-11-09 02:10:40 -0800,1506,4564 +6676,5453,2013-11-08 22:12:10 -0800,1506,4564 +6677,3060,2013-11-12 02:05:02 -0800,1506,4564 +6678,9196,2013-11-06 13:22:20 -0800,1506,4564 +6679,2512,2013-11-11 21:49:24 -0800,1506,4564 +6680,191,2013-11-09 14:05:23 -0800,1506,4564 +6681,1349,2013-11-11 15:56:52 -0800,1506,4564 +6682,56,2013-11-12 05:13:31 -0800,1507,4566 +6683,3595,2013-11-08 09:55:42 -0800,1507,4565 +6684,277,2013-11-08 02:52:54 -0800,1507,4567 +6685,1220,2013-11-12 17:44:42 -0800,1507,4565 +6686,897,2013-11-13 00:13:18 -0800,1507,4566 +6687,7361,2013-11-12 22:55:14 -0800,1507,4567 +6688,880,2013-11-11 06:37:45 -0800,1507,4565 +6689,5946,2013-11-07 21:31:41 -0800,1507,4565 +6690,5776,2013-11-07 07:19:10 -0800,1507,4567 +6691,5740,2013-11-12 21:06:06 -0800,1508,4569 +6692,1843,2013-11-12 11:36:19 -0800,1508,4568 +6693,8009,2013-11-09 09:10:38 -0800,1509,4570 +6694,3354,2013-11-09 11:40:46 -0800,1509,4571 +6695,6060,2013-11-07 00:36:55 -0800,1509,4571 +6696,2872,2013-11-07 01:06:26 -0800,1509,4570 +6697,3942,2013-11-09 19:00:27 -0800,1509,4570 +6698,3771,2013-11-07 07:08:07 -0800,1509,4570 +6699,790,2013-11-09 06:32:32 -0800,1510,4572 +6700,46,2013-11-06 21:03:03 -0800,1510,4572 +6701,5383,2013-11-09 17:50:30 -0800,1510,4572 +6702,4388,2013-11-10 21:59:55 -0800,1510,4572 +6703,7423,2013-11-07 02:38:30 -0800,1510,4572 +6704,2029,2013-11-07 04:15:47 -0800,1510,4572 +6705,4221,2013-11-12 04:22:57 -0800,1510,4572 +6706,3857,2013-11-12 09:04:56 -0800,1510,4572 +6707,3979,2013-11-09 01:47:57 -0800,1511,4576 +6708,1967,2013-11-11 12:04:43 -0800,1511,4577 +6709,6916,2013-11-11 12:12:26 -0800,1511,4574 +6710,4269,2013-11-12 22:30:37 -0800,1511,4574 +6711,8492,2013-11-12 05:38:14 -0800,1511,4574 +6712,710,2013-11-12 08:23:27 -0800,1512,4578 +6713,3574,2013-11-11 14:10:33 -0800,1512,4581 +6714,1243,2013-11-12 22:37:12 -0800,1512,4580 +6715,4861,2013-11-11 06:27:23 -0800,1512,4582 +6716,960,2013-11-06 14:55:25 -0800,1512,4581 +6717,9385,2013-11-11 20:39:44 -0800,1512,4578 +6718,3813,2013-11-08 06:49:47 -0800,1512,4581 +6719,8682,2013-11-07 12:36:32 -0800,1512,4579 +6720,7154,2013-11-12 06:59:38 -0800,1513,4583 +6721,8840,2013-11-07 08:23:53 -0800,1513,4583 +6722,4089,2013-11-10 21:33:51 -0800,1514,4585 +6723,177,2013-11-07 14:16:46 -0800,1514,4586 +6724,9329,2013-11-08 20:45:06 -0800,1515,4587 +6725,2535,2013-11-10 23:56:14 -0800,1515,4587 +6726,7117,2013-11-07 04:53:52 -0800,1515,4589 +6727,7298,2013-11-07 05:01:26 -0800,1515,4587 +6728,4094,2013-11-12 19:51:21 -0800,1515,4587 +6729,799,2013-11-11 11:30:37 -0800,1516,4590 +6730,7650,2013-11-07 06:16:54 -0800,1516,4591 +6731,959,2013-11-07 10:16:21 -0800,1516,4590 +6732,568,2013-11-10 07:38:55 -0800,1516,4590 +6733,1163,2013-11-08 23:16:53 -0800,1516,4593 +6734,6668,2013-11-11 03:50:30 -0800,1516,4593 +6735,2889,2013-11-06 18:24:34 -0800,1516,4592 +6736,2679,2013-11-09 15:11:34 -0800,1517,4596 +6737,3465,2013-11-08 06:17:24 -0800,1517,4594 +6738,5191,2013-11-10 21:07:17 -0800,1517,4594 +6739,6539,2013-11-11 12:36:09 -0800,1518,4601 +6740,1650,2013-11-12 06:22:21 -0800,1518,4601 +6741,4569,2013-11-08 04:48:17 -0800,1518,4599 +6742,4252,2013-11-10 18:51:17 -0800,1518,4600 +6743,5793,2013-11-06 11:23:15 -0800,1518,4601 +6744,5466,2013-11-06 23:21:35 -0800,1518,4599 +6745,7266,2013-11-12 00:27:46 -0800,1519,4602 +6746,6249,2013-11-08 21:04:11 -0800,1519,4602 +6747,7898,2013-11-09 01:15:32 -0800,1519,4602 +6748,5374,2013-11-09 04:39:16 -0800,1519,4602 +6749,9445,2013-11-11 20:07:56 -0800,1519,4602 +6750,420,2013-11-11 18:42:29 -0800,1519,4602 +6751,7667,2013-11-10 12:03:42 -0800,1519,4602 +6752,6439,2013-11-10 07:27:33 -0800,1519,4602 +6753,4099,2013-11-07 15:05:34 -0800,1520,4603 +6754,2084,2013-11-11 14:25:50 -0800,1520,4603 +6755,823,2013-11-06 22:42:48 -0800,1520,4605 +6756,2248,2013-11-10 23:44:09 -0800,1520,4604 +6757,4596,2013-11-06 17:56:40 -0800,1520,4603 +6758,2728,2013-11-10 12:38:09 -0800,1520,4603 +6759,4142,2013-11-12 09:08:33 -0800,1520,4603 +6760,8040,2013-11-10 16:08:37 -0800,1520,4605 +6761,3710,2013-11-08 01:13:26 -0800,1522,4609 +6762,50,2013-11-07 09:17:12 -0800,1522,4609 +6763,3736,2013-11-09 20:23:30 -0800,1522,4609 +6764,219,2013-11-12 00:41:31 -0800,1522,4608 +6765,4137,2013-11-12 09:02:46 -0800,1522,4609 +6766,6350,2013-11-08 09:19:23 -0800,1522,4608 +6767,429,2013-11-10 09:59:44 -0800,1522,4609 +6768,1680,2013-11-09 02:20:24 -0800,1522,4610 +6769,5167,2013-11-10 16:59:31 -0800,1523,4611 +6770,9273,2013-11-11 16:25:51 -0800,1523,4611 +6771,3568,2013-11-10 01:33:32 -0800,1523,4611 +6772,622,2013-11-06 11:56:12 -0800,1523,4611 +6773,6294,2013-11-09 03:49:59 -0800,1523,4611 +6774,6184,2013-11-12 11:59:25 -0800,1523,4611 +6775,7129,2013-11-11 06:55:43 -0800,1523,4611 +6776,5258,2013-11-06 20:31:56 -0800,1524,4612 +6777,3286,2013-11-08 04:21:16 -0800,1524,4612 +6778,3059,2013-11-13 07:09:34 -0800,1524,4612 +6779,3838,2013-11-11 03:26:29 -0800,1524,4612 +6780,146,2013-11-10 08:33:29 -0800,1524,4612 +6781,1136,2013-11-12 18:25:25 -0800,1524,4612 +6782,4398,2013-11-11 06:06:39 -0800,1525,4614 +6783,9859,2013-11-08 23:10:25 -0800,1525,4613 +6784,2932,2013-11-11 09:30:31 -0800,1525,4614 +6785,9583,2013-11-06 12:59:34 -0800,1525,4613 +6786,2726,2013-11-09 16:38:35 -0800,1525,4614 +6787,5469,2013-11-09 07:27:17 -0800,1525,4614 +6788,4040,2013-11-07 02:36:08 -0800,1525,4613 +6789,5660,2013-11-08 23:02:13 -0800,1525,4614 +6790,6377,2013-11-07 22:15:48 -0800,1526,4615 +6791,8081,2013-11-07 06:40:52 -0800,1526,4615 +6792,9432,2013-11-08 12:32:24 -0800,1526,4615 +6793,8950,2013-11-08 04:45:27 -0800,1526,4615 +6794,6277,2013-11-07 09:28:43 -0800,1526,4615 +6795,5515,2013-11-11 22:49:05 -0800,1527,4616 +6796,8039,2013-11-09 19:58:25 -0800,1527,4617 +6797,9565,2013-11-07 05:51:35 -0800,1527,4617 +6798,5350,2013-11-06 14:25:34 -0800,1527,4616 +6799,2265,2013-11-07 15:29:39 -0800,1527,4616 +6800,5765,2013-11-07 03:18:51 -0800,1527,4616 +6801,5263,2013-11-10 05:43:27 -0800,1527,4616 +6802,5436,2013-11-08 23:11:38 -0800,1528,4619 +6803,6491,2013-11-11 20:31:48 -0800,1528,4619 +6804,8838,2013-11-07 13:34:11 -0800,1528,4619 +6805,9417,2013-11-07 08:22:07 -0800,1528,4618 +6806,9058,2013-11-11 06:55:15 -0800,1528,4618 +6807,6773,2013-11-06 23:07:43 -0800,1528,4619 +6808,1953,2013-11-09 20:26:55 -0800,1528,4618 +6809,3964,2013-11-12 11:50:59 -0800,1528,4618 +6810,3472,2013-11-12 20:14:13 -0800,1528,4619 +6811,8590,2013-11-11 07:39:28 -0800,1529,4621 +6812,5989,2013-11-06 11:57:11 -0800,1529,4620 +6813,9759,2013-11-11 03:33:02 -0800,1529,4622 +6814,9096,2013-11-10 03:35:07 -0800,1529,4622 +6815,6664,2013-11-09 10:32:41 -0800,1529,4621 +6816,3570,2013-11-10 16:28:57 -0800,1529,4621 +6817,1375,2013-11-09 04:26:13 -0800,1529,4622 +6818,4195,2013-11-11 16:37:02 -0800,1529,4622 +6819,7536,2013-11-11 12:34:39 -0800,1530,4625 +6820,5230,2013-11-08 20:24:55 -0800,1530,4624 +6821,2428,2013-11-13 00:00:52 -0800,1531,4628 +6822,9888,2013-11-08 07:35:12 -0800,1531,4628 +6823,3474,2013-11-06 11:26:57 -0800,1531,4629 +6824,5220,2013-11-11 09:29:26 -0800,1532,4633 +6825,364,2013-11-11 20:24:02 -0800,1532,4631 +6826,1562,2013-11-12 14:44:45 -0800,1532,4631 +6827,8152,2013-11-10 01:30:23 -0800,1533,4636 +6828,6438,2013-11-11 20:05:01 -0800,1533,4636 +6829,6820,2013-11-12 08:03:18 -0800,1533,4638 +6830,9175,2013-11-11 04:19:21 -0800,1534,4643 +6831,3800,2013-11-09 02:44:41 -0800,1534,4641 +6832,6115,2013-11-09 11:30:35 -0800,1534,4639 +6833,541,2013-11-12 00:12:56 -0800,1534,4639 +6834,8180,2013-11-12 12:44:16 -0800,1534,4642 +6835,6644,2013-11-06 17:13:05 -0800,1535,4645 +6836,1465,2013-11-12 18:35:22 -0800,1535,4647 +6837,5612,2013-11-09 05:09:06 -0800,1535,4644 +6838,1769,2013-11-11 21:13:53 -0800,1535,4646 +6839,9889,2013-11-11 04:52:30 -0800,1535,4647 +6840,6616,2013-11-06 15:08:11 -0800,1536,4648 +6841,3683,2013-11-06 11:42:43 -0800,1536,4648 +6842,4550,2013-11-06 12:37:00 -0800,1536,4648 +6843,3861,2013-11-09 17:35:22 -0800,1537,4650 +6844,6194,2013-11-10 20:46:01 -0800,1538,4655 +6845,3586,2013-11-10 22:12:39 -0800,1539,4658 +6846,8740,2013-11-10 02:54:07 -0800,1539,4662 +6847,4394,2013-11-12 16:45:14 -0800,1540,4667 +6848,8776,2013-11-10 23:43:33 -0800,1540,4665 +6849,5733,2013-11-12 12:46:27 -0800,1540,4664 +6850,3574,2013-11-13 06:04:42 -0800,1540,4667 +6851,869,2013-11-07 11:58:33 -0800,1540,4666 +6852,4192,2013-11-07 10:29:36 -0800,1540,4665 +6853,3944,2013-11-07 12:22:58 -0800,1540,4665 +6854,5264,2013-11-12 21:24:08 -0800,1541,4668 +6855,1220,2013-11-09 20:44:49 -0800,1541,4670 +6856,6111,2013-11-07 20:23:07 -0800,1541,4668 +6857,1544,2013-11-10 06:38:36 -0800,1541,4669 +6858,8876,2013-11-13 08:16:26 -0800,1542,4671 +6859,5766,2013-11-08 11:56:15 -0800,1543,4672 +6860,8518,2013-11-07 04:51:14 -0800,1543,4672 +6861,1281,2013-11-08 07:51:57 -0800,1543,4672 +6862,838,2013-11-08 07:16:02 -0800,1543,4672 +6863,166,2013-11-07 06:18:19 -0800,1544,4673 +6864,9315,2013-11-11 18:13:43 -0800,1544,4673 +6865,7823,2013-11-08 11:50:16 -0800,1544,4673 +6866,8067,2013-11-11 15:23:43 -0800,1544,4674 +6867,7137,2013-11-11 17:37:31 -0800,1544,4674 +6868,8795,2013-11-09 04:38:33 -0800,1544,4673 +6869,4045,2013-11-10 12:36:19 -0800,1544,4674 +6870,425,2013-11-08 21:58:30 -0800,1545,4676 +6871,2420,2013-11-10 22:11:56 -0800,1545,4677 +6872,7956,2013-11-06 16:55:58 -0800,1545,4677 +6873,9015,2013-11-07 22:07:39 -0800,1545,4677 +6874,2258,2013-11-09 12:00:15 -0800,1545,4678 +6875,9715,2013-11-10 13:50:28 -0800,1545,4677 +6876,5298,2013-11-06 11:03:54 -0800,1545,4675 +6877,4738,2013-11-11 22:03:32 -0800,1545,4676 +6878,2883,2013-11-06 16:25:54 -0800,1545,4678 +6879,1597,2013-11-12 04:34:22 -0800,1546,4680 +6880,932,2013-11-09 19:11:22 -0800,1546,4682 +6881,5378,2013-11-13 03:07:32 -0800,1547,4683 +6882,877,2013-11-11 16:53:52 -0800,1547,4685 +6883,1085,2013-11-12 17:27:06 -0800,1547,4685 +6884,7359,2013-11-11 18:48:55 -0800,1547,4685 +6885,828,2013-11-10 21:53:34 -0800,1547,4685 +6886,573,2013-11-09 21:29:59 -0800,1547,4684 +6887,7720,2013-11-12 14:00:21 -0800,1547,4683 +6888,3951,2013-11-10 06:53:31 -0800,1547,4684 +6889,9545,2013-11-09 15:29:33 -0800,1547,4685 +6890,4958,2013-11-10 09:59:21 -0800,1548,4686 +6891,4585,2013-11-12 12:53:34 -0800,1548,4689 +6892,1645,2013-11-11 07:04:48 -0800,1548,4689 +6893,3150,2013-11-06 22:32:59 -0800,1548,4688 +6894,3952,2013-11-06 16:13:18 -0800,1548,4687 +6895,9441,2013-11-08 18:55:26 -0800,1548,4688 +6896,247,2013-11-12 15:54:22 -0800,1548,4689 +6897,4783,2013-11-13 00:17:09 -0800,1548,4689 +6898,2799,2013-11-08 19:01:24 -0800,1548,4689 +6899,1315,2013-11-06 15:35:28 -0800,1549,4691 +6900,6539,2013-11-07 00:21:38 -0800,1549,4691 +6901,6367,2013-11-08 22:48:42 -0800,1549,4690 +6902,4757,2013-11-08 15:29:13 -0800,1549,4691 +6903,3988,2013-11-11 22:56:47 -0800,1549,4692 +6904,6135,2013-11-08 15:41:51 -0800,1550,4693 +6905,4919,2013-11-12 10:34:19 -0800,1550,4694 +6906,5397,2013-11-08 01:09:30 -0800,1550,4694 +6907,9121,2013-11-06 14:59:36 -0800,1550,4693 +6908,5600,2013-11-07 01:21:58 -0800,1550,4694 +6909,2880,2013-11-09 09:31:06 -0800,1551,4696 +6910,7366,2013-11-07 17:36:11 -0800,1551,4698 +6911,7880,2013-11-07 21:06:02 -0800,1551,4695 +6912,2224,2013-11-08 05:39:50 -0800,1551,4696 +6913,2636,2013-11-09 05:18:42 -0800,1551,4698 +6914,2629,2013-11-08 05:57:04 -0800,1551,4698 +6915,5852,2013-11-10 02:37:52 -0800,1551,4698 +6916,9813,2013-11-11 12:15:12 -0800,1551,4695 +6917,8018,2013-11-10 13:42:18 -0800,1551,4697 +6918,8430,2013-11-09 22:53:27 -0800,1552,4700 +6919,6054,2013-11-12 04:56:46 -0800,1552,4700 +6920,2885,2013-11-10 19:03:49 -0800,1552,4699 +6921,634,2013-11-12 19:46:18 -0800,1553,4702 +6922,2234,2013-11-08 09:49:19 -0800,1553,4702 +6923,8570,2013-11-11 10:33:26 -0800,1553,4703 +6924,5470,2013-11-07 09:40:28 -0800,1553,4703 +6925,7330,2013-11-10 12:16:23 -0800,1553,4703 +6926,6736,2013-11-07 05:24:11 -0800,1553,4702 +6927,9320,2013-11-12 15:36:01 -0800,1554,4704 +6928,2667,2013-11-08 01:13:54 -0800,1555,4709 +6929,8930,2013-11-10 16:36:01 -0800,1555,4706 +6930,6842,2013-11-10 17:20:39 -0800,1555,4708 +6931,211,2013-11-08 16:06:11 -0800,1555,4709 +6932,7623,2013-11-12 20:47:58 -0800,1555,4707 +6933,9130,2013-11-11 08:47:57 -0800,1555,4709 +6934,9356,2013-11-08 12:33:26 -0800,1556,4710 +6935,2412,2013-11-10 01:10:37 -0800,1556,4711 +6936,3799,2013-11-12 07:51:44 -0800,1556,4711 +6937,5653,2013-11-06 13:23:19 -0800,1556,4710 +6938,8083,2013-11-07 22:46:08 -0800,1556,4711 +6939,3210,2013-11-08 06:01:55 -0800,1556,4711 +6940,9790,2013-11-07 12:13:13 -0800,1557,4712 +6941,5380,2013-11-08 16:44:48 -0800,1557,4712 +6942,8534,2013-11-10 20:48:05 -0800,1558,4715 +6943,5179,2013-11-11 21:50:19 -0800,1558,4713 +6944,4717,2013-11-08 00:39:32 -0800,1559,4716 +6945,9765,2013-11-11 23:57:11 -0800,1559,4716 +6946,2979,2013-11-11 21:12:40 -0800,1559,4716 +6947,1422,2013-11-12 02:01:09 -0800,1560,4717 +6948,5945,2013-11-10 18:47:41 -0800,1560,4717 +6949,7239,2013-11-09 21:10:18 -0800,1560,4717 +6950,5655,2013-11-11 21:08:43 -0800,1561,4719 +6951,4267,2013-11-11 15:33:49 -0800,1562,4722 +6952,2575,2013-11-09 10:29:22 -0800,1562,4722 +6953,7400,2013-11-10 17:31:31 -0800,1562,4722 +6954,6373,2013-11-07 03:23:19 -0800,1562,4721 +6955,831,2013-11-08 11:22:02 -0800,1562,4722 +6956,9063,2013-11-12 05:53:13 -0800,1562,4722 +6957,7237,2013-11-11 09:21:41 -0800,1562,4720 +6958,9297,2013-11-06 23:39:25 -0800,1563,4724 +6959,3229,2013-11-12 10:25:20 -0800,1563,4723 +6960,9098,2013-11-06 20:27:07 -0800,1563,4724 +6961,43,2013-11-09 04:07:56 -0800,1563,4723 +6962,2520,2013-11-07 10:24:35 -0800,1563,4724 +6963,1100,2013-11-09 01:44:49 -0800,1563,4723 +6964,5370,2013-11-12 22:58:07 -0800,1563,4724 +6965,4774,2013-11-07 09:20:42 -0800,1564,4725 +6966,5435,2013-11-09 13:09:35 -0800,1564,4726 +6967,9890,2013-11-07 03:05:55 -0800,1564,4726 +6968,8724,2013-11-12 06:35:38 -0800,1564,4726 +6969,1935,2013-11-10 06:58:31 -0800,1564,4726 +6970,1597,2013-11-09 20:42:20 -0800,1564,4726 +6971,52,2013-11-12 16:57:26 -0800,1565,4727 +6972,2162,2013-11-13 03:18:13 -0800,1566,4731 +6973,6780,2013-11-09 19:06:56 -0800,1566,4732 +6974,8935,2013-11-06 16:37:35 -0800,1567,4736 +6975,7733,2013-11-13 06:39:33 -0800,1567,4735 +6976,4996,2013-11-06 19:05:01 -0800,1567,4734 +6977,6548,2013-11-13 05:58:50 -0800,1567,4737 +6978,1158,2013-11-11 06:50:05 -0800,1567,4736 +6979,8254,2013-11-07 08:20:36 -0800,1567,4734 +6980,1882,2013-11-13 07:00:36 -0800,1567,4734 +6981,8813,2013-11-12 01:14:46 -0800,1567,4737 +6982,1889,2013-11-08 00:51:58 -0800,1568,4738 +6983,3322,2013-11-12 20:50:25 -0800,1569,4743 +6984,3984,2013-11-07 14:26:29 -0800,1569,4744 +6985,1177,2013-11-10 22:43:32 -0800,1569,4746 +6986,7381,2013-11-10 10:19:46 -0800,1569,4746 +6987,7020,2013-11-12 14:45:58 -0800,1570,4747 +6988,6021,2013-11-08 04:24:56 -0800,1571,4751 +6989,6570,2013-11-10 21:27:46 -0800,1571,4749 +6990,5464,2013-11-11 14:20:49 -0800,1571,4749 +6991,7050,2013-11-11 04:56:23 -0800,1571,4749 +6992,4772,2013-11-07 14:39:04 -0800,1572,4752 +6993,8080,2013-11-09 15:57:29 -0800,1572,4753 +6994,2413,2013-11-11 22:45:24 -0800,1572,4753 +6995,8950,2013-11-09 23:35:04 -0800,1573,4757 +6996,4630,2013-11-11 07:01:53 -0800,1574,4760 +6997,5845,2013-11-08 12:21:22 -0800,1574,4761 +6998,8175,2013-11-12 17:20:04 -0800,1574,4760 +6999,1353,2013-11-13 05:49:02 -0800,1574,4758 +7000,6043,2013-11-08 19:17:37 -0800,1574,4760 +7001,7877,2013-11-06 15:41:33 -0800,1574,4761 +7002,3350,2013-11-10 15:41:35 -0800,1574,4758 +7003,8397,2013-11-09 17:00:41 -0800,1574,4758 +7004,6151,2013-11-07 01:03:41 -0800,1575,4762 +7005,277,2013-11-08 03:21:47 -0800,1575,4762 +7006,7684,2013-11-06 22:09:59 -0800,1575,4762 +7007,9267,2013-11-13 07:12:47 -0800,1575,4762 +7008,1632,2013-11-08 09:30:37 -0800,1575,4762 +7009,3765,2013-11-11 12:41:18 -0800,1575,4762 +7010,6828,2013-11-10 20:03:18 -0800,1575,4762 +7011,1216,2013-11-09 01:32:56 -0800,1575,4762 +7012,7561,2013-11-08 08:50:16 -0800,1576,4763 +7013,1827,2013-11-13 05:43:00 -0800,1576,4763 +7014,7392,2013-11-08 23:40:44 -0800,1577,4768 +7015,1362,2013-11-12 07:38:47 -0800,1577,4766 +7016,9649,2013-11-08 17:56:57 -0800,1577,4768 +7017,8009,2013-11-09 05:15:35 -0800,1577,4768 +7018,9441,2013-11-09 12:51:40 -0800,1577,4767 +7019,3677,2013-11-09 04:46:28 -0800,1577,4767 +7020,3710,2013-11-10 02:40:26 -0800,1577,4767 +7021,7588,2013-11-06 18:38:34 -0800,1577,4768 +7022,160,2013-11-10 02:40:11 -0800,1578,4771 +7023,550,2013-11-12 19:34:38 -0800,1578,4770 +7024,9446,2013-11-07 04:50:44 -0800,1578,4769 +7025,6591,2013-11-11 13:36:45 -0800,1578,4769 +7026,5822,2013-11-06 10:48:21 -0800,1578,4771 +7027,6064,2013-11-08 13:14:06 -0800,1578,4770 +7028,2813,2013-11-10 15:06:34 -0800,1578,4770 +7029,4758,2013-11-06 19:17:09 -0800,1578,4770 +7030,8261,2013-11-12 03:22:32 -0800,1579,4772 +7031,722,2013-11-09 14:33:36 -0800,1579,4772 +7032,9784,2013-11-10 07:58:54 -0800,1579,4772 +7033,9459,2013-11-08 22:25:55 -0800,1579,4772 +7034,4880,2013-11-11 10:48:02 -0800,1579,4772 +7035,4633,2013-11-10 06:09:03 -0800,1579,4772 +7036,1185,2013-11-10 10:20:45 -0800,1580,4774 +7037,1695,2013-11-10 01:18:51 -0800,1580,4773 +7038,3600,2013-11-09 05:43:50 -0800,1580,4773 +7039,1759,2013-11-09 10:14:22 -0800,1580,4775 +7040,3090,2013-11-06 16:00:33 -0800,1580,4774 +7041,8433,2013-11-11 15:25:58 -0800,1580,4776 +7042,7439,2013-11-06 16:07:43 -0800,1580,4773 +7043,7240,2013-11-07 03:19:18 -0800,1580,4774 +7044,3092,2013-11-07 01:23:17 -0800,1580,4776 +7045,9848,2013-11-10 09:22:11 -0800,1581,4777 +7046,6580,2013-11-10 15:50:53 -0800,1581,4778 +7047,8760,2013-11-07 08:07:50 -0800,1582,4781 +7048,4900,2013-11-08 04:29:29 -0800,1582,4781 +7049,5353,2013-11-11 18:28:07 -0800,1582,4783 +7050,3936,2013-11-10 21:36:59 -0800,1582,4781 +7051,869,2013-11-09 07:59:45 -0800,1582,4781 +7052,9285,2013-11-08 02:17:45 -0800,1582,4783 +7053,3415,2013-11-12 02:36:22 -0800,1582,4780 +7054,5689,2013-11-08 01:11:17 -0800,1583,4786 +7055,5920,2013-11-10 16:24:52 -0800,1583,4786 +7056,8889,2013-11-08 09:23:07 -0800,1583,4786 +7057,188,2013-11-06 15:07:36 -0800,1583,4785 +7058,6580,2013-11-12 00:11:17 -0800,1583,4786 +7059,6666,2013-11-09 14:00:50 -0800,1583,4788 +7060,354,2013-11-08 21:54:03 -0800,1584,4789 +7061,2956,2013-11-11 20:41:03 -0800,1584,4790 +7062,3968,2013-11-06 14:36:24 -0800,1584,4789 +7063,3936,2013-11-07 20:05:52 -0800,1584,4790 +7064,1538,2013-11-13 00:19:04 -0800,1584,4790 +7065,1320,2013-11-12 16:04:03 -0800,1584,4790 +7066,7412,2013-11-09 04:24:46 -0800,1584,4789 +7067,5688,2013-11-06 16:51:40 -0800,1585,4792 +7068,8519,2013-11-06 19:34:01 -0800,1585,4793 +7069,4221,2013-11-07 15:32:01 -0800,1585,4791 +7070,4281,2013-11-07 13:43:54 -0800,1585,4793 +7071,8223,2013-11-09 12:50:44 -0800,1586,4794 +7072,1461,2013-11-06 14:05:20 -0800,1586,4794 +7073,2214,2013-11-08 15:35:46 -0800,1587,4798 +7074,6744,2013-11-12 03:28:26 -0800,1587,4797 +7075,2442,2013-11-09 20:46:38 -0800,1587,4798 +7076,5431,2013-11-06 21:40:28 -0800,1587,4798 +7077,7929,2013-11-12 04:44:06 -0800,1587,4795 +7078,6043,2013-11-09 09:17:23 -0800,1587,4797 +7079,132,2013-11-06 19:10:57 -0800,1587,4797 +7080,3561,2013-11-12 06:20:13 -0800,1587,4797 +7081,2827,2013-11-12 05:35:12 -0800,1588,4799 +7082,9295,2013-11-07 01:18:06 -0800,1588,4800 +7083,6394,2013-11-12 08:16:49 -0800,1588,4802 +7084,6851,2013-11-07 21:27:26 -0800,1588,4800 +7085,2650,2013-11-06 17:26:01 -0800,1589,4806 +7086,5437,2013-11-08 09:50:08 -0800,1589,4807 +7087,7912,2013-11-06 09:54:38 -0800,1589,4803 +7088,5844,2013-11-06 23:08:49 -0800,1589,4805 +7089,6280,2013-11-08 18:44:02 -0800,1589,4804 +7090,6684,2013-11-10 22:13:32 -0800,1589,4807 +7091,8547,2013-11-11 16:33:14 -0800,1590,4808 +7092,7023,2013-11-08 21:22:34 -0800,1590,4808 +7093,6951,2013-11-12 20:54:44 -0800,1590,4808 +7094,872,2013-11-11 05:00:36 -0800,1590,4809 +7095,6320,2013-11-09 01:47:08 -0800,1591,4810 +7096,5271,2013-11-07 12:58:47 -0800,1591,4810 +7097,5500,2013-11-13 05:49:46 -0800,1591,4810 +7098,8986,2013-11-09 09:20:09 -0800,1591,4810 +7099,430,2013-11-09 03:15:24 -0800,1591,4810 +7100,2652,2013-11-07 19:52:15 -0800,1591,4810 +7101,169,2013-11-09 01:44:53 -0800,1591,4810 +7102,2191,2013-11-09 16:15:59 -0800,1592,4812 +7103,3790,2013-11-10 10:55:11 -0800,1592,4811 +7104,9167,2013-11-12 12:08:06 -0800,1592,4812 +7105,2963,2013-11-13 07:50:02 -0800,1592,4811 +7106,7634,2013-11-09 07:17:51 -0800,1592,4812 +7107,1764,2013-11-12 04:17:33 -0800,1592,4812 +7108,6174,2013-11-07 04:03:44 -0800,1592,4811 +7109,4031,2013-11-13 08:06:33 -0800,1592,4812 +7110,3486,2013-11-11 06:24:30 -0800,1592,4811 +7111,9128,2013-11-07 19:31:56 -0800,1593,4813 +7112,673,2013-11-06 21:19:14 -0800,1593,4814 +7113,1432,2013-11-06 20:49:28 -0800,1593,4814 +7114,7941,2013-11-10 21:39:37 -0800,1593,4813 +7115,621,2013-11-12 16:12:56 -0800,1593,4814 +7116,3757,2013-11-11 03:56:09 -0800,1593,4813 +7117,915,2013-11-06 09:57:10 -0800,1593,4814 +7118,4790,2013-11-06 17:11:18 -0800,1593,4815 +7119,3895,2013-11-12 10:28:54 -0800,1593,4814 +7120,1513,2013-11-06 10:25:53 -0800,1594,4816 +7121,4020,2013-11-12 11:55:50 -0800,1594,4817 +7122,9320,2013-11-08 08:00:56 -0800,1594,4818 +7123,635,2013-11-10 22:08:03 -0800,1594,4816 +7124,650,2013-11-11 04:50:30 -0800,1594,4818 +7125,3770,2013-11-12 01:18:03 -0800,1594,4818 +7126,9137,2013-11-10 08:22:41 -0800,1594,4818 +7127,675,2013-11-07 21:25:49 -0800,1594,4816 +7128,6451,2013-11-08 07:41:53 -0800,1594,4817 +7129,2156,2013-11-07 01:55:28 -0800,1595,4820 +7130,9058,2013-11-10 04:00:01 -0800,1595,4821 +7131,268,2013-11-12 07:15:44 -0800,1595,4819 +7132,246,2013-11-08 19:32:18 -0800,1595,4820 +7133,7748,2013-11-07 19:49:38 -0800,1595,4819 +7134,984,2013-11-11 09:13:10 -0800,1596,4825 +7135,9826,2013-11-09 13:21:16 -0800,1596,4822 +7136,8786,2013-11-09 11:56:41 -0800,1596,4824 +7137,4280,2013-11-07 02:06:37 -0800,1596,4824 +7138,2710,2013-11-08 08:52:43 -0800,1596,4822 +7139,7238,2013-11-12 22:32:33 -0800,1596,4823 +7140,8534,2013-11-08 10:06:03 -0800,1596,4822 +7141,457,2013-11-10 05:55:10 -0800,1596,4825 +7142,618,2013-11-07 20:38:23 -0800,1596,4824 +7143,5524,2013-11-07 07:12:31 -0800,1597,4826 +7144,6927,2013-11-10 18:09:21 -0800,1597,4826 +7145,9231,2013-11-13 06:52:21 -0800,1597,4826 +7146,3593,2013-11-07 03:07:50 -0800,1597,4826 +7147,7131,2013-11-09 08:04:37 -0800,1597,4826 +7148,1268,2013-11-12 15:02:48 -0800,1597,4826 +7149,8125,2013-11-11 21:24:02 -0800,1597,4826 +7150,3037,2013-11-13 08:31:18 -0800,1597,4826 +7151,5745,2013-11-12 21:51:22 -0800,1597,4826 +7152,4348,2013-11-07 15:15:31 -0800,1598,4828 +7153,7540,2013-11-12 21:36:50 -0800,1598,4828 +7154,5872,2013-11-12 22:36:39 -0800,1598,4829 +7155,6768,2013-11-12 08:50:19 -0800,1598,4828 +7156,9531,2013-11-07 04:10:52 -0800,1598,4829 +7157,1244,2013-11-11 00:24:45 -0800,1598,4828 +7158,3636,2013-11-12 09:50:18 -0800,1598,4827 +7159,7340,2013-11-09 11:56:36 -0800,1598,4829 +7160,4811,2013-11-11 02:52:36 -0800,1598,4827 +7161,7493,2013-11-09 15:22:24 -0800,1599,4834 +7162,1771,2013-11-10 05:16:11 -0800,1599,4831 +7163,5550,2013-11-12 19:26:31 -0800,1599,4834 +7164,8253,2013-11-11 07:45:01 -0800,1599,4833 +7165,3559,2013-11-09 07:54:43 -0800,1599,4830 +7166,4682,2013-11-07 04:26:19 -0800,1599,4833 +7167,4237,2013-11-12 07:53:37 -0800,1599,4832 +7168,6254,2013-11-08 13:08:02 -0800,1599,4834 +7169,1697,2013-11-10 19:13:39 -0800,1600,4838 +7170,9026,2013-11-06 13:13:07 -0800,1600,4836 +7171,8246,2013-11-08 06:22:31 -0800,1601,4840 +7172,727,2013-11-11 13:48:40 -0800,1601,4840 +7173,5981,2013-11-08 09:10:13 -0800,1601,4840 +7174,7579,2013-11-07 12:47:55 -0800,1601,4840 +7175,2434,2013-11-09 17:36:04 -0800,1601,4840 +7176,3041,2013-11-13 02:12:26 -0800,1601,4840 +7177,4678,2013-11-10 17:20:57 -0800,1601,4840 +7178,3156,2013-11-10 15:36:00 -0800,1601,4841 +7179,3854,2013-11-07 03:28:41 -0800,1602,4842 +7180,6175,2013-11-12 11:40:23 -0800,1602,4842 +7181,6390,2013-11-06 17:07:21 -0800,1603,4843 +7182,8817,2013-11-13 04:28:21 -0800,1603,4843 +7183,7366,2013-11-08 01:55:14 -0800,1603,4843 +7184,5181,2013-11-07 13:46:12 -0800,1603,4843 +7185,2295,2013-11-11 16:05:17 -0800,1604,4846 +7186,9244,2013-11-13 07:51:15 -0800,1604,4844 +7187,487,2013-11-08 22:32:01 -0800,1604,4844 +7188,2724,2013-11-07 01:30:31 -0800,1604,4846 +7189,7817,2013-11-12 15:16:38 -0800,1604,4846 +7190,7927,2013-11-09 23:35:11 -0800,1605,4849 +7191,2527,2013-11-07 06:34:14 -0800,1605,4850 +7192,6720,2013-11-08 08:27:22 -0800,1605,4851 +7193,320,2013-11-11 16:37:45 -0800,1605,4849 +7194,130,2013-11-09 12:55:19 -0800,1605,4848 +7195,8990,2013-11-08 12:11:04 -0800,1605,4851 +7196,2075,2013-11-12 05:39:06 -0800,1605,4851 +7197,731,2013-11-09 15:40:15 -0800,1605,4850 +7198,578,2013-11-07 02:53:56 -0800,1606,4855 +7199,3247,2013-11-13 04:35:05 -0800,1606,4852 +7200,8678,2013-11-07 12:54:42 -0800,1606,4852 +7201,6781,2013-11-08 22:16:25 -0800,1606,4853 +7202,694,2013-11-12 21:25:32 -0800,1607,4858 +7203,991,2013-11-07 20:07:09 -0800,1607,4861 +7204,9324,2013-11-10 01:20:48 -0800,1607,4858 +7205,3844,2013-11-12 10:08:35 -0800,1607,4859 +7206,5545,2013-11-11 15:30:18 -0800,1609,4867 +7207,31,2013-11-10 18:05:48 -0800,1609,4867 +7208,250,2013-11-09 08:49:23 -0800,1610,4871 +7209,4300,2013-11-08 06:17:47 -0800,1610,4870 +7210,3225,2013-11-12 00:16:34 -0800,1610,4871 +7211,6376,2013-11-07 01:38:37 -0800,1611,4875 +7212,661,2013-11-13 01:39:13 -0800,1611,4876 +7213,9365,2013-11-09 02:12:55 -0800,1611,4875 +7214,2622,2013-11-08 07:09:28 -0800,1611,4875 +7215,1389,2013-11-11 16:22:31 -0800,1611,4877 +7216,2543,2013-11-06 17:18:33 -0800,1611,4875 +7217,6790,2013-11-08 07:05:23 -0800,1611,4877 +7218,2978,2013-11-10 05:14:15 -0800,1611,4878 +7219,5050,2013-11-06 09:04:30 -0800,1613,4884 +7220,1813,2013-11-07 17:05:00 -0800,1614,4889 +7221,9531,2013-11-11 05:03:17 -0800,1614,4885 +7222,4895,2013-11-13 04:02:00 -0800,1614,4888 +7223,284,2013-11-06 11:06:34 -0800,1615,4890 +7224,548,2013-11-12 17:04:45 -0800,1615,4892 +7225,3215,2013-11-08 14:01:59 -0800,1615,4891 +7226,2080,2013-11-13 07:53:10 -0800,1615,4890 +7227,2929,2013-11-11 16:01:05 -0800,1615,4892 +7228,3225,2013-11-12 06:02:44 -0800,1615,4891 +7229,9214,2013-11-08 14:13:41 -0800,1615,4890 +7230,7634,2013-11-12 22:24:39 -0800,1615,4891 +7231,2351,2013-11-08 22:45:11 -0800,1615,4890 +7232,9293,2013-11-08 02:06:32 -0800,1616,4893 +7233,5857,2013-11-08 18:30:45 -0800,1616,4893 +7234,1580,2013-11-08 12:05:33 -0800,1616,4893 +7235,9833,2013-11-13 06:31:35 -0800,1616,4893 +7236,4346,2013-11-12 03:04:56 -0800,1616,4893 +7237,6140,2013-11-09 09:11:14 -0800,1617,4894 +7238,8720,2013-11-10 14:43:41 -0800,1617,4894 +7239,5232,2013-11-07 14:29:21 -0800,1617,4894 +7240,3286,2013-11-11 07:57:11 -0800,1618,4898 +7241,9357,2013-11-12 23:15:53 -0800,1618,4899 +7242,6920,2013-11-12 02:56:42 -0800,1618,4895 +7243,6177,2013-11-11 15:14:14 -0800,1618,4897 +7244,2680,2013-11-06 10:39:35 -0800,1618,4897 +7245,1410,2013-11-11 05:33:11 -0800,1618,4896 +7246,8372,2013-11-13 06:21:44 -0800,1619,4900 +7247,3486,2013-11-11 22:30:29 -0800,1619,4902 +7248,1011,2013-11-06 17:52:09 -0800,1619,4902 +7249,5023,2013-11-12 08:56:37 -0800,1619,4900 +7250,5922,2013-11-09 21:12:30 -0800,1620,4903 +7251,3225,2013-11-07 00:03:47 -0800,1620,4903 +7252,4583,2013-11-12 04:55:00 -0800,1620,4903 +7253,8580,2013-11-10 01:37:53 -0800,1623,4912 +7254,8667,2013-11-12 00:36:56 -0800,1623,4915 +7255,5621,2013-11-12 04:17:18 -0800,1624,4918 +7256,6578,2013-11-06 14:25:53 -0800,1624,4920 +7257,2993,2013-11-11 10:08:42 -0800,1625,4921 +7258,2028,2013-11-08 01:19:41 -0800,1625,4922 +7259,2327,2013-11-07 09:16:38 -0800,1626,4923 +7260,2032,2013-11-07 01:48:31 -0800,1626,4923 +7261,5235,2013-11-10 04:47:03 -0800,1626,4923 +7262,1256,2013-11-09 19:57:04 -0800,1626,4924 +7263,6581,2013-11-12 08:35:10 -0800,1626,4923 +7264,9278,2013-11-08 02:48:28 -0800,1626,4923 +7265,8595,2013-11-07 23:45:05 -0800,1626,4924 +7266,7877,2013-11-08 08:02:26 -0800,1626,4924 +7267,8746,2013-11-08 08:15:41 -0800,1627,4925 +7268,622,2013-11-08 10:49:09 -0800,1627,4926 +7269,7290,2013-11-08 18:34:56 -0800,1627,4926 +7270,6909,2013-11-09 15:03:54 -0800,1627,4928 +7271,1386,2013-11-09 22:41:31 -0800,1627,4925 +7272,2345,2013-11-09 16:47:28 -0800,1627,4926 +7273,1780,2013-11-12 16:22:22 -0800,1627,4928 +7274,7227,2013-11-10 03:14:58 -0800,1627,4926 +7275,9455,2013-11-09 18:01:29 -0800,1628,4930 +7276,9845,2013-11-12 09:49:57 -0800,1628,4930 +7277,1171,2013-11-08 08:12:08 -0800,1628,4930 +7278,8466,2013-11-08 13:34:02 -0800,1629,4933 +7279,6981,2013-11-12 12:15:42 -0800,1629,4932 +7280,396,2013-11-11 12:12:53 -0800,1630,4934 +7281,3697,2013-11-09 00:18:52 -0800,1630,4934 +7282,6894,2013-11-11 09:10:21 -0800,1630,4934 +7283,2171,2013-11-11 18:52:02 -0800,1630,4934 +7284,5344,2013-11-11 03:03:04 -0800,1630,4934 +7285,5082,2013-11-09 10:33:18 -0800,1630,4934 +7286,3986,2013-11-06 19:00:07 -0800,1631,4939 +7287,917,2013-11-08 20:04:09 -0800,1631,4935 +7288,8715,2013-11-07 06:43:43 -0800,1631,4937 +7289,8387,2013-11-11 17:59:56 -0800,1631,4935 +7290,8640,2013-11-12 07:05:32 -0800,1631,4938 +7291,8557,2013-11-11 01:39:37 -0800,1631,4937 +7292,624,2013-11-08 06:48:13 -0800,1631,4936 +7293,9511,2013-11-08 12:30:26 -0800,1631,4935 +7294,1043,2013-11-10 06:26:59 -0800,1632,4940 +7295,5489,2013-11-11 17:23:26 -0800,1632,4943 +7296,1453,2013-11-11 02:16:37 -0800,1632,4942 +7297,6795,2013-11-10 05:33:28 -0800,1632,4940 +7298,4482,2013-11-10 23:05:16 -0800,1632,4941 +7299,6698,2013-11-07 22:28:27 -0800,1632,4941 +7300,9584,2013-11-10 02:47:06 -0800,1632,4941 +7301,7876,2013-11-09 04:21:37 -0800,1632,4941 +7302,3078,2013-11-10 00:48:49 -0800,1633,4945 +7303,9083,2013-11-12 18:45:04 -0800,1633,4945 +7304,5950,2013-11-09 13:08:19 -0800,1633,4946 +7305,8690,2013-11-07 11:50:58 -0800,1633,4945 +7306,5500,2013-11-07 01:28:23 -0800,1634,4949 +7307,6258,2013-11-11 20:56:01 -0800,1634,4947 +7308,4490,2013-11-07 04:44:49 -0800,1634,4948 +7309,140,2013-11-07 11:31:03 -0800,1634,4948 +7310,9390,2013-11-07 18:07:32 -0800,1634,4949 +7311,2544,2013-11-09 05:12:51 -0800,1634,4948 +7312,2896,2013-11-11 19:35:13 -0800,1634,4949 +7313,8722,2013-11-07 14:50:42 -0800,1635,4951 +7314,5789,2013-11-11 23:23:02 -0800,1635,4950 +7315,9382,2013-11-12 09:59:24 -0800,1636,4955 +7316,5260,2013-11-09 00:24:04 -0800,1637,4957 +7317,7212,2013-11-07 18:30:48 -0800,1637,4958 +7318,5514,2013-11-06 18:41:38 -0800,1637,4958 +7319,4231,2013-11-06 17:11:22 -0800,1637,4958 +7320,6210,2013-11-08 07:43:44 -0800,1637,4957 +7321,6900,2013-11-10 18:02:56 -0800,1637,4958 +7322,3778,2013-11-08 12:55:23 -0800,1638,4963 +7323,9343,2013-11-07 02:01:07 -0800,1638,4960 +7324,5958,2013-11-08 10:15:50 -0800,1638,4960 +7325,696,2013-11-11 18:20:56 -0800,1638,4963 +7326,1142,2013-11-09 17:09:31 -0800,1638,4963 +7327,8014,2013-11-10 11:27:25 -0800,1638,4961 +7328,4656,2013-11-12 03:33:17 -0800,1638,4959 +7329,5662,2013-11-07 12:29:25 -0800,1638,4961 +7330,265,2013-11-10 15:26:23 -0800,1639,4964 +7331,9373,2013-11-10 10:33:39 -0800,1639,4964 +7332,9884,2013-11-11 06:03:21 -0800,1639,4965 +7333,719,2013-11-12 15:51:16 -0800,1639,4965 +7334,9865,2013-11-09 13:42:25 -0800,1640,4967 +7335,413,2013-11-11 05:07:10 -0800,1640,4967 +7336,1844,2013-11-10 12:11:02 -0800,1640,4966 +7337,5639,2013-11-10 16:27:59 -0800,1640,4967 +7338,8280,2013-11-08 05:00:12 -0800,1640,4966 +7339,8774,2013-11-12 10:05:43 -0800,1640,4967 +7340,3790,2013-11-11 17:33:34 -0800,1640,4966 +7341,2421,2013-11-09 10:52:44 -0800,1641,4968 +7342,2670,2013-11-07 21:19:01 -0800,1641,4969 +7343,7898,2013-11-12 19:24:05 -0800,1641,4969 +7344,8385,2013-11-07 19:28:52 -0800,1641,4969 +7345,1469,2013-11-11 13:17:54 -0800,1641,4968 +7346,5128,2013-11-07 20:17:39 -0800,1641,4969 +7347,3872,2013-11-06 15:57:24 -0800,1641,4969 +7348,7725,2013-11-11 09:09:34 -0800,1641,4969 +7349,1920,2013-11-06 13:18:48 -0800,1642,4971 +7350,6770,2013-11-09 06:43:23 -0800,1643,4976 +7351,5735,2013-11-10 22:39:32 -0800,1643,4975 +7352,1192,2013-11-12 14:54:23 -0800,1643,4975 +7353,1053,2013-11-13 05:22:14 -0800,1643,4976 +7354,2260,2013-11-10 05:56:05 -0800,1644,4978 +7355,7083,2013-11-08 21:02:06 -0800,1644,4979 +7356,4954,2013-11-07 10:10:13 -0800,1644,4981 +7357,3133,2013-11-08 19:53:41 -0800,1645,4982 +7358,8913,2013-11-12 16:48:35 -0800,1645,4982 +7359,6198,2013-11-12 05:11:01 -0800,1645,4984 +7360,7063,2013-11-09 02:51:13 -0800,1645,4983 +7361,6159,2013-11-06 10:47:46 -0800,1645,4982 +7362,811,2013-11-11 17:59:20 -0800,1645,4982 +7363,9399,2013-11-09 22:32:26 -0800,1645,4982 +7364,932,2013-11-10 07:21:08 -0800,1646,4989 +7365,7273,2013-11-12 01:19:19 -0800,1646,4989 +7366,4854,2013-11-10 15:51:25 -0800,1646,4988 +7367,7014,2013-11-08 00:30:07 -0800,1646,4990 +7368,4598,2013-11-07 16:46:16 -0800,1646,4988 +7369,5695,2013-11-11 07:38:08 -0800,1646,4987 +7370,3950,2013-11-06 18:55:15 -0800,1646,4990 +7371,2114,2013-11-12 15:03:49 -0800,1648,4995 +7372,4815,2013-11-08 21:18:42 -0800,1648,4994 +7373,9812,2013-11-09 13:33:48 -0800,1648,4993 +7374,5985,2013-11-10 06:57:18 -0800,1648,4995 +7375,40,2013-11-10 23:43:41 -0800,1648,4992 +7376,7583,2013-11-09 22:37:07 -0800,1649,4999 +7377,1678,2013-11-09 18:41:03 -0800,1649,4996 +7378,8836,2013-11-12 18:01:49 -0800,1649,4996 +7379,2789,2013-11-08 13:39:54 -0800,1649,4996 +7380,6912,2013-11-10 04:15:44 -0800,1649,4999 +7381,5513,2013-11-11 01:50:15 -0800,1650,5001 +7382,7318,2013-11-10 06:03:33 -0800,1650,5001 +7383,4538,2013-11-07 21:07:13 -0800,1650,5002 +7384,9810,2013-11-08 12:49:42 -0800,1651,5006 +7385,424,2013-11-09 09:37:37 -0800,1651,5006 +7386,2714,2013-11-10 16:59:35 -0800,1651,5005 +7387,1198,2013-11-09 04:44:56 -0800,1651,5006 +7388,580,2013-11-12 04:11:32 -0800,1651,5005 +7389,350,2013-11-07 16:25:48 -0800,1652,5009 +7390,4563,2013-11-07 09:03:43 -0800,1652,5009 +7391,6351,2013-11-10 17:51:10 -0800,1652,5007 +7392,1234,2013-11-12 22:01:14 -0800,1652,5007 +7393,331,2013-11-12 06:29:25 -0800,1652,5009 +7394,7945,2013-11-10 20:08:51 -0800,1652,5011 +7395,8636,2013-11-11 13:41:45 -0800,1652,5007 +7396,7956,2013-11-10 23:43:26 -0800,1652,5008 +7397,18,2013-11-08 20:20:56 -0800,1652,5009 +7398,5375,2013-11-11 11:15:37 -0800,1653,5012 +7399,5176,2013-11-10 21:51:02 -0800,1653,5013 +7400,1314,2013-11-09 20:40:03 -0800,1653,5012 +7401,4872,2013-11-10 22:35:38 -0800,1653,5012 +7402,5625,2013-11-06 23:15:55 -0800,1653,5012 +7403,3989,2013-11-11 02:11:57 -0800,1653,5013 +7404,4477,2013-11-12 23:40:00 -0800,1653,5012 +7405,6831,2013-11-12 07:50:16 -0800,1654,5017 +7406,1230,2013-11-07 09:14:48 -0800,1654,5017 +7407,3315,2013-11-10 20:19:19 -0800,1654,5017 +7408,2939,2013-11-13 06:35:34 -0800,1655,5022 +7409,8774,2013-11-07 18:41:18 -0800,1657,5025 +7410,385,2013-11-10 14:34:47 -0800,1657,5025 +7411,2748,2013-11-12 08:51:44 -0800,1657,5025 +7412,9463,2013-11-07 01:08:19 -0800,1657,5025 +7413,4312,2013-11-09 19:51:59 -0800,1657,5025 +7414,2457,2013-11-08 13:10:34 -0800,1657,5025 +7415,9514,2013-11-10 00:07:04 -0800,1657,5025 +7416,861,2013-11-11 20:31:11 -0800,1657,5025 +7417,3411,2013-11-07 14:42:57 -0800,1658,5026 +7418,7043,2013-11-09 07:48:44 -0800,1658,5027 +7419,7643,2013-11-09 14:28:00 -0800,1658,5027 +7420,7678,2013-11-07 13:06:48 -0800,1658,5026 +7421,3936,2013-11-11 16:25:03 -0800,1658,5026 +7422,4789,2013-11-12 05:49:42 -0800,1658,5026 +7423,1312,2013-11-09 01:28:17 -0800,1658,5026 +7424,5126,2013-11-07 10:53:42 -0800,1658,5026 +7425,9214,2013-11-06 12:35:27 -0800,1659,5029 +7426,3518,2013-11-10 21:35:33 -0800,1659,5029 +7427,8610,2013-11-07 18:50:13 -0800,1659,5030 +7428,1932,2013-11-11 05:58:20 -0800,1659,5030 +7429,7370,2013-11-08 21:19:52 -0800,1659,5030 +7430,9440,2013-11-07 14:07:26 -0800,1659,5030 +7431,921,2013-11-07 02:03:49 -0800,1660,5032 +7432,7578,2013-11-08 23:34:30 -0800,1660,5031 +7433,5760,2013-11-09 06:30:57 -0800,1661,5034 +7434,3450,2013-11-09 18:42:27 -0800,1661,5034 +7435,598,2013-11-08 23:45:50 -0800,1661,5034 +7436,2074,2013-11-12 05:16:35 -0800,1662,5035 +7437,1044,2013-11-11 07:15:46 -0800,1662,5035 +7438,2843,2013-11-12 00:03:30 -0800,1662,5035 +7439,9322,2013-11-10 10:27:47 -0800,1663,5039 +7440,6377,2013-11-09 23:04:23 -0800,1663,5039 +7441,8627,2013-11-11 13:22:16 -0800,1663,5037 +7442,4743,2013-11-06 18:43:39 -0800,1663,5037 +7443,340,2013-11-12 02:41:58 -0800,1663,5039 +7444,6975,2013-11-08 16:58:41 -0800,1664,5041 +7445,1130,2013-11-06 11:01:01 -0800,1664,5040 +7446,4132,2013-11-11 07:10:24 -0800,1664,5041 +7447,1240,2013-11-11 15:03:01 -0800,1664,5040 +7448,8529,2013-11-12 12:42:53 -0800,1664,5040 +7449,649,2013-11-11 16:06:31 -0800,1665,5043 +7450,7819,2013-11-08 03:48:11 -0800,1665,5045 +7451,3379,2013-11-09 18:31:48 -0800,1665,5045 +7452,3664,2013-11-08 00:16:20 -0800,1665,5042 +7453,9154,2013-11-07 08:59:50 -0800,1666,5046 +7454,371,2013-11-10 01:25:07 -0800,1667,5050 +7455,2320,2013-11-07 07:12:42 -0800,1667,5051 +7456,794,2013-11-10 18:53:49 -0800,1667,5053 +7457,4433,2013-11-10 10:39:19 -0800,1667,5053 +7458,7754,2013-11-12 18:12:34 -0800,1667,5051 +7459,2256,2013-11-13 04:37:39 -0800,1667,5053 +7460,4019,2013-11-11 16:10:09 -0800,1668,5054 +7461,1692,2013-11-12 20:49:38 -0800,1668,5054 +7462,5873,2013-11-11 00:39:05 -0800,1668,5054 +7463,5194,2013-11-08 03:05:39 -0800,1668,5054 +7464,7273,2013-11-11 05:29:52 -0800,1668,5054 +7465,9564,2013-11-10 06:01:53 -0800,1668,5054 +7466,2955,2013-11-07 03:05:38 -0800,1668,5054 +7467,9860,2013-11-08 01:08:42 -0800,1669,5058 +7468,9720,2013-11-09 15:08:51 -0800,1669,5058 +7469,8625,2013-11-09 07:54:01 -0800,1669,5059 +7470,9141,2013-11-11 13:24:52 -0800,1669,5055 +7471,3561,2013-11-13 03:22:30 -0800,1670,5060 +7472,6441,2013-11-09 16:27:34 -0800,1670,5060 +7473,273,2013-11-07 17:48:52 -0800,1670,5060 +7474,9823,2013-11-09 04:31:19 -0800,1670,5060 +7475,2386,2013-11-13 02:53:06 -0800,1671,5062 +7476,876,2013-11-09 22:13:34 -0800,1671,5063 +7477,3790,2013-11-06 21:10:50 -0800,1671,5063 +7478,747,2013-11-11 21:35:21 -0800,1671,5062 +7479,1543,2013-11-09 22:55:40 -0800,1671,5063 +7480,5197,2013-11-10 09:35:33 -0800,1671,5061 +7481,7528,2013-11-10 14:57:25 -0800,1671,5061 +7482,5215,2013-11-09 12:11:25 -0800,1671,5063 +7483,2859,2013-11-10 13:35:10 -0800,1672,5065 +7484,6263,2013-11-11 10:27:05 -0800,1672,5066 +7485,5180,2013-11-09 10:10:49 -0800,1672,5064 +7486,5911,2013-11-09 08:21:35 -0800,1672,5064 +7487,3797,2013-11-12 07:34:07 -0800,1672,5064 +7488,726,2013-11-08 16:52:40 -0800,1672,5064 +7489,496,2013-11-10 16:17:14 -0800,1672,5065 +7490,2733,2013-11-10 22:00:01 -0800,1673,5068 +7491,5541,2013-11-11 04:40:28 -0800,1673,5068 +7492,6088,2013-11-07 09:44:30 -0800,1673,5068 +7493,6831,2013-11-09 02:15:59 -0800,1673,5068 +7494,1620,2013-11-09 15:06:20 -0800,1673,5068 +7495,6645,2013-11-12 14:16:45 -0800,1673,5068 +7496,5435,2013-11-11 07:59:57 -0800,1674,5070 +7497,980,2013-11-11 12:01:50 -0800,1674,5071 +7498,3720,2013-11-13 02:30:02 -0800,1674,5069 +7499,358,2013-11-12 18:27:45 -0800,1674,5070 +7500,8974,2013-11-07 11:47:50 -0800,1674,5070 +7501,2689,2013-11-07 11:40:28 -0800,1674,5071 +7502,5853,2013-11-11 11:42:42 -0800,1674,5070 +7503,2740,2013-11-12 17:42:14 -0800,1674,5071 +7504,1424,2013-11-09 02:22:58 -0800,1675,5072 +7505,1295,2013-11-08 20:01:07 -0800,1675,5073 +7506,1470,2013-11-08 16:55:56 -0800,1675,5073 +7507,3482,2013-11-08 00:58:12 -0800,1675,5072 +7508,6288,2013-11-13 01:43:25 -0800,1675,5073 +7509,3970,2013-11-08 05:57:06 -0800,1675,5073 +7510,5459,2013-11-11 19:45:15 -0800,1675,5073 +7511,8164,2013-11-08 06:20:02 -0800,1675,5073 +7512,6075,2013-11-11 10:48:22 -0800,1677,5083 +7513,913,2013-11-12 10:20:26 -0800,1677,5080 +7514,1024,2013-11-08 05:38:36 -0800,1677,5081 +7515,476,2013-11-09 16:02:46 -0800,1677,5082 +7516,2741,2013-11-07 06:48:37 -0800,1678,5085 +7517,3792,2013-11-11 05:23:25 -0800,1679,5089 +7518,7669,2013-11-07 03:17:58 -0800,1679,5089 +7519,362,2013-11-07 17:47:23 -0800,1679,5090 +7520,5838,2013-11-12 17:26:34 -0800,1679,5089 +7521,6868,2013-11-11 03:02:54 -0800,1679,5089 +7522,4972,2013-11-10 08:31:23 -0800,1679,5090 +7523,6859,2013-11-08 09:52:22 -0800,1679,5090 +7524,6110,2013-11-08 10:57:57 -0800,1679,5090 +7525,6934,2013-11-11 10:48:03 -0800,1680,5092 +7526,3779,2013-11-10 23:05:19 -0800,1680,5091 +7527,4423,2013-11-09 07:44:26 -0800,1680,5091 +7528,1276,2013-11-06 20:26:31 -0800,1680,5091 +7529,1585,2013-11-07 20:11:14 -0800,1681,5095 +7530,6073,2013-11-11 22:13:28 -0800,1681,5093 +7531,9645,2013-11-09 13:39:21 -0800,1681,5093 +7532,3329,2013-11-10 07:17:16 -0800,1682,5098 +7533,8384,2013-11-11 10:30:28 -0800,1682,5098 +7534,5851,2013-11-10 12:29:09 -0800,1682,5098 +7535,8436,2013-11-07 03:51:43 -0800,1682,5098 +7536,4256,2013-11-11 20:43:57 -0800,1682,5098 +7537,5451,2013-11-09 03:01:23 -0800,1682,5098 +7538,589,2013-11-08 23:06:01 -0800,1682,5098 +7539,5929,2013-11-12 12:51:40 -0800,1682,5098 +7540,3714,2013-11-07 00:39:53 -0800,1682,5098 +7541,5982,2013-11-07 07:28:31 -0800,1684,5104 +7542,2687,2013-11-07 15:53:10 -0800,1684,5105 +7543,1661,2013-11-11 09:59:42 -0800,1684,5105 +7544,1196,2013-11-11 09:47:44 -0800,1684,5105 +7545,3950,2013-11-12 07:35:37 -0800,1684,5105 +7546,2643,2013-11-09 15:41:45 -0800,1684,5104 +7547,2633,2013-11-09 11:15:44 -0800,1684,5104 +7548,1623,2013-11-12 05:30:05 -0800,1685,5107 +7549,150,2013-11-06 09:05:06 -0800,1685,5109 +7550,5070,2013-11-08 11:30:19 -0800,1686,5112 +7551,5925,2013-11-06 14:32:04 -0800,1686,5111 +7552,5945,2013-11-13 04:00:28 -0800,1686,5111 +7553,2974,2013-11-11 19:14:48 -0800,1686,5113 +7554,149,2013-11-09 23:30:07 -0800,1687,5116 +7555,450,2013-11-09 15:00:53 -0800,1687,5115 +7556,2724,2013-11-10 01:17:04 -0800,1688,5119 +7557,823,2013-11-06 18:30:57 -0800,1688,5119 +7558,9728,2013-11-12 14:14:26 -0800,1688,5121 +7559,271,2013-11-08 02:58:45 -0800,1688,5120 +7560,3452,2013-11-12 17:02:20 -0800,1688,5121 +7561,4065,2013-11-06 13:25:51 -0800,1688,5119 +7562,7551,2013-11-11 10:15:07 -0800,1688,5119 +7563,8479,2013-11-12 19:20:42 -0800,1689,5123 +7564,5439,2013-11-12 15:20:23 -0800,1691,5125 +7565,9445,2013-11-12 19:29:26 -0800,1691,5125 +7566,7240,2013-11-12 06:43:27 -0800,1691,5125 +7567,1370,2013-11-09 01:46:12 -0800,1691,5125 +7568,6554,2013-11-07 09:31:18 -0800,1691,5125 +7569,1867,2013-11-12 01:38:41 -0800,1691,5125 +7570,6725,2013-11-13 00:57:04 -0800,1691,5125 +7571,1947,2013-11-08 15:02:25 -0800,1691,5125 +7572,2251,2013-11-07 19:24:57 -0800,1691,5125 +7573,1675,2013-11-13 07:44:09 -0800,1692,5127 +7574,2969,2013-11-06 13:22:49 -0800,1692,5126 +7575,176,2013-11-07 04:10:31 -0800,1692,5127 +7576,1800,2013-11-13 01:11:57 -0800,1692,5126 +7577,9793,2013-11-13 07:51:17 -0800,1692,5126 +7578,243,2013-11-10 08:17:02 -0800,1693,5128 +7579,1258,2013-11-09 18:31:45 -0800,1693,5128 +7580,4957,2013-11-07 03:33:37 -0800,1693,5128 +7581,73,2013-11-11 09:47:59 -0800,1694,5130 +7582,6598,2013-11-06 19:32:04 -0800,1695,5132 +7583,8880,2013-11-08 21:59:01 -0800,1695,5133 +7584,7667,2013-11-09 18:14:10 -0800,1695,5134 +7585,5060,2013-11-10 19:19:22 -0800,1695,5134 +7586,7578,2013-11-13 07:01:27 -0800,1695,5134 +7587,9865,2013-11-12 05:02:05 -0800,1695,5132 +7588,8009,2013-11-10 17:00:46 -0800,1696,5135 +7589,2383,2013-11-09 19:47:32 -0800,1696,5136 +7590,2119,2013-11-08 07:09:37 -0800,1698,5142 +7591,4533,2013-11-09 23:20:19 -0800,1698,5142 +7592,9617,2013-11-07 20:34:29 -0800,1698,5141 +7593,848,2013-11-13 02:27:58 -0800,1698,5142 +7594,9222,2013-11-10 12:51:17 -0800,1698,5141 +7595,9356,2013-11-10 18:34:23 -0800,1699,5143 +7596,8960,2013-11-12 15:50:04 -0800,1699,5143 +7597,632,2013-11-07 23:32:54 -0800,1699,5143 +7598,5554,2013-11-11 21:39:58 -0800,1700,5145 +7599,6129,2013-11-13 02:59:28 -0800,1700,5144 +7600,3546,2013-11-12 07:59:40 -0800,1700,5144 +7601,5514,2013-11-08 13:47:18 -0800,1701,5149 +7602,4174,2013-11-08 03:32:18 -0800,1701,5149 +7603,3313,2013-11-10 22:01:26 -0800,1701,5147 +7604,1182,2013-11-12 09:37:19 -0800,1701,5150 +7605,6272,2013-11-12 18:36:41 -0800,1703,5159 +7606,9312,2013-11-08 02:40:44 -0800,1703,5159 +7607,3217,2013-11-11 02:07:19 -0800,1704,5163 +7608,2980,2013-11-09 18:12:56 -0800,1704,5164 +7609,5637,2013-11-10 20:55:32 -0800,1704,5165 +7610,754,2013-11-10 16:52:32 -0800,1706,5170 +7611,5985,2013-11-11 06:23:49 -0800,1706,5169 +7612,9639,2013-11-09 21:30:58 -0800,1706,5169 +7613,7888,2013-11-08 07:49:38 -0800,1707,5176 +7614,4373,2013-11-11 09:25:29 -0800,1707,5173 +7615,8480,2013-11-12 04:13:24 -0800,1707,5172 +7616,6169,2013-11-06 20:33:24 -0800,1707,5175 +7617,7788,2013-11-08 21:31:19 -0800,1707,5175 +7618,9288,2013-11-10 08:56:07 -0800,1707,5175 +7619,3845,2013-11-08 08:44:42 -0800,1707,5176 +7620,4636,2013-11-06 22:07:57 -0800,1707,5174 +7621,688,2013-11-08 22:08:32 -0800,1707,5173 +7622,2552,2013-11-10 12:52:41 -0800,1708,5179 +7623,1430,2013-11-09 12:55:14 -0800,1708,5178 +7624,459,2013-11-07 02:30:37 -0800,1708,5179 +7625,8782,2013-11-08 23:53:06 -0800,1709,5181 +7626,9777,2013-11-09 23:18:32 -0800,1709,5181 +7627,9223,2013-11-06 15:35:39 -0800,1709,5181 +7628,8723,2013-11-12 11:45:12 -0800,1709,5181 +7629,5220,2013-11-12 09:44:11 -0800,1709,5181 +7630,2119,2013-11-12 03:30:52 -0800,1709,5181 +7631,2798,2013-11-07 23:42:32 -0800,1709,5181 +7632,1350,2013-11-08 06:52:27 -0800,1710,5183 +7633,7969,2013-11-09 11:39:23 -0800,1710,5182 +7634,7840,2013-11-07 14:34:26 -0800,1710,5185 +7635,8830,2013-11-11 00:32:49 -0800,1710,5185 +7636,3157,2013-11-06 21:44:54 -0800,1710,5184 +7637,3786,2013-11-12 11:04:21 -0800,1710,5182 +7638,2039,2013-11-07 04:55:45 -0800,1710,5185 +7639,5746,2013-11-06 15:42:13 -0800,1711,5186 +7640,749,2013-11-09 12:24:55 -0800,1711,5188 +7641,1325,2013-11-07 05:08:10 -0800,1711,5190 +7642,8974,2013-11-11 04:57:09 -0800,1711,5187 +7643,4883,2013-11-08 18:26:31 -0800,1711,5189 +7644,9759,2013-11-09 04:19:15 -0800,1711,5189 +7645,3529,2013-11-09 17:53:51 -0800,1711,5186 +7646,6759,2013-11-08 18:18:28 -0800,1711,5190 +7647,3456,2013-11-11 18:07:14 -0800,1711,5187 +7648,222,2013-11-08 15:31:22 -0800,1712,5192 +7649,4875,2013-11-06 12:11:05 -0800,1712,5194 +7650,3917,2013-11-12 00:12:37 -0800,1712,5191 +7651,723,2013-11-07 06:50:27 -0800,1712,5193 +7652,8760,2013-11-06 14:37:11 -0800,1712,5194 +7653,4580,2013-11-08 09:25:06 -0800,1712,5192 +7654,3062,2013-11-11 20:22:34 -0800,1712,5194 +7655,4798,2013-11-12 00:52:49 -0800,1712,5192 +7656,1221,2013-11-10 14:55:09 -0800,1714,5200 +7657,9610,2013-11-06 12:45:34 -0800,1714,5201 +7658,6371,2013-11-12 19:22:38 -0800,1714,5201 +7659,3422,2013-11-12 19:23:05 -0800,1714,5200 +7660,1023,2013-11-09 06:40:07 -0800,1714,5201 +7661,4388,2013-11-11 03:19:44 -0800,1715,5205 +7662,9196,2013-11-12 00:57:52 -0800,1715,5202 +7663,9181,2013-11-08 13:37:56 -0800,1715,5202 +7664,7528,2013-11-09 10:42:45 -0800,1715,5203 +7665,3753,2013-11-11 16:48:00 -0800,1715,5205 +7666,6459,2013-11-08 11:35:11 -0800,1715,5205 +7667,2039,2013-11-12 13:24:27 -0800,1717,5211 +7668,7513,2013-11-12 09:47:47 -0800,1717,5213 +7669,4724,2013-11-11 08:46:09 -0800,1717,5212 +7670,1019,2013-11-11 06:53:55 -0800,1717,5212 +7671,4378,2013-11-09 11:06:21 -0800,1717,5213 +7672,4320,2013-11-12 01:19:26 -0800,1717,5212 +7673,7678,2013-11-10 19:39:27 -0800,1717,5213 +7674,1229,2013-11-12 08:32:19 -0800,1717,5212 +7675,7864,2013-11-09 12:48:55 -0800,1718,5215 +7676,4043,2013-11-12 03:04:28 -0800,1718,5215 +7677,5976,2013-11-09 19:55:38 -0800,1718,5218 +7678,3377,2013-11-10 16:29:52 -0800,1718,5216 +7679,6453,2013-11-11 00:42:53 -0800,1718,5219 +7680,1782,2013-11-11 13:55:09 -0800,1718,5217 +7681,6759,2013-11-12 16:15:27 -0800,1719,5224 +7682,3690,2013-11-09 05:04:43 -0800,1719,5222 +7683,7900,2013-11-07 21:03:56 -0800,1719,5224 +7684,6238,2013-11-08 18:38:50 -0800,1719,5223 +7685,2787,2013-11-09 09:58:56 -0800,1719,5222 +7686,5270,2013-11-08 22:18:50 -0800,1719,5222 +7687,7581,2013-11-11 19:04:49 -0800,1720,5228 +7688,6633,2013-11-09 12:01:45 -0800,1720,5226 +7689,7342,2013-11-11 08:27:47 -0800,1720,5227 +7690,7780,2013-11-09 08:20:17 -0800,1720,5227 +7691,5895,2013-11-07 03:50:14 -0800,1720,5227 +7692,6367,2013-11-08 07:59:10 -0800,1720,5227 +7693,8547,2013-11-12 05:21:13 -0800,1721,5229 +7694,7270,2013-11-11 08:03:59 -0800,1721,5229 +7695,6579,2013-11-10 06:12:49 -0800,1721,5229 +7696,827,2013-11-11 02:54:05 -0800,1721,5229 +7697,2245,2013-11-13 01:23:00 -0800,1721,5229 +7698,4412,2013-11-10 18:49:12 -0800,1722,5230 +7699,2080,2013-11-06 17:39:51 -0800,1722,5230 +7700,6783,2013-11-07 12:54:18 -0800,1722,5230 +7701,5852,2013-11-10 21:10:11 -0800,1722,5230 +7702,1723,2013-11-13 01:53:59 -0800,1722,5230 +7703,4567,2013-11-07 17:08:14 -0800,1723,5231 +7704,270,2013-11-13 07:16:28 -0800,1723,5231 +7705,4430,2013-11-12 18:44:07 -0800,1723,5231 +7706,4280,2013-11-11 10:12:33 -0800,1723,5231 +7707,6124,2013-11-12 04:44:53 -0800,1723,5231 +7708,7234,2013-11-08 05:48:54 -0800,1723,5231 +7709,6200,2013-11-07 21:13:54 -0800,1723,5231 +7710,2210,2013-11-06 16:20:00 -0800,1723,5231 +7711,9356,2013-11-12 08:16:25 -0800,1724,5235 +7712,9375,2013-11-12 16:02:00 -0800,1724,5233 +7713,8845,2013-11-07 13:59:19 -0800,1724,5234 +7714,67,2013-11-12 06:39:12 -0800,1724,5236 +7715,2153,2013-11-08 22:51:17 -0800,1725,5237 +7716,5864,2013-11-07 13:46:41 -0800,1725,5237 +7717,2397,2013-11-09 04:40:46 -0800,1726,5239 +7718,9068,2013-11-09 05:47:10 -0800,1726,5240 +7719,4298,2013-11-09 05:38:53 -0800,1726,5239 +7720,1446,2013-11-10 23:59:00 -0800,1726,5241 +7721,1150,2013-11-07 19:50:07 -0800,1726,5241 +7722,7287,2013-11-07 20:58:07 -0800,1726,5239 +7723,7179,2013-11-13 07:55:22 -0800,1726,5240 +7724,9436,2013-11-12 21:42:48 -0800,1727,5244 +7725,5130,2013-11-10 04:27:26 -0800,1727,5243 +7726,7817,2013-11-09 05:29:22 -0800,1727,5243 +7727,6840,2013-11-12 20:34:24 -0800,1727,5244 +7728,381,2013-11-07 09:22:57 -0800,1727,5244 +7729,3215,2013-11-11 05:41:44 -0800,1728,5247 +7730,9795,2013-11-10 21:11:21 -0800,1728,5247 +7731,8433,2013-11-08 04:43:57 -0800,1729,5248 +7732,9015,2013-11-08 21:56:31 -0800,1729,5248 +7733,9831,2013-11-11 05:54:25 -0800,1729,5248 +7734,140,2013-11-09 03:18:08 -0800,1729,5248 +7735,1711,2013-11-07 21:39:58 -0800,1729,5248 +7736,1115,2013-11-11 11:19:27 -0800,1729,5248 +7737,1399,2013-11-09 03:56:36 -0800,1730,5251 +7738,2688,2013-11-08 14:44:04 -0800,1730,5250 +7739,9792,2013-11-06 18:16:43 -0800,1730,5250 +7740,6119,2013-11-10 08:00:16 -0800,1730,5250 +7741,5460,2013-11-06 09:11:34 -0800,1730,5251 +7742,585,2013-11-07 17:05:39 -0800,1731,5252 +7743,2277,2013-11-11 12:09:28 -0800,1731,5252 +7744,4271,2013-11-08 10:52:28 -0800,1731,5252 +7745,2290,2013-11-08 20:00:18 -0800,1731,5252 +7746,535,2013-11-07 19:54:15 -0800,1731,5252 +7747,8063,2013-11-07 05:10:27 -0800,1731,5252 +7748,8595,2013-11-09 21:37:53 -0800,1731,5252 +7749,949,2013-11-09 07:12:38 -0800,1731,5252 +7750,2665,2013-11-10 17:43:25 -0800,1731,5252 +7751,5350,2013-11-09 03:55:57 -0800,1732,5257 +7752,8698,2013-11-09 15:53:03 -0800,1732,5255 +7753,7000,2013-11-12 09:16:30 -0800,1732,5253 +7754,3375,2013-11-11 01:39:13 -0800,1732,5256 +7755,7695,2013-11-09 04:13:17 -0800,1732,5256 +7756,1892,2013-11-11 00:16:53 -0800,1733,5260 +7757,4436,2013-11-12 06:35:12 -0800,1733,5262 +7758,8112,2013-11-08 04:27:01 -0800,1733,5260 +7759,9361,2013-11-09 17:29:15 -0800,1733,5260 +7760,5691,2013-11-10 21:20:23 -0800,1733,5261 +7761,1471,2013-11-12 16:26:02 -0800,1733,5261 +7762,2275,2013-11-12 14:10:48 -0800,1733,5258 +7763,2827,2013-11-08 23:13:43 -0800,1733,5260 +7764,6563,2013-11-07 12:34:03 -0800,1733,5262 +7765,8983,2013-11-09 09:31:35 -0800,1734,5263 +7766,6231,2013-11-06 23:41:09 -0800,1734,5263 +7767,3250,2013-11-07 02:38:40 -0800,1734,5263 +7768,2636,2013-11-12 14:05:17 -0800,1734,5263 +7769,2320,2013-11-09 11:33:36 -0800,1734,5263 +7770,9570,2013-11-08 06:46:10 -0800,1734,5263 +7771,2496,2013-11-10 21:01:44 -0800,1734,5263 +7772,8190,2013-11-07 19:50:12 -0800,1735,5267 +7773,7948,2013-11-09 01:10:15 -0800,1735,5265 +7774,9447,2013-11-08 10:25:24 -0800,1735,5264 +7775,8214,2013-11-10 21:22:44 -0800,1736,5271 +7776,7091,2013-11-08 18:41:26 -0800,1736,5271 +7777,5180,2013-11-11 01:24:32 -0800,1737,5273 +7778,746,2013-11-11 10:59:58 -0800,1738,5278 +7779,8239,2013-11-08 00:57:36 -0800,1738,5275 +7780,1378,2013-11-10 04:36:05 -0800,1738,5276 +7781,3670,2013-11-10 19:53:24 -0800,1738,5278 +7782,3925,2013-11-07 07:20:08 -0800,1738,5276 +7783,2010,2013-11-06 10:37:21 -0800,1738,5277 +7784,9050,2013-11-12 15:55:34 -0800,1738,5275 +7785,8900,2013-11-11 21:47:30 -0800,1738,5278 +7786,886,2013-11-06 19:16:19 -0800,1738,5276 +7787,7151,2013-11-07 02:06:25 -0800,1739,5279 +7788,2194,2013-11-10 19:30:56 -0800,1739,5279 +7789,8560,2013-11-13 00:56:18 -0800,1739,5279 +7790,7350,2013-11-12 22:23:38 -0800,1739,5280 +7791,2620,2013-11-08 05:01:58 -0800,1739,5280 +7792,7795,2013-11-08 18:25:03 -0800,1739,5279 +7793,9316,2013-11-07 01:18:57 -0800,1740,5281 +7794,9825,2013-11-13 01:54:50 -0800,1741,5286 +7795,5575,2013-11-08 06:38:02 -0800,1741,5286 +7796,4342,2013-11-07 01:15:17 -0800,1741,5286 +7797,2090,2013-11-09 20:30:06 -0800,1742,5287 +7798,8248,2013-11-07 18:58:09 -0800,1742,5290 +7799,4397,2013-11-06 21:38:59 -0800,1742,5287 +7800,7772,2013-11-10 03:37:16 -0800,1743,5292 +7801,7791,2013-11-12 20:36:52 -0800,1743,5291 +7802,8926,2013-11-07 08:13:32 -0800,1743,5293 +7803,1627,2013-11-13 04:57:05 -0800,1743,5292 +7804,6163,2013-11-10 00:56:40 -0800,1743,5292 +7805,3375,2013-11-12 10:05:15 -0800,1743,5293 +7806,6623,2013-11-07 15:28:01 -0800,1743,5292 +7807,3010,2013-11-11 14:13:31 -0800,1744,5294 +7808,1957,2013-11-08 04:26:14 -0800,1744,5294 +7809,167,2013-11-10 00:16:29 -0800,1744,5294 +7810,7458,2013-11-09 10:42:48 -0800,1744,5294 +7811,5774,2013-11-06 15:25:50 -0800,1744,5294 +7812,1464,2013-11-09 01:03:59 -0800,1744,5294 +7813,1173,2013-11-09 16:03:56 -0800,1744,5294 +7814,1585,2013-11-11 06:31:32 -0800,1744,5294 +7815,7130,2013-11-07 23:47:00 -0800,1744,5294 +7816,2178,2013-11-10 21:54:01 -0800,1745,5298 +7817,5819,2013-11-12 19:55:34 -0800,1745,5297 +7818,3775,2013-11-12 07:02:37 -0800,1745,5296 +7819,1560,2013-11-07 07:57:36 -0800,1745,5297 +7820,6516,2013-11-10 12:05:29 -0800,1745,5296 +7821,7166,2013-11-10 22:01:08 -0800,1745,5296 +7822,9777,2013-11-08 18:07:16 -0800,1745,5298 +7823,9275,2013-11-12 15:56:48 -0800,1745,5297 +7824,486,2013-11-10 05:49:48 -0800,1746,5301 +7825,6945,2013-11-06 20:51:24 -0800,1746,5300 +7826,8583,2013-11-10 06:50:42 -0800,1746,5301 +7827,7875,2013-11-07 22:39:39 -0800,1747,5302 +7828,5392,2013-11-11 22:07:14 -0800,1747,5302 +7829,7487,2013-11-10 11:39:38 -0800,1748,5303 +7830,4550,2013-11-12 16:34:07 -0800,1748,5303 +7831,3299,2013-11-12 14:51:52 -0800,1748,5303 +7832,4860,2013-11-12 10:55:32 -0800,1748,5303 +7833,1660,2013-11-11 09:16:21 -0800,1748,5303 +7834,5185,2013-11-10 18:50:46 -0800,1748,5303 +7835,334,2013-11-07 14:15:08 -0800,1748,5303 +7836,9521,2013-11-11 15:40:00 -0800,1748,5303 +7837,4876,2013-11-07 08:50:59 -0800,1749,5304 +7838,9680,2013-11-13 06:25:53 -0800,1749,5304 +7839,312,2013-11-08 13:47:03 -0800,1749,5304 +7840,11,2013-11-08 04:46:23 -0800,1749,5304 +7841,2761,2013-11-11 08:47:44 -0800,1749,5304 +7842,3761,2013-11-11 18:48:02 -0800,1749,5304 +7843,5323,2013-11-11 05:49:31 -0800,1749,5304 +7844,7686,2013-11-07 11:15:26 -0800,1749,5304 +7845,5467,2013-11-09 13:11:21 -0800,1749,5304 +7846,7794,2013-11-10 03:17:46 -0800,1750,5306 +7847,4983,2013-11-07 07:17:45 -0800,1750,5306 +7848,600,2013-11-09 08:19:36 -0800,1751,5308 +7849,7255,2013-11-09 11:24:12 -0800,1751,5307 +7850,3914,2013-11-11 01:50:21 -0800,1751,5307 +7851,4981,2013-11-08 21:08:16 -0800,1751,5309 +7852,124,2013-11-13 08:23:17 -0800,1752,5311 +7853,2395,2013-11-10 02:15:38 -0800,1752,5311 +7854,4547,2013-11-06 16:30:02 -0800,1752,5310 +7855,1323,2013-11-08 15:15:03 -0800,1752,5312 +7856,597,2013-11-07 18:31:21 -0800,1753,5313 +7857,4989,2013-11-10 07:34:59 -0800,1753,5314 +7858,1698,2013-11-09 19:36:45 -0800,1753,5315 +7859,7876,2013-11-11 01:16:13 -0800,1753,5313 +7860,9561,2013-11-09 17:20:25 -0800,1754,5318 +7861,3994,2013-11-07 22:49:12 -0800,1754,5318 +7862,2550,2013-11-07 11:11:03 -0800,1754,5317 +7863,3229,2013-11-10 09:26:26 -0800,1754,5316 +7864,8065,2013-11-09 22:47:32 -0800,1754,5317 +7865,8962,2013-11-09 05:20:05 -0800,1754,5320 +7866,9837,2013-11-13 07:01:38 -0800,1754,5318 +7867,381,2013-11-08 05:04:06 -0800,1755,5323 +7868,7709,2013-11-06 10:19:02 -0800,1755,5323 +7869,3850,2013-11-07 12:31:23 -0800,1755,5321 +7870,8354,2013-11-11 19:34:22 -0800,1755,5322 +7871,8495,2013-11-11 23:28:41 -0800,1755,5323 +7872,9429,2013-11-12 17:07:14 -0800,1755,5322 +7873,8150,2013-11-09 07:18:21 -0800,1755,5321 +7874,2518,2013-11-13 05:27:05 -0800,1755,5321 +7875,3636,2013-11-09 08:13:41 -0800,1756,5324 +7876,2116,2013-11-11 04:59:06 -0800,1756,5325 +7877,5335,2013-11-12 03:07:03 -0800,1756,5325 +7878,2788,2013-11-08 01:29:13 -0800,1756,5325 +7879,1913,2013-11-11 09:47:10 -0800,1757,5331 +7880,7858,2013-11-08 03:50:46 -0800,1757,5330 +7881,9835,2013-11-12 23:51:14 -0800,1757,5327 +7882,4167,2013-11-09 19:40:18 -0800,1757,5328 +7883,9827,2013-11-12 18:29:02 -0800,1757,5328 +7884,8016,2013-11-08 16:20:51 -0800,1757,5328 +7885,9630,2013-11-07 22:00:14 -0800,1757,5328 +7886,6876,2013-11-12 12:21:01 -0800,1757,5328 +7887,7827,2013-11-12 04:30:25 -0800,1758,5332 +7888,3579,2013-11-11 03:46:52 -0800,1758,5332 +7889,5879,2013-11-10 19:42:17 -0800,1758,5332 +7890,6374,2013-11-12 06:35:37 -0800,1758,5332 +7891,1726,2013-11-11 21:31:22 -0800,1758,5332 +7892,9491,2013-11-12 18:10:10 -0800,1758,5332 +7893,5557,2013-11-07 16:14:23 -0800,1758,5332 +7894,3234,2013-11-07 16:45:21 -0800,1758,5332 +7895,4480,2013-11-10 07:07:44 -0800,1759,5334 +7896,7163,2013-11-06 12:15:23 -0800,1761,5339 +7897,1966,2013-11-07 04:40:03 -0800,1761,5339 +7898,9026,2013-11-11 07:45:34 -0800,1761,5339 +7899,7097,2013-11-09 02:25:29 -0800,1761,5339 +7900,3376,2013-11-09 04:47:04 -0800,1761,5339 +7901,9173,2013-11-06 19:26:21 -0800,1761,5339 +7902,953,2013-11-08 18:50:58 -0800,1761,5339 +7903,5338,2013-11-11 22:35:18 -0800,1762,5341 +7904,5256,2013-11-07 21:52:15 -0800,1763,5345 +7905,1265,2013-11-06 18:23:04 -0800,1765,5350 +7906,9510,2013-11-08 15:33:54 -0800,1765,5349 +7907,6628,2013-11-07 20:10:00 -0800,1765,5351 +7908,5878,2013-11-07 19:13:45 -0800,1765,5350 +7909,385,2013-11-12 23:44:12 -0800,1765,5349 +7910,7350,2013-11-06 22:59:32 -0800,1765,5350 +7911,7866,2013-11-12 16:43:24 -0800,1766,5353 +7912,4733,2013-11-08 23:03:49 -0800,1766,5352 +7913,5615,2013-11-11 17:07:17 -0800,1768,5360 +7914,578,2013-11-10 22:26:05 -0800,1769,5362 +7915,7453,2013-11-06 18:56:44 -0800,1769,5361 +7916,9289,2013-11-08 22:40:51 -0800,1769,5361 +7917,4823,2013-11-06 18:10:35 -0800,1769,5364 +7918,1175,2013-11-10 04:52:21 -0800,1769,5363 +7919,3834,2013-11-11 06:02:41 -0800,1769,5364 +7920,4645,2013-11-07 02:11:17 -0800,1769,5363 +7921,2520,2013-11-08 12:38:24 -0800,1770,5366 +7922,7698,2013-11-12 19:45:58 -0800,1770,5367 +7923,1720,2013-11-11 04:34:20 -0800,1772,5372 +7924,4526,2013-11-12 23:43:42 -0800,1772,5372 +7925,3518,2013-11-12 22:27:46 -0800,1772,5372 +7926,8267,2013-11-07 02:10:30 -0800,1772,5372 +7927,9012,2013-11-13 00:28:41 -0800,1772,5372 +7928,994,2013-11-06 20:10:55 -0800,1772,5372 +7929,1160,2013-11-11 11:02:07 -0800,1772,5372 +7930,2080,2013-11-09 03:11:58 -0800,1772,5372 +7931,471,2013-11-07 18:19:27 -0800,1773,5373 +7932,227,2013-11-11 18:17:25 -0800,1773,5373 +7933,5940,2013-11-12 07:49:14 -0800,1773,5375 +7934,3040,2013-11-09 02:58:08 -0800,1773,5374 +7935,6060,2013-11-10 02:03:56 -0800,1773,5375 +7936,6983,2013-11-10 04:56:04 -0800,1773,5373 +7937,1117,2013-11-08 16:11:52 -0800,1773,5374 +7938,9588,2013-11-11 03:25:39 -0800,1773,5373 +7939,2290,2013-11-09 18:43:58 -0800,1774,5376 +7940,9330,2013-11-07 20:41:15 -0800,1774,5376 +7941,4424,2013-11-08 14:24:53 -0800,1774,5376 +7942,5191,2013-11-10 06:14:02 -0800,1774,5376 +7943,3198,2013-11-09 02:35:06 -0800,1774,5376 +7944,9553,2013-11-13 02:11:08 -0800,1774,5376 +7945,3360,2013-11-11 00:14:54 -0800,1775,5379 +7946,7727,2013-11-07 07:26:09 -0800,1775,5380 +7947,616,2013-11-08 07:32:44 -0800,1775,5378 +7948,3438,2013-11-09 00:09:19 -0800,1775,5379 +7949,5212,2013-11-07 08:20:48 -0800,1775,5381 +7950,827,2013-11-06 14:02:54 -0800,1775,5381 +7951,2782,2013-11-10 07:02:53 -0800,1775,5379 +7952,4470,2013-11-06 12:36:15 -0800,1776,5384 +7953,88,2013-11-09 07:56:38 -0800,1776,5385 +7954,6768,2013-11-13 07:51:54 -0800,1776,5382 +7955,8974,2013-11-12 07:46:21 -0800,1776,5382 +7956,3383,2013-11-10 13:27:19 -0800,1776,5383 +7957,7150,2013-11-12 15:57:52 -0800,1776,5384 +7958,5851,2013-11-12 18:01:13 -0800,1776,5384 +7959,925,2013-11-07 00:58:56 -0800,1776,5385 +7960,8245,2013-11-07 11:27:55 -0800,1777,5386 +7961,8017,2013-11-09 17:27:56 -0800,1777,5386 +7962,4595,2013-11-11 12:06:27 -0800,1777,5386 +7963,4520,2013-11-07 21:46:47 -0800,1777,5386 +7964,3667,2013-11-12 20:07:51 -0800,1777,5386 +7965,7094,2013-11-09 17:10:05 -0800,1777,5386 +7966,9714,2013-11-12 01:49:55 -0800,1777,5386 +7967,6478,2013-11-09 18:57:41 -0800,1777,5386 +7968,3976,2013-11-13 02:46:03 -0800,1779,5393 +7969,1532,2013-11-08 23:50:07 -0800,1779,5393 +7970,5073,2013-11-11 13:23:00 -0800,1779,5393 +7971,9144,2013-11-10 07:34:11 -0800,1779,5393 +7972,4526,2013-11-12 04:15:16 -0800,1779,5393 +7973,7533,2013-11-09 09:07:33 -0800,1779,5395 +7974,3310,2013-11-12 01:29:13 -0800,1779,5395 +7975,4258,2013-11-08 01:09:36 -0800,1779,5393 +7976,6186,2013-11-13 02:20:59 -0800,1780,5396 +7977,747,2013-11-07 01:10:16 -0800,1780,5399 +7978,4815,2013-11-06 10:56:14 -0800,1780,5396 +7979,112,2013-11-10 02:41:07 -0800,1780,5398 +7980,7509,2013-11-07 07:35:50 -0800,1780,5398 +7981,8255,2013-11-11 04:06:54 -0800,1780,5399 +7982,1885,2013-11-07 19:29:47 -0800,1781,5400 +7983,3393,2013-11-12 22:00:41 -0800,1781,5400 +7984,8674,2013-11-07 20:14:07 -0800,1781,5400 +7985,4433,2013-11-12 15:45:07 -0800,1781,5401 +7986,9769,2013-11-08 14:36:49 -0800,1781,5400 +7987,760,2013-11-12 12:33:34 -0800,1781,5401 +7988,4331,2013-11-07 20:17:08 -0800,1781,5402 +7989,5618,2013-11-09 16:07:18 -0800,1781,5402 +7990,5739,2013-11-10 05:42:53 -0800,1782,5403 +7991,1811,2013-11-11 05:46:12 -0800,1782,5406 +7992,8313,2013-11-08 21:26:56 -0800,1782,5404 +7993,6683,2013-11-12 20:32:17 -0800,1782,5404 +7994,8062,2013-11-08 23:45:48 -0800,1782,5403 +7995,1775,2013-11-08 10:46:36 -0800,1784,5412 +7996,5950,2013-11-09 15:33:55 -0800,1784,5412 +7997,2453,2013-11-12 21:11:36 -0800,1784,5412 +7998,6909,2013-11-09 04:42:23 -0800,1784,5412 +7999,6958,2013-11-07 11:11:05 -0800,1784,5412 +8000,6081,2013-11-11 15:08:47 -0800,1785,5414 +8001,2235,2013-11-13 05:18:30 -0800,1785,5414 +8002,9088,2013-11-06 20:34:26 -0800,1785,5414 +8003,7184,2013-11-11 05:52:38 -0800,1785,5413 +8004,1873,2013-11-06 16:36:46 -0800,1785,5414 +8005,7663,2013-11-13 04:31:37 -0800,1785,5414 +8006,7379,2013-11-11 05:26:25 -0800,1786,5415 +8007,2341,2013-11-07 16:07:03 -0800,1786,5415 +8008,1876,2013-11-11 22:34:10 -0800,1786,5417 +8009,9727,2013-11-09 01:31:02 -0800,1787,5420 +8010,8133,2013-11-10 10:48:59 -0800,1787,5421 +8011,7427,2013-11-06 22:51:50 -0800,1787,5419 +8012,7553,2013-11-12 17:59:47 -0800,1788,5422 +8013,7851,2013-11-06 19:24:03 -0800,1788,5425 +8014,9226,2013-11-09 02:01:00 -0800,1788,5422 +8015,8563,2013-11-07 16:27:50 -0800,1788,5424 +8016,409,2013-11-13 06:57:48 -0800,1788,5423 +8017,955,2013-11-13 06:27:30 -0800,1788,5425 +8018,98,2013-11-12 14:10:07 -0800,1788,5422 +8019,9555,2013-11-06 17:13:52 -0800,1789,5426 +8020,1971,2013-11-10 11:09:08 -0800,1790,5431 +8021,8391,2013-11-10 19:16:18 -0800,1790,5431 +8022,3894,2013-11-06 10:52:50 -0800,1791,5432 +8023,9869,2013-11-06 13:24:25 -0800,1791,5433 +8024,6328,2013-11-08 23:33:01 -0800,1791,5435 +8025,4914,2013-11-10 08:30:40 -0800,1791,5435 +8026,3281,2013-11-09 07:48:49 -0800,1792,5437 +8027,9336,2013-11-10 19:22:45 -0800,1792,5438 +8028,7220,2013-11-08 07:37:12 -0800,1792,5437 +8029,6639,2013-11-08 22:17:56 -0800,1792,5437 +8030,1027,2013-11-10 20:41:08 -0800,1792,5437 +8031,3426,2013-11-10 13:25:26 -0800,1793,5442 +8032,7384,2013-11-12 23:09:34 -0800,1793,5440 +8033,5682,2013-11-11 21:11:47 -0800,1793,5441 +8034,7315,2013-11-09 20:20:19 -0800,1793,5443 +8035,5080,2013-11-12 10:02:00 -0800,1796,5449 +8036,6750,2013-11-10 13:04:22 -0800,1796,5449 +8037,3171,2013-11-06 10:41:05 -0800,1796,5447 +8038,6354,2013-11-12 19:28:33 -0800,1797,5452 +8039,4040,2013-11-10 08:14:24 -0800,1797,5452 +8040,7964,2013-11-12 18:59:29 -0800,1797,5451 +8041,4821,2013-11-06 19:50:16 -0800,1797,5451 +8042,3278,2013-11-12 11:22:07 -0800,1797,5452 +8043,2613,2013-11-11 13:06:33 -0800,1798,5453 +8044,7919,2013-11-12 12:26:58 -0800,1798,5453 +8045,3988,2013-11-12 16:07:45 -0800,1799,5454 +8046,2924,2013-11-08 15:55:13 -0800,1799,5454 +8047,5381,2013-11-06 22:07:53 -0800,1799,5454 +8048,5575,2013-11-11 20:35:20 -0800,1799,5454 +8049,4790,2013-11-10 14:05:18 -0800,1799,5454 +8050,6841,2013-11-10 15:08:07 -0800,1799,5454 +8051,3540,2013-11-06 09:14:46 -0800,1799,5454 +8052,5192,2013-11-08 11:01:30 -0800,1800,5458 +8053,3697,2013-11-06 15:15:13 -0800,1800,5459 +8054,8230,2013-11-12 04:25:41 -0800,1801,5460 +8055,9513,2013-11-09 20:52:05 -0800,1801,5460 +8056,3950,2013-11-06 19:11:46 -0800,1801,5460 +8057,1494,2013-11-12 08:48:11 -0800,1801,5460 +8058,3270,2013-11-10 01:08:32 -0800,1801,5460 +8059,2313,2013-11-07 20:21:58 -0800,1801,5460 +8060,4535,2013-11-07 03:39:51 -0800,1801,5460 +8061,7914,2013-11-11 14:14:38 -0800,1801,5460 +8062,9616,2013-11-06 14:12:53 -0800,1801,5460 +8063,6520,2013-11-13 00:44:49 -0800,1802,5461 +8064,1982,2013-11-10 20:28:51 -0800,1802,5461 +8065,5873,2013-11-08 18:53:53 -0800,1802,5461 +8066,4224,2013-11-11 12:40:16 -0800,1802,5461 +8067,3030,2013-11-10 05:58:56 -0800,1802,5461 +8068,1977,2013-11-07 08:28:29 -0800,1803,5462 +8069,8223,2013-11-12 03:37:32 -0800,1803,5462 +8070,8590,2013-11-11 22:26:51 -0800,1803,5462 +8071,3536,2013-11-13 07:25:46 -0800,1803,5463 +8072,6670,2013-11-12 19:19:07 -0800,1803,5463 +8073,7530,2013-11-11 07:44:30 -0800,1804,5464 +8074,7622,2013-11-08 03:17:13 -0800,1804,5464 +8075,7341,2013-11-09 00:55:11 -0800,1804,5465 +8076,8897,2013-11-12 04:23:05 -0800,1804,5465 +8077,1531,2013-11-12 12:44:48 -0800,1804,5465 +8078,4829,2013-11-07 06:34:50 -0800,1804,5464 +8079,5857,2013-11-12 15:18:19 -0800,1804,5465 +8080,135,2013-11-10 18:53:42 -0800,1804,5465 +8081,4243,2013-11-12 04:48:07 -0800,1805,5468 +8082,7726,2013-11-11 02:53:32 -0800,1805,5468 +8083,1625,2013-11-13 08:32:31 -0800,1805,5468 +8084,6054,2013-11-13 07:05:41 -0800,1805,5467 +8085,4461,2013-11-11 23:51:11 -0800,1806,5469 +8086,4291,2013-11-06 21:39:36 -0800,1807,5474 +8087,8034,2013-11-10 20:43:55 -0800,1807,5474 +8088,6063,2013-11-09 21:03:06 -0800,1807,5474 +8089,1760,2013-11-11 10:06:29 -0800,1807,5474 +8090,1864,2013-11-13 07:49:45 -0800,1807,5474 +8091,5490,2013-11-11 03:23:52 -0800,1807,5474 +8092,3990,2013-11-13 03:46:54 -0800,1808,5477 +8093,3358,2013-11-08 03:49:11 -0800,1808,5479 +8094,1069,2013-11-10 19:11:52 -0800,1808,5475 +8095,9087,2013-11-07 08:01:43 -0800,1809,5483 +8096,1841,2013-11-09 07:47:17 -0800,1809,5480 +8097,4294,2013-11-12 20:46:43 -0800,1809,5482 +8098,5913,2013-11-12 02:10:00 -0800,1809,5480 +8099,831,2013-11-12 12:37:37 -0800,1809,5481 +8100,3742,2013-11-09 14:11:09 -0800,1809,5480 +8101,6442,2013-11-09 20:36:04 -0800,1809,5482 +8102,1574,2013-11-12 13:12:01 -0800,1809,5482 +8103,810,2013-11-07 12:54:43 -0800,1809,5481 +8104,5665,2013-11-13 07:07:28 -0800,1811,5487 +8105,1942,2013-11-10 11:00:00 -0800,1811,5487 +8106,1353,2013-11-06 18:07:47 -0800,1811,5490 +8107,1070,2013-11-12 20:23:37 -0800,1811,5489 +8108,5286,2013-11-12 00:11:51 -0800,1811,5490 +8109,9488,2013-11-09 23:06:33 -0800,1811,5487 +8110,3645,2013-11-08 22:02:45 -0800,1811,5489 +8111,8549,2013-11-07 16:54:37 -0800,1811,5488 +8112,9747,2013-11-07 17:51:49 -0800,1811,5490 +8113,7083,2013-11-12 02:28:43 -0800,1812,5491 +8114,9455,2013-11-09 05:47:22 -0800,1812,5493 +8115,1231,2013-11-07 15:24:54 -0800,1812,5493 +8116,6279,2013-11-08 20:57:45 -0800,1812,5495 +8117,950,2013-11-11 21:16:55 -0800,1813,5496 +8118,2935,2013-11-13 01:48:47 -0800,1813,5496 +8119,2877,2013-11-09 12:54:29 -0800,1813,5496 +8120,8094,2013-11-07 14:25:07 -0800,1813,5496 +8121,741,2013-11-09 22:57:41 -0800,1813,5496 +8122,6770,2013-11-10 09:07:27 -0800,1813,5496 +8123,7295,2013-11-08 12:45:52 -0800,1813,5496 +8124,5449,2013-11-13 03:09:57 -0800,1814,5497 +8125,9811,2013-11-06 17:25:37 -0800,1816,5503 +8126,1539,2013-11-07 14:30:23 -0800,1816,5502 +8127,3358,2013-11-11 15:13:05 -0800,1816,5502 +8128,7322,2013-11-11 09:49:16 -0800,1816,5503 +8129,5920,2013-11-07 07:27:09 -0800,1817,5504 +8130,8794,2013-11-09 03:19:04 -0800,1817,5505 +8131,6149,2013-11-07 06:02:20 -0800,1817,5505 +8132,2766,2013-11-07 07:21:54 -0800,1817,5505 +8133,3992,2013-11-09 18:06:05 -0800,1818,5507 +8134,8782,2013-11-09 11:43:58 -0800,1818,5507 +8135,3800,2013-11-12 20:14:50 -0800,1818,5508 +8136,4098,2013-11-11 06:39:14 -0800,1818,5507 +8137,3719,2013-11-12 18:53:48 -0800,1819,5512 +8138,5360,2013-11-07 15:10:51 -0800,1819,5511 +8139,4450,2013-11-11 08:30:12 -0800,1819,5512 +8140,189,2013-11-11 13:39:32 -0800,1819,5511 +8141,2115,2013-11-06 23:07:18 -0800,1819,5514 +8142,272,2013-11-11 00:51:21 -0800,1819,5513 +8143,9610,2013-11-08 21:38:16 -0800,1819,5514 +8144,3371,2013-11-06 10:18:43 -0800,1819,5513 +8145,3957,2013-11-12 08:52:49 -0800,1819,5514 +8146,1987,2013-11-07 23:20:54 -0800,1820,5519 +8147,9453,2013-11-12 00:31:34 -0800,1820,5518 +8148,8714,2013-11-07 21:37:55 -0800,1820,5516 +8149,6662,2013-11-11 09:40:24 -0800,1820,5519 +8150,4236,2013-11-07 18:23:58 -0800,1820,5515 +8151,2689,2013-11-08 08:16:59 -0800,1820,5516 +8152,5450,2013-11-11 17:38:45 -0800,1820,5515 +8153,9625,2013-11-12 00:31:58 -0800,1821,5520 +8154,7430,2013-11-08 18:46:44 -0800,1821,5520 +8155,8131,2013-11-08 02:36:29 -0800,1821,5520 +8156,9187,2013-11-12 17:35:54 -0800,1821,5520 +8157,6414,2013-11-07 19:36:05 -0800,1821,5520 +8158,638,2013-11-08 17:12:54 -0800,1822,5521 +8159,4685,2013-11-12 11:10:08 -0800,1822,5521 +8160,1192,2013-11-09 06:17:28 -0800,1822,5521 +8161,7990,2013-11-10 19:54:35 -0800,1822,5522 +8162,3229,2013-11-13 05:40:35 -0800,1822,5522 +8163,5982,2013-11-12 15:03:53 -0800,1822,5522 +8164,6065,2013-11-07 02:07:32 -0800,1822,5522 +8165,5469,2013-11-13 03:20:11 -0800,1823,5524 +8166,9821,2013-11-10 10:57:50 -0800,1823,5523 +8167,7883,2013-11-09 23:35:56 -0800,1823,5523 +8168,8331,2013-11-08 23:25:04 -0800,1823,5526 +8169,4530,2013-11-10 00:44:26 -0800,1823,5525 +8170,444,2013-11-07 02:35:34 -0800,1823,5526 +8171,7677,2013-11-10 22:14:22 -0800,1824,5528 +8172,7531,2013-11-09 00:53:55 -0800,1824,5528 +8173,429,2013-11-13 05:07:01 -0800,1824,5527 +8174,9534,2013-11-13 04:28:08 -0800,1824,5528 +8175,1780,2013-11-09 09:39:43 -0800,1824,5527 +8176,6085,2013-11-10 10:05:53 -0800,1825,5530 +8177,8988,2013-11-12 07:13:15 -0800,1825,5529 +8178,835,2013-11-08 11:25:15 -0800,1825,5530 +8179,2286,2013-11-10 04:48:50 -0800,1825,5529 +8180,5937,2013-11-13 01:38:55 -0800,1825,5530 +8181,4365,2013-11-08 10:35:34 -0800,1826,5531 +8182,8472,2013-11-10 07:32:56 -0800,1826,5534 +8183,4623,2013-11-08 03:14:27 -0800,1826,5532 +8184,5457,2013-11-11 07:09:51 -0800,1826,5533 +8185,7115,2013-11-13 03:44:24 -0800,1826,5531 +8186,1959,2013-11-08 03:13:02 -0800,1826,5533 +8187,3864,2013-11-08 09:15:19 -0800,1826,5534 +8188,8459,2013-11-10 21:44:15 -0800,1826,5532 +8189,125,2013-11-11 11:48:03 -0800,1827,5535 +8190,2513,2013-11-12 19:21:29 -0800,1827,5535 +8191,5353,2013-11-08 12:26:08 -0800,1827,5535 +8192,9532,2013-11-10 19:12:42 -0800,1827,5535 +8193,2915,2013-11-13 06:44:50 -0800,1827,5535 +8194,1647,2013-11-09 15:18:36 -0800,1827,5535 +8195,2086,2013-11-11 01:52:32 -0800,1827,5535 +8196,2513,2013-11-11 00:57:42 -0800,1827,5535 +8197,6640,2013-11-09 19:14:21 -0800,1827,5535 +8198,3633,2013-11-09 23:20:31 -0800,1828,5537 +8199,1630,2013-11-08 03:29:52 -0800,1829,5544 +8200,1213,2013-11-10 09:34:12 -0800,1829,5543 +8201,2897,2013-11-09 09:46:34 -0800,1829,5542 +8202,1043,2013-11-11 08:20:22 -0800,1829,5544 +8203,9569,2013-11-12 23:57:55 -0800,1829,5543 +8204,5377,2013-11-07 21:08:00 -0800,1829,5544 +8205,259,2013-11-06 21:08:24 -0800,1829,5544 +8206,570,2013-11-11 16:53:15 -0800,1829,5543 +8207,7563,2013-11-06 15:50:19 -0800,1829,5544 +8208,2700,2013-11-07 08:06:17 -0800,1830,5545 +8209,891,2013-11-09 17:19:26 -0800,1830,5546 +8210,9778,2013-11-09 05:26:59 -0800,1830,5546 +8211,2075,2013-11-12 23:40:34 -0800,1830,5546 +8212,666,2013-11-06 15:18:55 -0800,1830,5545 +8213,7552,2013-11-10 01:19:32 -0800,1830,5546 +8214,861,2013-11-08 19:40:01 -0800,1830,5545 +8215,7450,2013-11-12 22:53:18 -0800,1830,5545 +8216,7566,2013-11-11 06:03:56 -0800,1832,5553 +8217,2564,2013-11-11 17:36:39 -0800,1832,5549 +8218,2291,2013-11-11 13:53:06 -0800,1832,5552 +8219,6736,2013-11-07 06:08:54 -0800,1832,5551 +8220,7931,2013-11-12 19:32:32 -0800,1832,5550 +8221,4014,2013-11-10 01:03:41 -0800,1832,5552 +8222,2543,2013-11-07 02:14:47 -0800,1832,5552 +8223,7434,2013-11-11 09:58:10 -0800,1832,5551 +8224,8690,2013-11-10 12:00:42 -0800,1832,5550 +8225,2888,2013-11-11 05:44:15 -0800,1833,5554 +8226,991,2013-11-12 09:41:57 -0800,1834,5556 +8227,3188,2013-11-13 01:06:02 -0800,1834,5559 +8228,9232,2013-11-12 06:40:52 -0800,1835,5562 +8229,9643,2013-11-12 13:15:17 -0800,1835,5564 +8230,9117,2013-11-09 04:53:20 -0800,1835,5564 +8231,3078,2013-11-06 20:08:42 -0800,1835,5564 +8232,6979,2013-11-12 08:47:09 -0800,1835,5560 +8233,4420,2013-11-10 21:58:09 -0800,1835,5562 +8234,1972,2013-11-09 11:57:56 -0800,1835,5560 +8235,7770,2013-11-08 13:28:06 -0800,1835,5562 +8236,7748,2013-11-07 00:12:42 -0800,1835,5562 +8237,8889,2013-11-11 19:20:52 -0800,1836,5567 +8238,8952,2013-11-10 10:06:39 -0800,1836,5566 +8239,1664,2013-11-10 01:00:49 -0800,1836,5566 +8240,7973,2013-11-13 03:55:04 -0800,1836,5569 +8241,7417,2013-11-11 22:25:35 -0800,1836,5567 +8242,5510,2013-11-10 23:01:37 -0800,1836,5568 +8243,3411,2013-11-10 17:26:13 -0800,1836,5566 +8244,4252,2013-11-07 04:15:43 -0800,1837,5572 +8245,6690,2013-11-08 05:27:52 -0800,1837,5573 +8246,8184,2013-11-13 02:08:39 -0800,1838,5575 +8247,1987,2013-11-11 02:21:16 -0800,1838,5575 +8248,8350,2013-11-11 02:32:57 -0800,1838,5575 +8249,5016,2013-11-12 12:38:48 -0800,1838,5575 +8250,9680,2013-11-09 05:51:34 -0800,1838,5575 +8251,5170,2013-11-06 17:26:52 -0800,1838,5575 +8252,3832,2013-11-09 09:50:26 -0800,1838,5575 +8253,1189,2013-11-08 17:55:00 -0800,1838,5575 +8254,3820,2013-11-11 21:33:12 -0800,1838,5575 +8255,6751,2013-11-07 21:30:12 -0800,1839,5579 +8256,9037,2013-11-09 18:17:28 -0800,1839,5576 +8257,3583,2013-11-07 14:11:59 -0800,1839,5579 +8258,2276,2013-11-08 11:50:13 -0800,1839,5580 +8259,5976,2013-11-11 13:31:43 -0800,1839,5576 +8260,3279,2013-11-06 15:20:39 -0800,1839,5579 +8261,7765,2013-11-10 15:45:48 -0800,1840,5582 +8262,612,2013-11-09 11:15:18 -0800,1840,5583 +8263,7558,2013-11-10 16:18:29 -0800,1840,5585 +8264,3661,2013-11-06 13:52:59 -0800,1840,5584 +8265,5137,2013-11-11 09:23:10 -0800,1840,5584 +8266,8898,2013-11-12 07:46:09 -0800,1840,5582 +8267,5342,2013-11-12 02:29:17 -0800,1840,5583 +8268,7462,2013-11-07 07:48:17 -0800,1840,5581 +8269,6300,2013-11-12 20:34:20 -0800,1841,5587 +8270,9567,2013-11-13 03:43:10 -0800,1841,5586 +8271,7223,2013-11-12 15:51:45 -0800,1842,5589 +8272,6614,2013-11-11 11:26:32 -0800,1842,5589 +8273,1385,2013-11-06 10:14:01 -0800,1843,5593 +8274,1835,2013-11-12 09:19:16 -0800,1844,5597 +8275,4630,2013-11-09 07:24:28 -0800,1844,5596 +8276,3319,2013-11-12 07:10:39 -0800,1845,5598 +8277,5665,2013-11-09 03:01:51 -0800,1845,5598 +8278,2793,2013-11-12 02:42:30 -0800,1846,5600 +8279,8837,2013-11-07 10:17:33 -0800,1846,5600 +8280,8468,2013-11-08 07:19:18 -0800,1846,5600 +8281,319,2013-11-09 01:11:28 -0800,1846,5600 +8282,4324,2013-11-09 10:24:57 -0800,1846,5599 +8283,1087,2013-11-07 14:53:18 -0800,1846,5600 +8284,742,2013-11-07 10:57:41 -0800,1847,5601 +8285,8324,2013-11-11 11:06:28 -0800,1847,5601 +8286,2087,2013-11-08 03:16:45 -0800,1847,5601 +8287,5154,2013-11-13 03:23:16 -0800,1847,5601 +8288,591,2013-11-09 11:29:54 -0800,1848,5602 +8289,1083,2013-11-09 22:35:56 -0800,1848,5603 +8290,254,2013-11-09 17:24:13 -0800,1849,5604 +8291,5028,2013-11-11 23:22:09 -0800,1849,5604 +8292,7022,2013-11-08 23:11:40 -0800,1849,5604 +8293,9700,2013-11-10 11:39:03 -0800,1849,5604 +8294,1625,2013-11-11 03:30:48 -0800,1850,5606 +8295,3783,2013-11-09 01:25:37 -0800,1850,5607 +8296,9300,2013-11-12 17:47:39 -0800,1850,5606 +8297,9241,2013-11-10 17:06:02 -0800,1850,5609 +8298,9491,2013-11-11 13:13:29 -0800,1850,5605 +8299,8722,2013-11-10 11:01:11 -0800,1850,5605 +8300,2020,2013-11-10 04:18:24 -0800,1851,5611 +8301,2216,2013-11-11 07:14:01 -0800,1851,5610 +8302,2120,2013-11-06 10:07:43 -0800,1852,5612 +8303,361,2013-11-09 12:31:32 -0800,1852,5612 +8304,7022,2013-11-10 10:17:00 -0800,1852,5612 +8305,9240,2013-11-08 13:54:31 -0800,1852,5613 +8306,2892,2013-11-08 20:35:50 -0800,1852,5612 +8307,4847,2013-11-10 04:29:21 -0800,1852,5613 +8308,3260,2013-11-07 20:06:32 -0800,1852,5613 +8309,4859,2013-11-11 22:39:30 -0800,1853,5614 +8310,3492,2013-11-11 01:54:58 -0800,1853,5614 +8311,2755,2013-11-08 13:08:19 -0800,1853,5614 +8312,6579,2013-11-12 22:54:46 -0800,1854,5615 +8313,9135,2013-11-07 23:29:43 -0800,1854,5619 +8314,8520,2013-11-11 18:04:27 -0800,1854,5619 +8315,2466,2013-11-12 18:01:11 -0800,1854,5619 +8316,1967,2013-11-13 01:56:36 -0800,1855,5621 +8317,5076,2013-11-10 05:58:45 -0800,1855,5620 +8318,2552,2013-11-12 17:43:29 -0800,1855,5620 +8319,5139,2013-11-11 03:30:50 -0800,1855,5621 +8320,2230,2013-11-11 06:25:35 -0800,1855,5621 +8321,3461,2013-11-10 18:46:29 -0800,1855,5621 +8322,282,2013-11-11 11:39:43 -0800,1855,5620 +8323,8070,2013-11-07 06:09:02 -0800,1855,5620 +8324,6781,2013-11-12 17:31:47 -0800,1855,5620 +8325,7041,2013-11-10 02:07:29 -0800,1856,5625 +8326,9228,2013-11-08 10:46:48 -0800,1856,5625 +8327,7073,2013-11-07 17:00:04 -0800,1856,5624 +8328,8891,2013-11-09 08:14:12 -0800,1856,5625 +8329,2777,2013-11-08 08:22:43 -0800,1856,5623 +8330,8497,2013-11-09 12:01:31 -0800,1856,5624 +8331,5963,2013-11-09 21:18:48 -0800,1858,5634 +8332,2227,2013-11-10 19:19:52 -0800,1858,5633 +8333,1156,2013-11-10 08:36:47 -0800,1858,5632 +8334,9465,2013-11-11 21:09:48 -0800,1858,5636 +8335,27,2013-11-12 12:10:19 -0800,1858,5636 +8336,3290,2013-11-09 04:41:32 -0800,1858,5634 +8337,2840,2013-11-13 05:24:42 -0800,1859,5641 +8338,6447,2013-11-07 10:10:42 -0800,1859,5638 +8339,110,2013-11-08 08:34:18 -0800,1859,5640 +8340,4671,2013-11-10 19:29:26 -0800,1859,5638 +8341,4479,2013-11-09 11:36:45 -0800,1859,5638 +8342,5157,2013-11-13 07:48:21 -0800,1859,5640 +8343,3460,2013-11-12 19:53:58 -0800,1859,5638 +8344,5048,2013-11-07 00:35:42 -0800,1859,5637 +8345,6476,2013-11-06 20:56:33 -0800,1860,5643 +8346,3882,2013-11-09 20:28:08 -0800,1860,5643 +8347,2618,2013-11-08 17:54:47 -0800,1861,5644 +8348,3020,2013-11-10 03:36:06 -0800,1861,5644 +8349,6047,2013-11-07 03:02:04 -0800,1861,5645 +8350,3094,2013-11-08 02:16:05 -0800,1861,5644 +8351,4134,2013-11-09 02:19:21 -0800,1861,5645 +8352,5140,2013-11-12 07:20:09 -0800,1862,5646 +8353,5929,2013-11-09 02:32:34 -0800,1862,5646 +8354,8166,2013-11-08 20:00:15 -0800,1862,5646 +8355,7236,2013-11-07 00:34:05 -0800,1862,5646 +8356,1124,2013-11-09 22:49:17 -0800,1862,5646 +8357,9657,2013-11-10 05:44:04 -0800,1863,5648 +8358,9638,2013-11-12 20:02:42 -0800,1863,5647 +8359,1598,2013-11-08 10:46:43 -0800,1863,5648 +8360,560,2013-11-09 06:25:59 -0800,1863,5648 +8361,2597,2013-11-12 11:27:59 -0800,1864,5653 +8362,1068,2013-11-12 09:37:57 -0800,1864,5651 +8363,815,2013-11-08 19:12:22 -0800,1865,5658 +8364,5341,2013-11-06 15:29:31 -0800,1866,5660 +8365,5487,2013-11-06 09:07:42 -0800,1866,5661 +8366,44,2013-11-06 16:41:08 -0800,1866,5660 +8367,5033,2013-11-08 19:23:13 -0800,1866,5659 +8368,9446,2013-11-10 12:24:16 -0800,1866,5661 +8369,4522,2013-11-08 05:02:00 -0800,1866,5662 +8370,6952,2013-11-09 01:56:02 -0800,1867,5665 +8371,8645,2013-11-11 22:05:30 -0800,1867,5663 +8372,4894,2013-11-10 10:11:53 -0800,1867,5666 +8373,5421,2013-11-07 05:08:41 -0800,1868,5668 +8374,4689,2013-11-12 04:47:55 -0800,1868,5669 +8375,9357,2013-11-06 19:34:13 -0800,1868,5668 +8376,532,2013-11-12 01:48:30 -0800,1868,5668 +8377,3130,2013-11-07 03:22:55 -0800,1868,5668 +8378,9582,2013-11-12 07:13:45 -0800,1868,5668 +8379,7640,2013-11-11 20:36:49 -0800,1868,5668 +8380,8523,2013-11-11 03:16:46 -0800,1870,5671 +8381,4153,2013-11-12 01:33:03 -0800,1870,5671 +8382,2554,2013-11-12 11:38:48 -0800,1870,5671 +8383,3167,2013-11-09 09:26:02 -0800,1870,5671 +8384,2429,2013-11-06 18:15:48 -0800,1873,5676 +8385,6541,2013-11-07 00:25:39 -0800,1873,5676 +8386,9483,2013-11-08 13:40:10 -0800,1874,5680 +8387,9076,2013-11-12 23:32:41 -0800,1874,5680 +8388,6362,2013-11-10 15:49:04 -0800,1874,5679 +8389,1536,2013-11-07 17:17:49 -0800,1874,5679 +8390,210,2013-11-12 04:58:21 -0800,1874,5678 +8391,1461,2013-11-07 09:49:05 -0800,1874,5678 +8392,300,2013-11-11 22:07:19 -0800,1874,5680 +8393,3490,2013-11-11 14:45:46 -0800,1874,5678 +8394,639,2013-11-08 15:59:06 -0800,1874,5680 +8395,7290,2013-11-07 22:41:45 -0800,1875,5683 +8396,9530,2013-11-09 02:18:16 -0800,1875,5681 +8397,3229,2013-11-11 06:07:28 -0800,1876,5685 +8398,7566,2013-11-06 22:08:05 -0800,1876,5686 +8399,4718,2013-11-09 09:57:30 -0800,1876,5686 +8400,2254,2013-11-11 23:53:04 -0800,1876,5685 +8401,5130,2013-11-09 16:10:28 -0800,1876,5686 +8402,4390,2013-11-10 20:25:51 -0800,1876,5686 +8403,5489,2013-11-10 10:01:12 -0800,1876,5686 +8404,6956,2013-11-12 19:48:37 -0800,1877,5687 +8405,4219,2013-11-12 10:14:21 -0800,1877,5687 +8406,3544,2013-11-11 22:35:27 -0800,1877,5687 +8407,1829,2013-11-11 21:21:38 -0800,1877,5687 +8408,6130,2013-11-07 08:30:13 -0800,1877,5687 +8409,3878,2013-11-08 13:02:44 -0800,1877,5687 +8410,3089,2013-11-09 00:47:42 -0800,1877,5687 +8411,4723,2013-11-11 16:22:22 -0800,1877,5687 +8412,5111,2013-11-08 07:15:29 -0800,1878,5688 +8413,2554,2013-11-12 12:05:50 -0800,1878,5688 +8414,8316,2013-11-06 11:22:48 -0800,1878,5688 +8415,6163,2013-11-11 19:25:00 -0800,1878,5688 +8416,12,2013-11-08 16:49:19 -0800,1878,5688 +8417,9656,2013-11-09 20:02:58 -0800,1878,5688 +8418,6483,2013-11-11 18:29:15 -0800,1878,5688 +8419,6833,2013-11-11 22:04:34 -0800,1878,5688 +8420,7025,2013-11-07 11:03:16 -0800,1878,5688 +8421,2897,2013-11-11 07:07:45 -0800,1879,5690 +8422,8360,2013-11-11 16:35:42 -0800,1879,5691 +8423,530,2013-11-10 23:59:25 -0800,1879,5691 +8424,4836,2013-11-11 11:45:57 -0800,1879,5691 +8425,8996,2013-11-07 05:09:26 -0800,1879,5691 +8426,4683,2013-11-07 08:37:27 -0800,1880,5694 +8427,1591,2013-11-11 12:41:57 -0800,1880,5695 +8428,790,2013-11-10 03:51:06 -0800,1880,5695 +8429,6719,2013-11-13 08:14:28 -0800,1881,5699 +8430,1939,2013-11-11 08:27:45 -0800,1881,5697 +8431,8330,2013-11-12 00:33:59 -0800,1881,5698 +8432,9512,2013-11-08 01:23:06 -0800,1882,5700 +8433,6430,2013-11-13 07:31:23 -0800,1883,5704 +8434,4164,2013-11-11 06:32:34 -0800,1883,5704 +8435,8712,2013-11-07 00:16:28 -0800,1883,5704 +8436,9113,2013-11-12 04:08:34 -0800,1884,5708 +8437,9486,2013-11-09 09:14:11 -0800,1884,5707 +8438,682,2013-11-13 04:15:13 -0800,1884,5708 +8439,8393,2013-11-09 09:52:27 -0800,1884,5706 +8440,4718,2013-11-09 21:06:24 -0800,1884,5705 +8441,9751,2013-11-11 08:48:52 -0800,1885,5713 +8442,4345,2013-11-07 14:40:37 -0800,1885,5713 +8443,4553,2013-11-12 16:01:57 -0800,1886,5719 +8444,1384,2013-11-08 15:58:22 -0800,1886,5719 +8445,5146,2013-11-07 12:20:28 -0800,1886,5715 +8446,3276,2013-11-12 17:29:26 -0800,1887,5722 +8447,1747,2013-11-11 08:36:53 -0800,1887,5723 +8448,6884,2013-11-11 15:45:34 -0800,1887,5720 +8449,4025,2013-11-10 19:13:47 -0800,1887,5723 +8450,7790,2013-11-10 22:28:45 -0800,1887,5721 +8451,6767,2013-11-11 13:42:12 -0800,1889,5729 +8452,413,2013-11-12 17:28:49 -0800,1889,5728 +8453,38,2013-11-08 05:45:12 -0800,1889,5729 +8454,8599,2013-11-12 22:22:07 -0800,1890,5735 +8455,1450,2013-11-12 05:24:58 -0800,1890,5733 +8456,9359,2013-11-11 14:43:12 -0800,1890,5734 +8457,8262,2013-11-06 17:09:03 -0800,1890,5733 +8458,4645,2013-11-09 11:21:34 -0800,1890,5734 +8459,7953,2013-11-10 10:04:45 -0800,1890,5736 +8460,7443,2013-11-06 23:39:33 -0800,1891,5737 +8461,6122,2013-11-12 19:13:00 -0800,1891,5737 +8462,4955,2013-11-11 19:10:16 -0800,1891,5737 +8463,3049,2013-11-09 08:34:57 -0800,1891,5737 +8464,9240,2013-11-08 04:09:51 -0800,1891,5737 +8465,7833,2013-11-08 14:43:27 -0800,1893,5743 +8466,7088,2013-11-10 00:47:55 -0800,1893,5743 +8467,9288,2013-11-11 05:05:16 -0800,1893,5742 +8468,7198,2013-11-11 03:10:21 -0800,1893,5743 +8469,7086,2013-11-06 11:26:43 -0800,1893,5742 +8470,1798,2013-11-09 03:29:06 -0800,1894,5745 +8471,4083,2013-11-10 22:09:53 -0800,1894,5744 +8472,3094,2013-11-09 19:27:17 -0800,1894,5745 +8473,7734,2013-11-06 22:27:09 -0800,1894,5746 +8474,9515,2013-11-09 15:11:30 -0800,1894,5745 +8475,1839,2013-11-10 05:11:16 -0800,1894,5746 +8476,8130,2013-11-12 09:25:06 -0800,1894,5744 +8477,2718,2013-11-06 22:55:13 -0800,1894,5745 +8478,9266,2013-11-06 13:36:05 -0800,1895,5749 +8479,7056,2013-11-09 13:51:55 -0800,1895,5747 +8480,8759,2013-11-10 19:18:55 -0800,1895,5749 +8481,6627,2013-11-08 19:51:30 -0800,1896,5750 +8482,9198,2013-11-08 11:53:33 -0800,1896,5750 +8483,9422,2013-11-12 14:06:46 -0800,1898,5757 +8484,8280,2013-11-11 19:50:21 -0800,1899,5764 +8485,9393,2013-11-12 00:13:45 -0800,1899,5765 +8486,5473,2013-11-11 05:24:06 -0800,1899,5764 +8487,8869,2013-11-12 17:26:39 -0800,1899,5764 +8488,5916,2013-11-13 06:34:03 -0800,1899,5761 +8489,9772,2013-11-13 06:57:48 -0800,1899,5762 +8490,1062,2013-11-06 23:30:03 -0800,1899,5761 +8491,6827,2013-11-08 14:27:55 -0800,1899,5763 +8492,9752,2013-11-11 12:04:42 -0800,1899,5763 +8493,6751,2013-11-11 01:04:57 -0800,1900,5766 +8494,6142,2013-11-09 16:09:25 -0800,1900,5766 +8495,5658,2013-11-06 10:58:33 -0800,1900,5766 +8496,1300,2013-11-07 08:57:57 -0800,1900,5766 +8497,8712,2013-11-10 00:39:37 -0800,1901,5767 +8498,3027,2013-11-13 04:49:54 -0800,1901,5767 +8499,8268,2013-11-09 16:31:08 -0800,1901,5767 +8500,7112,2013-11-08 11:10:38 -0800,1901,5767 +8501,3193,2013-11-07 17:16:40 -0800,1901,5767 +8502,5067,2013-11-12 13:25:53 -0800,1901,5767 +8503,2970,2013-11-11 11:06:13 -0800,1901,5767 +8504,9452,2013-11-07 04:15:35 -0800,1901,5767 +8505,3453,2013-11-10 18:10:10 -0800,1903,5771 +8506,4240,2013-11-12 14:10:50 -0800,1903,5771 +8507,9495,2013-11-06 22:06:17 -0800,1903,5771 +8508,9180,2013-11-07 02:25:15 -0800,1903,5771 +8509,9165,2013-11-11 01:32:31 -0800,1904,5772 +8510,7381,2013-11-11 05:58:28 -0800,1904,5773 +8511,3545,2013-11-08 21:00:46 -0800,1904,5772 +8512,6617,2013-11-06 11:26:41 -0800,1904,5773 +8513,4910,2013-11-13 04:47:54 -0800,1904,5773 +8514,7120,2013-11-06 22:28:24 -0800,1904,5773 +8515,8257,2013-11-11 17:51:59 -0800,1906,5780 +8516,6980,2013-11-06 15:39:57 -0800,1906,5778 +8517,7848,2013-11-06 21:15:57 -0800,1906,5778 +8518,2471,2013-11-10 03:17:36 -0800,1906,5778 +8519,6141,2013-11-10 04:39:05 -0800,1907,5782 +8520,8430,2013-11-11 11:39:46 -0800,1909,5785 +8521,3215,2013-11-12 09:05:04 -0800,1909,5786 +8522,4679,2013-11-08 22:13:55 -0800,1909,5784 +8523,6645,2013-11-09 23:02:50 -0800,1910,5787 +8524,2600,2013-11-09 02:59:26 -0800,1910,5788 +8525,2414,2013-11-10 18:13:21 -0800,1910,5788 +8526,6374,2013-11-09 12:17:31 -0800,1910,5787 +8527,8181,2013-11-07 06:45:07 -0800,1911,5790 +8528,1535,2013-11-11 15:49:48 -0800,1911,5790 +8529,2590,2013-11-11 06:22:37 -0800,1911,5791 +8530,3540,2013-11-11 09:07:41 -0800,1911,5791 +8531,8763,2013-11-12 20:55:10 -0800,1911,5791 +8532,7684,2013-11-11 06:09:59 -0800,1911,5789 +8533,5851,2013-11-07 00:22:37 -0800,1912,5792 +8534,1661,2013-11-08 23:36:43 -0800,1912,5792 +8535,2670,2013-11-10 01:55:46 -0800,1912,5792 +8536,6262,2013-11-10 10:31:59 -0800,1912,5792 +8537,40,2013-11-07 23:06:38 -0800,1912,5792 +8538,1970,2013-11-06 11:11:58 -0800,1912,5792 +8539,1535,2013-11-11 13:57:39 -0800,1913,5794 +8540,6677,2013-11-09 11:02:43 -0800,1913,5795 +8541,1913,2013-11-06 23:17:54 -0800,1913,5794 +8542,657,2013-11-07 04:55:09 -0800,1913,5795 +8543,8650,2013-11-06 16:10:31 -0800,1913,5793 +8544,1748,2013-11-11 21:50:49 -0800,1913,5795 +8545,9249,2013-11-06 08:40:02 -0800,1913,5793 +8546,9591,2013-11-09 22:22:56 -0800,1914,5797 +8547,811,2013-11-07 22:19:40 -0800,1914,5799 +8548,7055,2013-11-07 00:35:23 -0800,1914,5797 +8549,1780,2013-11-10 17:07:51 -0800,1914,5797 +8550,3482,2013-11-10 21:09:16 -0800,1915,5800 +8551,8884,2013-11-09 05:31:50 -0800,1915,5802 +8552,1117,2013-11-08 22:10:30 -0800,1915,5802 +8553,1738,2013-11-07 07:17:49 -0800,1915,5800 +8554,3786,2013-11-10 14:54:26 -0800,1915,5800 +8555,5479,2013-11-09 08:37:51 -0800,1915,5800 +8556,3032,2013-11-13 08:25:29 -0800,1916,5803 +8557,9116,2013-11-08 00:49:53 -0800,1916,5805 +8558,9122,2013-11-10 22:33:40 -0800,1916,5804 +8559,4730,2013-11-06 10:01:18 -0800,1916,5806 +8560,3794,2013-11-11 20:36:29 -0800,1916,5807 +8561,4476,2013-11-07 06:05:56 -0800,1916,5805 +8562,6160,2013-11-09 22:02:16 -0800,1916,5805 +8563,9743,2013-11-08 05:25:34 -0800,1916,5805 +8564,9286,2013-11-12 05:09:47 -0800,1916,5807 +8565,1239,2013-11-13 08:12:28 -0800,1918,5811 +8566,3014,2013-11-11 01:14:39 -0800,1918,5812 +8567,617,2013-11-12 16:14:49 -0800,1918,5810 +8568,5222,2013-11-07 10:28:01 -0800,1918,5809 +8569,4640,2013-11-10 16:29:33 -0800,1918,5812 +8570,1520,2013-11-11 12:53:13 -0800,1918,5812 +8571,1326,2013-11-09 08:00:37 -0800,1918,5811 +8572,1847,2013-11-10 06:58:42 -0800,1918,5809 +8573,7723,2013-11-07 11:50:22 -0800,1918,5812 +8574,1571,2013-11-06 10:17:30 -0800,1920,5818 +8575,9111,2013-11-06 08:59:46 -0800,1920,5819 +8576,4940,2013-11-07 20:14:34 -0800,1920,5818 +8577,5910,2013-11-10 04:40:38 -0800,1920,5818 +8578,5127,2013-11-07 13:01:58 -0800,1920,5819 +8579,249,2013-11-10 13:14:55 -0800,1920,5819 +8580,8391,2013-11-09 12:53:48 -0800,1921,5820 +8581,4056,2013-11-08 18:59:23 -0800,1921,5823 +8582,3976,2013-11-07 10:40:47 -0800,1921,5823 +8583,840,2013-11-07 15:32:19 -0800,1921,5822 +8584,644,2013-11-08 01:59:58 -0800,1921,5820 +8585,549,2013-11-12 11:35:50 -0800,1921,5823 +8586,5756,2013-11-07 21:55:54 -0800,1921,5823 +8587,754,2013-11-12 01:35:21 -0800,1922,5825 +8588,5553,2013-11-09 16:48:59 -0800,1922,5825 +8589,8696,2013-11-07 13:20:09 -0800,1923,5826 +8590,7967,2013-11-11 08:14:22 -0800,1923,5826 +8591,2641,2013-11-12 07:19:05 -0800,1923,5826 +8592,2654,2013-11-12 19:36:50 -0800,1923,5826 +8593,5070,2013-11-07 23:04:35 -0800,1923,5826 +8594,6071,2013-11-07 19:18:04 -0800,1923,5826 +8595,7255,2013-11-08 16:58:41 -0800,1923,5826 +8596,7913,2013-11-06 10:34:41 -0800,1923,5826 +8597,5992,2013-11-11 01:54:34 -0800,1924,5827 +8598,8287,2013-11-10 09:57:55 -0800,1924,5827 +8599,753,2013-11-07 00:53:32 -0800,1926,5834 +8600,9116,2013-11-07 23:47:46 -0800,1926,5833 +8601,9835,2013-11-13 04:03:36 -0800,1926,5833 +8602,1476,2013-11-12 07:35:47 -0800,1926,5833 +8603,1069,2013-11-06 10:54:43 -0800,1926,5834 +8604,8242,2013-11-07 00:59:22 -0800,1926,5834 +8605,5766,2013-11-11 19:04:41 -0800,1926,5834 +8606,5877,2013-11-07 06:02:35 -0800,1926,5834 +8607,2435,2013-11-13 04:12:19 -0800,1927,5836 +8608,9523,2013-11-12 12:44:54 -0800,1927,5836 +8609,9486,2013-11-07 16:39:32 -0800,1927,5835 +8610,6681,2013-11-08 03:23:21 -0800,1927,5836 +8611,8058,2013-11-12 05:05:55 -0800,1927,5836 +8612,2175,2013-11-07 12:23:25 -0800,1927,5835 +8613,7030,2013-11-06 11:23:21 -0800,1928,5839 +8614,3031,2013-11-10 21:33:23 -0800,1928,5840 +8615,4096,2013-11-07 11:05:54 -0800,1928,5840 +8616,1093,2013-11-11 21:43:11 -0800,1928,5838 +8617,140,2013-11-12 15:55:16 -0800,1928,5840 +8618,9350,2013-11-08 23:26:34 -0800,1928,5838 +8619,5478,2013-11-12 08:35:52 -0800,1928,5837 +8620,7144,2013-11-12 01:58:10 -0800,1929,5842 +8621,4533,2013-11-10 19:46:51 -0800,1929,5841 +8622,3945,2013-11-12 05:43:31 -0800,1929,5842 +8623,637,2013-11-10 03:38:12 -0800,1929,5841 +8624,7884,2013-11-07 23:52:48 -0800,1929,5841 +8625,2177,2013-11-06 23:23:05 -0800,1929,5841 +8626,567,2013-11-09 12:53:09 -0800,1929,5842 +8627,935,2013-11-08 20:50:36 -0800,1930,5843 +8628,8190,2013-11-09 00:41:22 -0800,1930,5844 +8629,6082,2013-11-12 16:37:51 -0800,1930,5845 +8630,2684,2013-11-08 12:38:52 -0800,1930,5843 +8631,6568,2013-11-06 17:09:52 -0800,1930,5844 +8632,5676,2013-11-11 07:39:19 -0800,1931,5849 +8633,6260,2013-11-11 13:14:00 -0800,1931,5848 +8634,781,2013-11-11 06:55:27 -0800,1931,5847 +8635,2377,2013-11-07 07:07:11 -0800,1931,5849 +8636,3384,2013-11-11 11:00:52 -0800,1931,5847 +8637,9824,2013-11-11 17:58:04 -0800,1932,5852 +8638,5000,2013-11-12 16:58:49 -0800,1932,5853 +8639,6266,2013-11-12 07:19:36 -0800,1932,5852 +8640,6741,2013-11-09 18:49:17 -0800,1932,5853 +8641,7656,2013-11-08 11:56:17 -0800,1933,5857 +8642,1417,2013-11-09 04:09:38 -0800,1933,5857 +8643,8415,2013-11-08 13:41:18 -0800,1933,5857 +8644,2777,2013-11-06 10:50:47 -0800,1933,5856 +8645,2920,2013-11-08 02:37:49 -0800,1933,5856 +8646,1789,2013-11-10 05:03:35 -0800,1933,5857 +8647,450,2013-11-11 11:37:05 -0800,1933,5855 +8648,9181,2013-11-11 09:49:23 -0800,1933,5857 +8649,1771,2013-11-12 11:40:01 -0800,1933,5854 +8650,3925,2013-11-08 16:55:48 -0800,1934,5858 +8651,8196,2013-11-09 17:23:35 -0800,1934,5858 +8652,6972,2013-11-11 02:24:42 -0800,1934,5858 +8653,3269,2013-11-10 17:37:15 -0800,1934,5858 +8654,9638,2013-11-11 05:10:39 -0800,1935,5860 +8655,2716,2013-11-09 02:04:57 -0800,1935,5861 +8656,6890,2013-11-12 01:05:29 -0800,1935,5859 +8657,4166,2013-11-10 03:21:29 -0800,1935,5859 +8658,796,2013-11-12 17:52:56 -0800,1935,5860 +8659,459,2013-11-10 04:57:49 -0800,1935,5861 +8660,3536,2013-11-10 02:58:30 -0800,1935,5860 +8661,8918,2013-11-12 15:24:12 -0800,1935,5860 +8662,7652,2013-11-11 07:17:56 -0800,1936,5865 +8663,5970,2013-11-10 16:04:10 -0800,1937,5869 +8664,4819,2013-11-07 01:23:01 -0800,1939,5877 +8665,933,2013-11-10 02:55:54 -0800,1939,5875 +8666,5323,2013-11-09 17:03:11 -0800,1940,5880 +8667,3645,2013-11-08 18:21:04 -0800,1940,5879 +8668,3372,2013-11-07 03:40:27 -0800,1941,5882 +8669,4659,2013-11-10 03:37:00 -0800,1942,5884 +8670,5630,2013-11-09 13:52:01 -0800,1942,5884 +8671,4764,2013-11-07 16:00:35 -0800,1942,5883 +8672,4533,2013-11-09 23:22:35 -0800,1942,5883 +8673,4052,2013-11-09 06:22:59 -0800,1942,5884 +8674,2039,2013-11-07 06:21:02 -0800,1942,5883 +8675,2290,2013-11-08 01:53:48 -0800,1942,5883 +8676,8479,2013-11-10 15:39:33 -0800,1943,5886 +8677,1964,2013-11-08 02:11:35 -0800,1944,5889 +8678,2497,2013-11-09 03:40:06 -0800,1944,5889 +8679,8258,2013-11-07 16:22:18 -0800,1944,5890 +8680,5350,2013-11-12 22:29:34 -0800,1944,5889 +8681,1147,2013-11-11 14:25:09 -0800,1944,5888 +8682,1220,2013-11-06 18:39:32 -0800,1944,5889 +8683,5880,2013-11-12 02:12:39 -0800,1944,5889 +8684,5481,2013-11-07 20:13:59 -0800,1944,5890 +8685,7045,2013-11-11 14:47:18 -0800,1945,5892 +8686,2826,2013-11-09 13:22:22 -0800,1945,5892 +8687,4337,2013-11-06 21:45:24 -0800,1945,5891 +8688,2348,2013-11-11 14:52:10 -0800,1945,5892 +8689,4929,2013-11-12 22:21:41 -0800,1945,5892 +8690,5050,2013-11-09 04:17:03 -0800,1945,5891 +8691,3361,2013-11-11 14:22:41 -0800,1945,5893 +8692,4291,2013-11-13 00:37:18 -0800,1945,5893 +8693,3954,2013-11-10 22:31:02 -0800,1945,5892 +8694,2720,2013-11-12 04:10:12 -0800,1946,5899 +8695,117,2013-11-09 10:38:46 -0800,1946,5898 +8696,9881,2013-11-11 05:55:11 -0800,1946,5898 +8697,7715,2013-11-09 01:58:43 -0800,1946,5895 +8698,4661,2013-11-09 18:02:36 -0800,1946,5897 +8699,5736,2013-11-10 01:51:14 -0800,1946,5899 +8700,5927,2013-11-07 21:07:26 -0800,1946,5895 +8701,4933,2013-11-12 12:47:42 -0800,1946,5896 +8702,9284,2013-11-10 18:27:31 -0800,1947,5900 +8703,7200,2013-11-07 14:11:44 -0800,1947,5900 +8704,1789,2013-11-08 20:44:49 -0800,1947,5901 +8705,978,2013-11-07 14:37:57 -0800,1947,5900 +8706,3044,2013-11-11 14:04:35 -0800,1947,5901 +8707,5022,2013-11-08 15:20:07 -0800,1947,5901 +8708,4691,2013-11-07 05:31:11 -0800,1947,5900 +8709,3775,2013-11-08 10:10:27 -0800,1947,5900 +8710,2526,2013-11-12 22:21:48 -0800,1949,5909 +8711,1914,2013-11-10 09:46:42 -0800,1949,5908 +8712,6693,2013-11-09 00:50:25 -0800,1949,5907 +8713,4889,2013-11-12 03:28:30 -0800,1950,5910 +8714,4134,2013-11-12 22:07:22 -0800,1950,5910 +8715,8442,2013-11-08 20:07:58 -0800,1950,5910 +8716,7419,2013-11-09 20:25:58 -0800,1950,5910 +8717,3736,2013-11-09 05:43:36 -0800,1951,5915 +8718,6300,2013-11-10 18:40:56 -0800,1951,5913 +8719,5632,2013-11-11 11:56:44 -0800,1951,5914 +8720,9828,2013-11-13 06:40:44 -0800,1951,5913 +8721,8382,2013-11-07 07:20:37 -0800,1951,5914 +8722,8093,2013-11-07 14:03:34 -0800,1952,5920 +8723,9670,2013-11-08 12:07:41 -0800,1953,5921 +8724,3613,2013-11-10 18:08:08 -0800,1953,5924 +8725,7778,2013-11-09 17:51:51 -0800,1953,5922 +8726,9089,2013-11-10 00:58:06 -0800,1953,5921 +8727,839,2013-11-12 14:27:35 -0800,1953,5923 +8728,2454,2013-11-11 16:15:25 -0800,1954,5926 +8729,1700,2013-11-10 07:32:26 -0800,1954,5925 +8730,4117,2013-11-08 04:29:16 -0800,1954,5925 +8731,7155,2013-11-07 17:15:37 -0800,1955,5931 +8732,4786,2013-11-13 04:44:14 -0800,1955,5929 +8733,5383,2013-11-10 06:13:52 -0800,1955,5932 +8734,956,2013-11-10 18:49:57 -0800,1955,5932 +8735,6723,2013-11-06 23:17:30 -0800,1956,5937 +8736,7484,2013-11-09 08:50:30 -0800,1957,5940 +8737,7423,2013-11-09 14:31:44 -0800,1957,5941 +8738,8030,2013-11-12 10:33:01 -0800,1957,5940 +8739,5811,2013-11-06 12:07:09 -0800,1957,5941 +8740,157,2013-11-12 09:20:15 -0800,1957,5941 +8741,4939,2013-11-11 12:54:21 -0800,1957,5939 +8742,6027,2013-11-08 05:44:53 -0800,1957,5941 +8743,5726,2013-11-07 22:43:40 -0800,1958,5944 +8744,7483,2013-11-08 17:43:24 -0800,1958,5942 +8745,1714,2013-11-12 02:45:40 -0800,1958,5942 +8746,6199,2013-11-12 00:17:29 -0800,1958,5942 +8747,5823,2013-11-08 17:16:55 -0800,1958,5943 +8748,8344,2013-11-06 12:11:13 -0800,1958,5942 +8749,5449,2013-11-09 12:49:35 -0800,1958,5942 +8750,4982,2013-11-07 07:07:19 -0800,1959,5946 +8751,9689,2013-11-08 07:15:56 -0800,1959,5947 +8752,6789,2013-11-13 04:32:34 -0800,1959,5947 +8753,6651,2013-11-13 00:00:50 -0800,1959,5947 +8754,6559,2013-11-11 11:40:46 -0800,1959,5945 +8755,9489,2013-11-06 16:44:54 -0800,1960,5948 +8756,7967,2013-11-12 10:01:43 -0800,1960,5948 +8757,210,2013-11-12 13:16:47 -0800,1960,5949 +8758,5526,2013-11-07 13:25:09 -0800,1960,5948 +8759,6397,2013-11-11 22:54:20 -0800,1960,5948 +8760,3822,2013-11-09 12:00:50 -0800,1960,5949 +8761,9177,2013-11-13 06:57:19 -0800,1961,5951 +8762,9085,2013-11-09 17:27:06 -0800,1961,5950 +8763,9778,2013-11-10 16:01:35 -0800,1961,5950 +8764,1551,2013-11-12 11:57:38 -0800,1961,5950 +8765,4792,2013-11-11 02:26:40 -0800,1961,5950 +8766,1091,2013-11-11 02:27:54 -0800,1962,5957 +8767,5149,2013-11-12 09:03:51 -0800,1962,5956 +8768,2816,2013-11-10 22:53:11 -0800,1962,5953 +8769,8075,2013-11-09 20:03:33 -0800,1962,5953 +8770,6380,2013-11-07 09:21:08 -0800,1962,5953 +8771,117,2013-11-12 01:27:36 -0800,1962,5955 +8772,6626,2013-11-09 12:39:32 -0800,1962,5954 +8773,9142,2013-11-09 10:16:50 -0800,1962,5953 +8774,5775,2013-11-11 05:37:51 -0800,1963,5959 +8775,7034,2013-11-09 13:07:20 -0800,1963,5959 +8776,3084,2013-11-09 14:40:59 -0800,1963,5958 +8777,178,2013-11-08 01:46:11 -0800,1963,5960 +8778,1882,2013-11-09 12:03:17 -0800,1963,5959 +8779,2297,2013-11-07 13:00:19 -0800,1963,5959 +8780,9010,2013-11-11 03:15:22 -0800,1963,5958 +8781,6830,2013-11-07 19:46:39 -0800,1963,5959 +8782,1493,2013-11-07 08:50:01 -0800,1963,5958 +8783,9859,2013-11-08 06:29:50 -0800,1964,5962 +8784,2677,2013-11-09 20:13:16 -0800,1964,5961 +8785,1180,2013-11-08 16:19:15 -0800,1964,5961 +8786,7013,2013-11-07 12:40:25 -0800,1964,5962 +8787,1572,2013-11-12 18:10:59 -0800,1964,5961 +8788,4226,2013-11-08 15:31:18 -0800,1964,5962 +8789,8280,2013-11-09 04:35:05 -0800,1965,5966 +8790,9415,2013-11-09 15:31:47 -0800,1965,5963 +8791,6659,2013-11-12 11:45:14 -0800,1965,5963 +8792,2555,2013-11-08 23:26:32 -0800,1965,5963 +8793,3154,2013-11-11 10:10:14 -0800,1965,5967 +8794,7666,2013-11-09 18:46:59 -0800,1966,5968 +8795,7575,2013-11-09 07:58:12 -0800,1966,5970 +8796,9415,2013-11-06 17:09:54 -0800,1966,5969 +8797,7990,2013-11-06 21:04:36 -0800,1966,5968 +8798,7147,2013-11-10 16:12:15 -0800,1966,5971 +8799,3060,2013-11-10 23:19:18 -0800,1966,5972 +8800,1970,2013-11-12 22:59:31 -0800,1966,5970 +8801,4522,2013-11-09 06:59:33 -0800,1967,5975 +8802,558,2013-11-06 17:04:33 -0800,1967,5977 +8803,6437,2013-11-12 21:34:10 -0800,1967,5974 +8804,2819,2013-11-10 18:11:50 -0800,1967,5976 +8805,4084,2013-11-10 06:35:56 -0800,1967,5977 +8806,9680,2013-11-13 03:18:18 -0800,1967,5977 +8807,4555,2013-11-07 22:44:22 -0800,1967,5974 +8808,4820,2013-11-08 00:32:34 -0800,1967,5975 +8809,1743,2013-11-07 13:26:49 -0800,1968,5979 +8810,4747,2013-11-11 08:40:26 -0800,1968,5978 +8811,9775,2013-11-08 02:42:59 -0800,1968,5978 +8812,6295,2013-11-11 11:59:21 -0800,1968,5979 +8813,362,2013-11-10 11:23:34 -0800,1968,5978 +8814,6811,2013-11-07 10:43:03 -0800,1968,5979 +8815,5094,2013-11-09 07:53:35 -0800,1968,5979 +8816,9349,2013-11-11 08:04:09 -0800,1968,5978 +8817,9687,2013-11-06 10:50:31 -0800,1968,5978 +8818,8861,2013-11-12 14:15:47 -0800,1969,5981 +8819,2730,2013-11-11 00:06:42 -0800,1969,5981 +8820,1482,2013-11-07 16:17:28 -0800,1969,5984 +8821,9826,2013-11-08 00:46:54 -0800,1969,5982 +8822,6829,2013-11-09 13:58:31 -0800,1969,5984 +8823,2242,2013-11-08 14:40:57 -0800,1969,5981 +8824,5343,2013-11-08 16:43:06 -0800,1969,5982 +8825,5772,2013-11-13 00:36:02 -0800,1969,5981 +8826,3417,2013-11-11 14:44:34 -0800,1969,5981 +8827,658,2013-11-13 02:49:13 -0800,1970,5986 +8828,1526,2013-11-11 04:54:58 -0800,1970,5986 +8829,5667,2013-11-06 13:48:35 -0800,1970,5986 +8830,7963,2013-11-09 15:33:27 -0800,1970,5986 +8831,3982,2013-11-06 10:57:05 -0800,1970,5985 +8832,1764,2013-11-08 07:26:50 -0800,1970,5986 +8833,3327,2013-11-11 16:38:26 -0800,1970,5986 +8834,9599,2013-11-09 00:38:11 -0800,1971,5987 +8835,1780,2013-11-06 17:40:21 -0800,1971,5988 +8836,7609,2013-11-12 02:18:47 -0800,1972,5989 +8837,2330,2013-11-12 13:36:16 -0800,1972,5992 +8838,947,2013-11-11 06:10:39 -0800,1972,5990 +8839,7820,2013-11-12 13:37:03 -0800,1972,5989 +8840,5538,2013-11-11 04:11:04 -0800,1972,5989 +8841,96,2013-11-13 07:52:41 -0800,1972,5991 +8842,4972,2013-11-12 06:57:33 -0800,1972,5990 +8843,1585,2013-11-11 15:48:08 -0800,1974,5996 +8844,4748,2013-11-11 05:03:07 -0800,1974,5996 +8845,3827,2013-11-12 05:45:23 -0800,1974,5995 +8846,6487,2013-11-08 02:52:43 -0800,1974,5994 +8847,8955,2013-11-06 16:58:27 -0800,1974,5994 +8848,911,2013-11-12 19:57:11 -0800,1974,5995 +8849,1145,2013-11-07 00:42:55 -0800,1974,5996 +8850,4920,2013-11-12 01:32:48 -0800,1975,5997 +8851,177,2013-11-07 19:47:13 -0800,1975,5997 +8852,6684,2013-11-08 23:45:07 -0800,1975,5997 +8853,5838,2013-11-10 22:09:56 -0800,1975,5997 +8854,7119,2013-11-12 06:20:19 -0800,1975,5997 +8855,9454,2013-11-09 17:06:32 -0800,1975,5997 +8856,1654,2013-11-08 06:46:15 -0800,1975,5997 +8857,7319,2013-11-06 16:29:05 -0800,1976,5998 +8858,3249,2013-11-06 14:26:59 -0800,1976,5998 +8859,7680,2013-11-09 13:47:46 -0800,1976,5998 +8860,2930,2013-11-09 14:50:33 -0800,1976,5998 +8861,5235,2013-11-09 04:05:50 -0800,1976,5998 +8862,7990,2013-11-12 10:12:01 -0800,1977,5999 +8863,1939,2013-11-12 16:59:28 -0800,1977,6001 +8864,5273,2013-11-08 00:20:18 -0800,1977,6001 +8865,2941,2013-11-06 08:54:59 -0800,1977,6000 +8866,2937,2013-11-06 19:40:43 -0800,1977,6000 +8867,3432,2013-11-09 23:08:09 -0800,1977,6001 +8868,3268,2013-11-09 06:37:23 -0800,1978,6003 +8869,222,2013-11-08 00:20:40 -0800,1978,6002 +8870,7920,2013-11-11 21:45:40 -0800,1978,6003 +8871,7009,2013-11-13 03:04:22 -0800,1980,6009 +8872,7593,2013-11-07 10:00:08 -0800,1980,6009 +8873,7563,2013-11-08 11:10:36 -0800,1981,6015 +8874,7477,2013-11-12 04:32:50 -0800,1981,6015 +8875,4829,2013-11-10 20:52:20 -0800,1981,6013 +8876,2722,2013-11-09 08:47:30 -0800,1981,6014 +8877,1891,2013-11-07 06:52:52 -0800,1981,6015 +8878,1513,2013-11-07 00:45:30 -0800,1981,6013 +8879,6784,2013-11-07 13:04:29 -0800,1982,6017 +8880,890,2013-11-08 21:43:47 -0800,1982,6017 +8881,3410,2013-11-10 01:21:23 -0800,1983,6019 +8882,4949,2013-11-13 02:49:06 -0800,1984,6023 +8883,1727,2013-11-08 03:07:00 -0800,1984,6023 +8884,8293,2013-11-11 08:29:13 -0800,1984,6024 +8885,292,2013-11-08 14:47:19 -0800,1984,6023 +8886,8265,2013-11-12 14:45:48 -0800,1984,6023 +8887,4722,2013-11-11 07:42:49 -0800,1984,6024 +8888,1350,2013-11-09 03:11:53 -0800,1984,6023 +8889,7778,2013-11-06 15:31:30 -0800,1984,6024 +8890,1319,2013-11-12 06:50:48 -0800,1985,6025 +8891,1922,2013-11-10 03:25:08 -0800,1986,6028 +8892,6645,2013-11-08 15:04:11 -0800,1986,6030 +8893,2150,2013-11-11 03:06:32 -0800,1986,6027 +8894,5074,2013-11-12 10:29:09 -0800,1986,6030 +8895,1414,2013-11-12 07:59:49 -0800,1987,6035 +8896,831,2013-11-07 19:37:30 -0800,1987,6035 +8897,2450,2013-11-10 10:57:47 -0800,1987,6035 +8898,2073,2013-11-13 02:21:09 -0800,1987,6034 +8899,7042,2013-11-10 21:35:24 -0800,1988,6036 +8900,5981,2013-11-11 07:46:44 -0800,1988,6036 +8901,5510,2013-11-08 05:09:39 -0800,1988,6038 +8902,3090,2013-11-08 04:47:41 -0800,1988,6037 +8903,8850,2013-11-10 00:26:30 -0800,1988,6038 +8904,2157,2013-11-08 03:56:09 -0800,1988,6038 +8905,7817,2013-11-07 00:23:39 -0800,1988,6037 +8906,6855,2013-11-12 23:14:16 -0800,1988,6036 +8907,1342,2013-11-12 14:14:32 -0800,1988,6036 +8908,5233,2013-11-07 03:08:55 -0800,1990,6043 +8909,5531,2013-11-06 20:11:46 -0800,1990,6043 +8910,3422,2013-11-06 13:11:48 -0800,1990,6042 +8911,9738,2013-11-06 23:45:42 -0800,1990,6043 +8912,4552,2013-11-09 14:57:33 -0800,1990,6044 +8913,62,2013-11-10 20:38:36 -0800,1991,6046 +8914,319,2013-11-10 20:18:35 -0800,1991,6046 +8915,4431,2013-11-10 12:23:16 -0800,1991,6045 +8916,4281,2013-11-12 10:45:10 -0800,1992,6048 +8917,9650,2013-11-10 09:03:41 -0800,1992,6048 +8918,9051,2013-11-11 05:26:03 -0800,1992,6048 +8919,8233,2013-11-12 22:00:03 -0800,1992,6048 +8920,5542,2013-11-11 22:01:24 -0800,1992,6048 +8921,6613,2013-11-11 10:07:51 -0800,1992,6048 +8922,3556,2013-11-11 21:50:04 -0800,1992,6048 +8923,731,2013-11-09 17:42:52 -0800,1993,6049 +8924,9362,2013-11-06 14:35:51 -0800,1993,6052 +8925,6670,2013-11-09 00:26:39 -0800,1994,6055 +8926,710,2013-11-08 01:06:26 -0800,1994,6054 +8927,5684,2013-11-08 18:39:12 -0800,1994,6054 +8928,9067,2013-11-08 12:41:21 -0800,1994,6054 +8929,5181,2013-11-13 06:48:28 -0800,1994,6054 +8930,7640,2013-11-13 04:37:06 -0800,1994,6054 +8931,5596,2013-11-07 10:46:05 -0800,1995,6057 +8932,6851,2013-11-11 13:32:24 -0800,1995,6059 +8933,2338,2013-11-11 18:15:33 -0800,1995,6059 +8934,4280,2013-11-11 02:55:06 -0800,1995,6059 +8935,3296,2013-11-10 05:54:19 -0800,1996,6062 +8936,2327,2013-11-11 15:51:47 -0800,1996,6062 +8937,2879,2013-11-11 02:10:35 -0800,1996,6061 +8938,7079,2013-11-07 13:31:37 -0800,1996,6060 +8939,7323,2013-11-08 00:22:44 -0800,1996,6060 +8940,7333,2013-11-12 03:54:55 -0800,1996,6062 +8941,3529,2013-11-08 15:41:14 -0800,1997,6063 +8942,4216,2013-11-13 01:59:30 -0800,1998,6070 +8943,4580,2013-11-06 11:08:25 -0800,1998,6068 +8944,8498,2013-11-11 22:43:23 -0800,1999,6072 +8945,3661,2013-11-12 20:39:00 -0800,1999,6074 +8946,3900,2013-11-10 11:49:43 -0800,2000,6076 +8947,8068,2013-11-09 16:41:17 -0800,2000,6076 +8948,5128,2013-11-06 23:52:12 -0800,2000,6076 +8949,7153,2013-11-09 23:40:47 -0800,2000,6076 +8950,5134,2013-11-09 13:12:46 -0800,2001,6077 +8951,9138,2013-11-07 08:44:54 -0800,2001,6077 +8952,7814,2013-11-12 20:01:27 -0800,2001,6078 +8953,8942,2013-11-07 02:13:52 -0800,2001,6078 +8954,8912,2013-11-08 09:01:50 -0800,2001,6078 +8955,4764,2013-11-11 22:55:07 -0800,2001,6078 +8956,268,2013-11-08 04:34:43 -0800,2002,6083 +8957,876,2013-11-08 14:24:30 -0800,2003,6085 +8958,524,2013-11-06 17:18:42 -0800,2003,6085 +8959,7329,2013-11-08 07:05:30 -0800,2003,6085 +8960,7325,2013-11-08 19:22:36 -0800,2004,6086 +8961,5226,2013-11-10 03:29:18 -0800,2004,6086 +8962,9112,2013-11-07 04:39:42 -0800,2004,6086 +8963,2191,2013-11-07 17:32:47 -0800,2004,6086 +8964,5094,2013-11-08 15:52:51 -0800,2004,6086 +8965,3486,2013-11-09 09:20:02 -0800,2004,6086 +8966,6951,2013-11-09 09:40:45 -0800,2004,6088 +8967,2128,2013-11-07 15:14:15 -0800,2004,6086 +8968,7586,2013-11-10 12:55:52 -0800,2004,6089 +8969,4237,2013-11-09 07:44:38 -0800,2005,6090 +8970,6761,2013-11-07 12:46:49 -0800,2005,6091 +8971,4296,2013-11-09 04:57:58 -0800,2005,6090 +8972,4220,2013-11-07 17:20:10 -0800,2005,6091 +8973,436,2013-11-12 13:00:37 -0800,2005,6091 +8974,229,2013-11-07 18:33:01 -0800,2005,6091 +8975,68,2013-11-11 05:56:38 -0800,2006,6095 +8976,7809,2013-11-07 11:01:59 -0800,2006,6093 +8977,4916,2013-11-10 15:12:53 -0800,2006,6092 +8978,5798,2013-11-08 21:54:38 -0800,2009,6107 +8979,8283,2013-11-09 01:34:07 -0800,2009,6107 +8980,3250,2013-11-10 15:42:06 -0800,2010,6111 +8981,7492,2013-11-07 07:43:36 -0800,2010,6108 +8982,9070,2013-11-06 08:48:32 -0800,2010,6110 +8983,6310,2013-11-12 18:04:50 -0800,2010,6111 +8984,1955,2013-11-13 07:57:22 -0800,2010,6109 +8985,4147,2013-11-10 06:51:02 -0800,2010,6108 +8986,5610,2013-11-10 21:54:04 -0800,2010,6111 +8987,869,2013-11-08 23:05:38 -0800,2011,6113 +8988,3059,2013-11-08 12:31:17 -0800,2011,6113 +8989,22,2013-11-11 14:14:34 -0800,2011,6112 +8990,3585,2013-11-13 05:26:31 -0800,2011,6112 +8991,4076,2013-11-10 16:16:10 -0800,2011,6112 +8992,289,2013-11-12 11:52:29 -0800,2011,6113 +8993,8463,2013-11-07 17:01:11 -0800,2011,6112 +8994,2052,2013-11-11 22:38:32 -0800,2013,6122 +8995,7848,2013-11-07 10:21:52 -0800,2013,6118 +8996,2558,2013-11-12 23:32:32 -0800,2013,6121 +8997,9520,2013-11-09 00:09:07 -0800,2013,6122 +8998,4525,2013-11-12 15:27:53 -0800,2013,6118 +8999,4838,2013-11-12 17:43:22 -0800,2013,6122 +9000,545,2013-11-12 18:13:36 -0800,2013,6121 +9001,6723,2013-11-10 06:31:53 -0800,2013,6121 +9002,9659,2013-11-11 22:03:37 -0800,2013,6121 +9003,921,2013-11-08 03:40:05 -0800,2016,6131 +9004,1080,2013-11-11 10:19:02 -0800,2016,6131 +9005,2766,2013-11-11 05:44:20 -0800,2016,6133 +9006,5251,2013-11-08 04:39:49 -0800,2016,6131 +9007,546,2013-11-08 01:35:28 -0800,2016,6129 +9008,550,2013-11-12 17:30:58 -0800,2016,6129 +9009,9675,2013-11-11 12:57:52 -0800,2016,6133 +9010,3644,2013-11-10 23:53:12 -0800,2016,6130 +9011,8293,2013-11-12 19:49:52 -0800,2017,6135 +9012,491,2013-11-11 20:26:57 -0800,2017,6135 +9013,9334,2013-11-06 12:09:42 -0800,2017,6134 +9014,320,2013-11-10 06:59:51 -0800,2017,6135 +9015,2500,2013-11-06 16:44:31 -0800,2017,6135 +9016,5090,2013-11-08 12:48:06 -0800,2019,6139 +9017,7779,2013-11-11 18:34:25 -0800,2019,6139 +9018,469,2013-11-08 11:06:29 -0800,2019,6139 +9019,2145,2013-11-06 20:10:30 -0800,2020,6142 +9020,2768,2013-11-08 04:40:16 -0800,2020,6143 +9021,4340,2013-11-07 11:08:47 -0800,2020,6144 +9022,7194,2013-11-08 07:22:27 -0800,2021,6149 +9023,2969,2013-11-09 12:21:08 -0800,2021,6145 +9024,9894,2013-11-12 06:05:27 -0800,2021,6148 +9025,2485,2013-11-12 02:29:39 -0800,2021,6148 +9026,5840,2013-11-10 08:06:41 -0800,2022,6152 +9027,514,2013-11-11 14:29:16 -0800,2023,6153 +9028,2985,2013-11-10 02:11:19 -0800,2023,6153 +9029,6076,2013-11-13 08:33:02 -0800,2023,6153 +9030,5633,2013-11-09 07:21:36 -0800,2024,6156 +9031,4963,2013-11-12 19:33:32 -0800,2024,6156 +9032,4268,2013-11-12 09:20:50 -0800,2024,6155 +9033,552,2013-11-09 02:58:31 -0800,2024,6156 +9034,1253,2013-11-12 14:27:00 -0800,2024,6156 +9035,7200,2013-11-07 13:00:50 -0800,2024,6155 +9036,9842,2013-11-07 15:16:49 -0800,2025,6157 +9037,231,2013-11-10 22:57:06 -0800,2026,6161 +9038,6951,2013-11-08 20:53:39 -0800,2026,6162 +9039,7652,2013-11-08 15:16:56 -0800,2026,6162 +9040,1266,2013-11-08 02:50:12 -0800,2026,6162 +9041,3180,2013-11-06 23:01:59 -0800,2026,6163 +9042,6875,2013-11-08 05:50:28 -0800,2026,6164 +9043,2416,2013-11-10 20:06:19 -0800,2026,6162 +9044,7800,2013-11-12 03:22:30 -0800,2027,6165 +9045,4462,2013-11-10 19:12:42 -0800,2027,6165 +9046,9655,2013-11-12 07:47:13 -0800,2027,6165 +9047,9531,2013-11-12 02:17:15 -0800,2027,6165 +9048,4330,2013-11-09 17:01:51 -0800,2027,6165 +9049,8541,2013-11-13 08:01:50 -0800,2027,6165 +9050,521,2013-11-10 18:39:22 -0800,2028,6166 +9051,3596,2013-11-12 01:56:16 -0800,2028,6167 +9052,660,2013-11-06 10:53:34 -0800,2028,6167 +9053,273,2013-11-09 15:35:10 -0800,2028,6167 +9054,1556,2013-11-07 20:26:05 -0800,2030,6172 +9055,7997,2013-11-13 00:16:58 -0800,2030,6171 +9056,8159,2013-11-08 08:08:40 -0800,2030,6170 +9057,4540,2013-11-09 00:03:19 -0800,2030,6171 +9058,4170,2013-11-08 01:38:54 -0800,2030,6171 +9059,8034,2013-11-07 00:02:09 -0800,2030,6170 +9060,1450,2013-11-12 06:44:56 -0800,2031,6173 +9061,5546,2013-11-09 08:25:40 -0800,2031,6173 +9062,2069,2013-11-13 07:47:56 -0800,2031,6173 +9063,5865,2013-11-12 04:02:46 -0800,2031,6173 +9064,7542,2013-11-12 14:03:46 -0800,2031,6173 +9065,1121,2013-11-11 06:52:40 -0800,2031,6173 +9066,8444,2013-11-12 10:06:51 -0800,2031,6173 +9067,7770,2013-11-12 20:55:38 -0800,2032,6174 +9068,2928,2013-11-12 09:20:40 -0800,2032,6175 +9069,449,2013-11-08 18:13:56 -0800,2032,6174 +9070,843,2013-11-11 22:46:49 -0800,2032,6174 +9071,1135,2013-11-09 05:26:12 -0800,2032,6175 +9072,334,2013-11-09 11:34:57 -0800,2032,6176 +9073,1228,2013-11-08 04:28:46 -0800,2033,6179 +9074,8619,2013-11-11 12:02:13 -0800,2033,6178 +9075,339,2013-11-07 09:40:25 -0800,2033,6178 +9076,123,2013-11-08 21:31:49 -0800,2033,6177 +9077,4420,2013-11-10 02:18:32 -0800,2033,6179 +9078,5595,2013-11-13 03:54:18 -0800,2033,6179 +9079,5760,2013-11-08 09:49:07 -0800,2034,6181 +9080,5827,2013-11-11 05:56:28 -0800,2034,6181 +9081,8183,2013-11-11 08:23:05 -0800,2034,6180 +9082,1244,2013-11-09 14:58:21 -0800,2034,6180 +9083,5254,2013-11-11 12:57:41 -0800,2034,6180 +9084,8310,2013-11-09 22:53:59 -0800,2035,6182 +9085,7584,2013-11-11 04:44:53 -0800,2035,6182 +9086,2671,2013-11-11 01:54:35 -0800,2036,6183 +9087,6848,2013-11-10 16:38:58 -0800,2036,6184 +9088,8346,2013-11-12 09:58:31 -0800,2036,6183 +9089,5596,2013-11-09 04:00:26 -0800,2036,6183 +9090,3750,2013-11-08 06:41:37 -0800,2036,6184 +9091,2250,2013-11-09 16:55:39 -0800,2036,6183 +9092,7359,2013-11-11 19:15:56 -0800,2037,6185 +9093,360,2013-11-09 01:03:55 -0800,2037,6185 +9094,8250,2013-11-13 03:07:19 -0800,2037,6185 +9095,8864,2013-11-11 17:52:25 -0800,2037,6185 +9096,856,2013-11-09 18:30:23 -0800,2037,6185 +9097,4550,2013-11-12 02:45:56 -0800,2037,6185 +9098,9298,2013-11-07 01:59:57 -0800,2037,6185 +9099,2570,2013-11-07 20:15:07 -0800,2037,6185 +9100,6980,2013-11-10 21:22:04 -0800,2037,6185 +9101,8420,2013-11-11 17:20:10 -0800,2038,6187 +9102,2817,2013-11-10 10:37:42 -0800,2038,6186 +9103,8889,2013-11-09 15:48:10 -0800,2038,6188 +9104,2321,2013-11-08 19:07:16 -0800,2038,6187 +9105,1090,2013-11-07 01:16:29 -0800,2038,6186 +9106,4818,2013-11-06 09:16:01 -0800,2039,6190 +9107,6350,2013-11-12 05:11:22 -0800,2039,6189 +9108,6037,2013-11-10 14:22:35 -0800,2039,6192 +9109,530,2013-11-10 17:56:38 -0800,2039,6190 +9110,5467,2013-11-13 08:03:26 -0800,2040,6194 +9111,160,2013-11-12 20:02:20 -0800,2040,6195 +9112,2734,2013-11-13 03:24:43 -0800,2040,6194 +9113,1941,2013-11-11 13:23:58 -0800,2040,6194 +9114,5437,2013-11-11 22:36:41 -0800,2040,6194 +9115,5736,2013-11-11 06:34:51 -0800,2040,6194 +9116,5620,2013-11-10 02:02:09 -0800,2040,6194 +9117,7709,2013-11-12 21:28:48 -0800,2041,6199 +9118,8840,2013-11-09 23:02:45 -0800,2041,6197 +9119,7900,2013-11-06 12:14:57 -0800,2041,6199 +9120,170,2013-11-08 20:33:57 -0800,2042,6201 +9121,198,2013-11-09 14:30:01 -0800,2042,6202 +9122,4681,2013-11-12 23:19:46 -0800,2042,6201 +9123,1113,2013-11-11 14:50:53 -0800,2042,6202 +9124,9625,2013-11-06 18:12:42 -0800,2043,6204 +9125,4398,2013-11-10 07:06:47 -0800,2043,6204 +9126,3627,2013-11-10 12:58:14 -0800,2043,6204 +9127,2879,2013-11-09 17:34:06 -0800,2045,6208 +9128,2218,2013-11-06 22:15:41 -0800,2045,6210 +9129,6929,2013-11-10 12:50:07 -0800,2045,6209 +9130,5458,2013-11-08 10:29:10 -0800,2046,6213 +9131,2253,2013-11-12 12:36:12 -0800,2046,6212 +9132,7348,2013-11-12 17:16:31 -0800,2046,6213 +9133,9233,2013-11-06 16:56:25 -0800,2046,6211 +9134,5560,2013-11-09 13:09:33 -0800,2046,6211 +9135,8919,2013-11-09 22:47:06 -0800,2046,6212 +9136,4059,2013-11-07 06:34:11 -0800,2046,6211 +9137,3640,2013-11-11 09:17:48 -0800,2046,6213 +9138,7863,2013-11-10 18:09:04 -0800,2046,6211 +9139,9341,2013-11-09 10:05:40 -0800,2047,6215 +9140,939,2013-11-11 02:20:01 -0800,2047,6217 +9141,320,2013-11-07 13:07:15 -0800,2047,6218 +9142,741,2013-11-08 09:04:06 -0800,2047,6214 +9143,2042,2013-11-08 17:06:22 -0800,2048,6220 +9144,9173,2013-11-07 18:26:17 -0800,2048,6220 +9145,6938,2013-11-06 13:54:41 -0800,2048,6220 +9146,2373,2013-11-08 12:49:54 -0800,2048,6219 +9147,9551,2013-11-06 10:42:16 -0800,2049,6224 +9148,7523,2013-11-10 06:08:26 -0800,2049,6221 +9149,7351,2013-11-07 06:45:04 -0800,2050,6227 +9150,1963,2013-11-09 17:30:25 -0800,2050,6226 +9151,9127,2013-11-08 00:53:47 -0800,2050,6228 +9152,7570,2013-11-07 19:41:44 -0800,2051,6233 +9153,8695,2013-11-12 19:47:52 -0800,2051,6230 +9154,7994,2013-11-11 06:32:04 -0800,2051,6232 +9155,8677,2013-11-06 14:19:28 -0800,2051,6233 +9156,6829,2013-11-12 18:20:14 -0800,2051,6230 +9157,2639,2013-11-11 15:23:37 -0800,2051,6229 +9158,3911,2013-11-12 04:49:05 -0800,2051,6231 +9159,6570,2013-11-12 13:12:22 -0800,2052,6234 +9160,9154,2013-11-09 02:23:29 -0800,2053,6237 +9161,6584,2013-11-07 06:56:37 -0800,2055,6242 +9162,9733,2013-11-08 21:42:41 -0800,2055,6243 +9163,1487,2013-11-11 06:01:21 -0800,2056,6245 +9164,4980,2013-11-10 06:48:48 -0800,2056,6248 +9165,2861,2013-11-12 20:26:04 -0800,2056,6248 +9166,6256,2013-11-09 11:17:40 -0800,2056,6248 +9167,1238,2013-11-13 01:28:12 -0800,2056,6248 +9168,1080,2013-11-08 18:03:33 -0800,2057,6249 +9169,7213,2013-11-12 23:51:26 -0800,2057,6249 +9170,1880,2013-11-08 12:07:18 -0800,2057,6249 +9171,2170,2013-11-11 04:08:42 -0800,2057,6249 +9172,8319,2013-11-06 10:53:11 -0800,2057,6249 +9173,4835,2013-11-08 10:51:02 -0800,2057,6249 +9174,473,2013-11-10 11:02:25 -0800,2057,6249 +9175,9756,2013-11-10 03:57:08 -0800,2057,6249 +9176,540,2013-11-10 16:20:08 -0800,2057,6249 +9177,5348,2013-11-09 21:41:42 -0800,2058,6250 +9178,3160,2013-11-11 19:30:45 -0800,2058,6250 +9179,9468,2013-11-08 11:32:57 -0800,2058,6253 +9180,1180,2013-11-07 11:27:56 -0800,2058,6254 +9181,325,2013-11-08 05:38:35 -0800,2058,6251 +9182,7759,2013-11-10 13:39:39 -0800,2058,6252 +9183,8660,2013-11-07 08:28:42 -0800,2058,6250 +9184,4162,2013-11-08 04:13:21 -0800,2058,6252 +9185,9434,2013-11-06 21:02:19 -0800,2059,6256 +9186,6097,2013-11-12 12:54:19 -0800,2059,6255 +9187,869,2013-11-11 14:04:13 -0800,2059,6256 +9188,3289,2013-11-07 16:03:54 -0800,2059,6255 +9189,1482,2013-11-08 18:51:19 -0800,2059,6256 +9190,7675,2013-11-12 17:13:13 -0800,2059,6256 +9191,825,2013-11-07 18:33:51 -0800,2059,6256 +9192,1330,2013-11-09 20:25:02 -0800,2060,6258 +9193,7728,2013-11-10 11:43:53 -0800,2060,6257 +9194,374,2013-11-07 10:34:11 -0800,2061,6262 +9195,2455,2013-11-09 20:21:06 -0800,2061,6261 +9196,5070,2013-11-08 09:41:38 -0800,2063,6268 +9197,8340,2013-11-09 16:33:53 -0800,2063,6267 +9198,7273,2013-11-08 23:29:51 -0800,2063,6267 +9199,8430,2013-11-12 07:30:27 -0800,2063,6268 +9200,9313,2013-11-10 05:20:04 -0800,2063,6267 +9201,2865,2013-11-08 17:51:08 -0800,2063,6267 +9202,748,2013-11-07 18:02:34 -0800,2063,6266 +9203,2522,2013-11-11 11:36:21 -0800,2065,6272 +9204,6470,2013-11-07 09:01:04 -0800,2066,6273 +9205,4770,2013-11-07 17:10:01 -0800,2066,6275 +9206,4244,2013-11-12 10:46:52 -0800,2066,6274 +9207,852,2013-11-13 06:39:36 -0800,2066,6273 +9208,814,2013-11-07 09:26:35 -0800,2067,6278 +9209,9556,2013-11-10 05:36:45 -0800,2067,6279 +9210,9610,2013-11-13 04:50:37 -0800,2067,6277 +9211,3191,2013-11-08 15:05:41 -0800,2067,6277 +9212,7579,2013-11-08 07:12:54 -0800,2067,6279 +9213,7290,2013-11-09 16:13:05 -0800,2068,6282 +9214,4551,2013-11-08 01:15:32 -0800,2069,6286 +9215,9467,2013-11-13 06:20:30 -0800,2069,6286 +9216,6659,2013-11-08 17:04:58 -0800,2069,6285 +9217,5094,2013-11-06 22:31:26 -0800,2070,6287 +9218,5375,2013-11-09 18:06:57 -0800,2071,6289 +9219,7097,2013-11-12 04:17:54 -0800,2071,6289 +9220,6913,2013-11-08 09:35:08 -0800,2071,6289 +9221,3510,2013-11-08 10:18:45 -0800,2071,6289 +9222,1242,2013-11-10 13:19:27 -0800,2072,6293 +9223,2080,2013-11-09 17:32:27 -0800,2072,6292 +9224,6513,2013-11-11 21:42:43 -0800,2072,6293 +9225,5327,2013-11-07 03:07:51 -0800,2073,6296 +9226,7781,2013-11-06 09:01:46 -0800,2074,6297 +9227,689,2013-11-06 21:33:43 -0800,2074,6297 +9228,8936,2013-11-08 06:01:30 -0800,2074,6297 +9229,9060,2013-11-07 08:13:13 -0800,2074,6297 +9230,3828,2013-11-11 04:48:37 -0800,2074,6297 +9231,1534,2013-11-10 18:07:53 -0800,2075,6299 +9232,6429,2013-11-11 16:56:00 -0800,2075,6301 +9233,14,2013-11-10 15:15:32 -0800,2075,6301 +9234,2883,2013-11-07 22:13:40 -0800,2075,6299 +9235,318,2013-11-07 02:38:00 -0800,2076,6303 +9236,8290,2013-11-10 15:18:46 -0800,2076,6303 +9237,7740,2013-11-10 08:12:52 -0800,2076,6303 +9238,2744,2013-11-06 17:41:42 -0800,2076,6305 +9239,9814,2013-11-12 15:31:08 -0800,2076,6305 +9240,9370,2013-11-07 16:56:17 -0800,2076,6303 +9241,4666,2013-11-06 09:49:25 -0800,2076,6304 +9242,300,2013-11-07 13:00:37 -0800,2076,6305 +9243,2580,2013-11-09 09:36:21 -0800,2076,6302 +9244,9490,2013-11-08 04:19:29 -0800,2077,6308 +9245,2961,2013-11-08 02:33:25 -0800,2077,6306 +9246,4117,2013-11-11 20:43:38 -0800,2077,6308 +9247,8172,2013-11-09 10:43:10 -0800,2077,6308 +9248,5399,2013-11-08 19:22:48 -0800,2077,6309 +9249,2496,2013-11-07 22:49:41 -0800,2077,6309 +9250,5447,2013-11-09 21:19:45 -0800,2077,6308 +9251,4300,2013-11-10 00:27:53 -0800,2077,6309 +9252,5328,2013-11-07 15:56:00 -0800,2078,6311 +9253,4361,2013-11-10 20:53:12 -0800,2078,6311 +9254,114,2013-11-10 12:28:13 -0800,2078,6310 +9255,6863,2013-11-08 19:47:15 -0800,2078,6311 +9256,86,2013-11-08 02:29:29 -0800,2079,6313 +9257,5572,2013-11-07 23:08:52 -0800,2079,6313 +9258,4216,2013-11-13 05:57:42 -0800,2081,6317 +9259,8327,2013-11-08 07:25:52 -0800,2081,6319 +9260,2122,2013-11-09 00:35:02 -0800,2081,6318 +9261,6282,2013-11-08 01:20:43 -0800,2081,6319 +9262,9090,2013-11-07 09:01:24 -0800,2081,6320 +9263,2533,2013-11-06 22:22:44 -0800,2081,6319 +9264,4833,2013-11-07 15:28:17 -0800,2081,6320 +9265,488,2013-11-11 18:28:22 -0800,2081,6320 +9266,5918,2013-11-09 16:59:51 -0800,2082,6322 +9267,6120,2013-11-08 11:38:48 -0800,2082,6321 +9268,1315,2013-11-11 10:12:25 -0800,2082,6322 +9269,6715,2013-11-10 07:48:02 -0800,2082,6322 +9270,5994,2013-11-09 04:28:18 -0800,2082,6321 +9271,2132,2013-11-09 11:50:25 -0800,2082,6321 +9272,1682,2013-11-10 22:02:53 -0800,2082,6321 +9273,1139,2013-11-11 23:05:41 -0800,2082,6321 +9274,335,2013-11-08 03:35:05 -0800,2083,6325 +9275,6256,2013-11-09 08:52:28 -0800,2083,6324 +9276,947,2013-11-12 10:10:20 -0800,2083,6324 +9277,8500,2013-11-08 03:39:55 -0800,2083,6324 +9278,2010,2013-11-09 17:19:04 -0800,2083,6324 +9279,4232,2013-11-09 10:22:35 -0800,2084,6328 +9280,2048,2013-11-08 19:47:11 -0800,2085,6331 +9281,3629,2013-11-09 17:03:12 -0800,2085,6329 +9282,3276,2013-11-09 08:42:51 -0800,2085,6330 +9283,7048,2013-11-08 15:00:53 -0800,2085,6329 +9284,835,2013-11-09 05:39:00 -0800,2085,6329 +9285,257,2013-11-12 06:28:36 -0800,2085,6330 +9286,8319,2013-11-08 00:02:56 -0800,2086,6336 +9287,750,2013-11-07 00:50:04 -0800,2086,6335 +9288,2459,2013-11-08 00:16:17 -0800,2086,6332 +9289,657,2013-11-12 03:45:00 -0800,2086,6336 +9290,7398,2013-11-07 06:14:21 -0800,2087,6337 +9291,6344,2013-11-07 07:09:21 -0800,2087,6337 +9292,7051,2013-11-07 22:04:53 -0800,2087,6337 +9293,4059,2013-11-06 20:22:05 -0800,2087,6338 +9294,3070,2013-11-07 23:33:39 -0800,2087,6338 +9295,6534,2013-11-09 12:49:06 -0800,2087,6338 +9296,6277,2013-11-12 10:21:12 -0800,2087,6337 +9297,5237,2013-11-11 12:04:38 -0800,2088,6340 +9298,3527,2013-11-11 16:16:01 -0800,2089,6348 +9299,9736,2013-11-08 02:30:13 -0800,2089,6348 +9300,4737,2013-11-11 15:11:26 -0800,2089,6347 +9301,170,2013-11-10 23:41:01 -0800,2089,6345 +9302,7190,2013-11-10 00:58:33 -0800,2089,6347 +9303,9363,2013-11-08 18:35:45 -0800,2089,6347 +9304,1182,2013-11-11 22:43:52 -0800,2089,6347 +9305,4460,2013-11-13 06:27:21 -0800,2089,6346 +9306,8780,2013-11-11 20:02:24 -0800,2090,6351 +9307,8033,2013-11-08 22:10:24 -0800,2090,6351 +9308,6809,2013-11-08 06:48:33 -0800,2090,6349 +9309,2328,2013-11-09 02:25:55 -0800,2090,6350 +9310,6677,2013-11-07 08:46:35 -0800,2090,6351 +9311,268,2013-11-08 04:15:10 -0800,2090,6349 +9312,1626,2013-11-10 01:59:26 -0800,2090,6351 +9313,2688,2013-11-11 15:55:36 -0800,2091,6355 +9314,4637,2013-11-11 17:38:49 -0800,2091,6356 +9315,6199,2013-11-11 11:51:16 -0800,2091,6355 +9316,3961,2013-11-11 07:42:54 -0800,2091,6352 +9317,9166,2013-11-13 04:31:22 -0800,2091,6355 +9318,2442,2013-11-07 23:53:00 -0800,2091,6352 +9319,9179,2013-11-09 20:37:38 -0800,2091,6352 +9320,2070,2013-11-06 23:18:38 -0800,2091,6353 +9321,5359,2013-11-10 21:20:47 -0800,2092,6357 +9322,6229,2013-11-10 02:54:42 -0800,2092,6357 +9323,5811,2013-11-06 19:38:56 -0800,2092,6357 +9324,7868,2013-11-10 05:52:51 -0800,2092,6357 +9325,735,2013-11-07 01:04:50 -0800,2092,6357 +9326,1584,2013-11-07 02:41:46 -0800,2092,6358 +9327,4737,2013-11-10 04:06:09 -0800,2092,6357 +9328,3522,2013-11-09 12:18:02 -0800,2092,6358 +9329,7950,2013-11-07 01:01:22 -0800,2093,6360 +9330,2187,2013-11-10 14:26:17 -0800,2093,6360 +9331,6162,2013-11-11 08:21:01 -0800,2093,6359 +9332,1869,2013-11-12 07:40:28 -0800,2093,6360 +9333,4144,2013-11-09 09:56:46 -0800,2093,6359 +9334,6986,2013-11-12 23:52:22 -0800,2093,6360 +9335,4749,2013-11-13 07:28:43 -0800,2094,6361 +9336,214,2013-11-06 12:28:07 -0800,2094,6362 +9337,5431,2013-11-08 02:30:25 -0800,2094,6361 +9338,2487,2013-11-09 19:50:06 -0800,2094,6361 +9339,3451,2013-11-12 15:21:58 -0800,2094,6361 +9340,125,2013-11-10 14:57:19 -0800,2094,6361 +9341,1366,2013-11-09 19:51:56 -0800,2094,6362 +9342,7915,2013-11-06 08:53:16 -0800,2094,6362 +9343,4250,2013-11-07 08:09:33 -0800,2094,6361 +9344,8571,2013-11-10 01:34:16 -0800,2095,6366 +9345,6931,2013-11-12 21:53:57 -0800,2095,6366 +9346,6954,2013-11-09 18:14:08 -0800,2095,6366 +9347,7864,2013-11-12 02:11:49 -0800,2095,6363 +9348,1586,2013-11-08 12:44:33 -0800,2095,6366 +9349,4550,2013-11-09 09:58:29 -0800,2095,6364 +9350,9063,2013-11-12 09:34:30 -0800,2095,6366 +9351,8427,2013-11-06 08:44:09 -0800,2095,6363 +9352,6030,2013-11-06 16:11:40 -0800,2095,6365 +9353,7139,2013-11-09 05:47:27 -0800,2096,6368 +9354,1226,2013-11-11 06:10:05 -0800,2096,6369 +9355,5770,2013-11-10 11:57:29 -0800,2096,6369 +9356,6434,2013-11-06 09:30:10 -0800,2099,6381 +9357,5491,2013-11-12 07:27:47 -0800,2099,6382 +9358,7942,2013-11-08 07:53:49 -0800,2099,6380 +9359,9029,2013-11-12 23:40:35 -0800,2099,6381 +9360,9774,2013-11-11 10:15:02 -0800,2099,6382 +9361,2910,2013-11-06 08:55:30 -0800,2101,6390 +9362,8820,2013-11-09 03:21:35 -0800,2101,6390 +9363,7276,2013-11-08 05:12:39 -0800,2101,6390 +9364,8059,2013-11-08 14:32:40 -0800,2101,6390 +9365,3517,2013-11-12 05:55:24 -0800,2101,6390 +9366,718,2013-11-10 11:44:39 -0800,2102,6391 +9367,3765,2013-11-12 07:32:53 -0800,2102,6391 +9368,2337,2013-11-12 21:35:28 -0800,2102,6391 +9369,4427,2013-11-09 04:59:12 -0800,2102,6391 +9370,2569,2013-11-12 01:37:44 -0800,2103,6392 +9371,8921,2013-11-12 11:40:06 -0800,2105,6399 +9372,1075,2013-11-12 15:30:00 -0800,2105,6398 +9373,6155,2013-11-10 05:49:06 -0800,2106,6402 +9374,1153,2013-11-10 07:57:31 -0800,2106,6401 +9375,5381,2013-11-10 07:51:08 -0800,2106,6403 +9376,2961,2013-11-10 06:12:47 -0800,2107,6405 +9377,6010,2013-11-09 09:25:28 -0800,2107,6404 +9378,899,2013-11-08 12:38:07 -0800,2108,6408 +9379,6759,2013-11-13 05:53:48 -0800,2108,6408 +9380,4227,2013-11-09 17:17:32 -0800,2108,6410 +9381,7053,2013-11-08 11:10:50 -0800,2108,6406 +9382,5949,2013-11-11 13:35:39 -0800,2108,6406 +9383,8173,2013-11-10 11:03:23 -0800,2108,6410 +9384,8131,2013-11-07 10:21:34 -0800,2108,6406 +9385,5283,2013-11-08 15:03:40 -0800,2109,6414 +9386,5280,2013-11-06 12:55:33 -0800,2109,6412 +9387,9261,2013-11-09 09:31:50 -0800,2109,6411 +9388,2362,2013-11-11 09:36:46 -0800,2110,6418 +9389,4347,2013-11-09 13:42:13 -0800,2110,6417 +9390,4518,2013-11-06 17:38:39 -0800,2110,6415 +9391,5843,2013-11-10 12:08:42 -0800,2110,6415 +9392,7617,2013-11-12 10:56:29 -0800,2111,6419 +9393,3740,2013-11-12 14:33:52 -0800,2111,6419 +9394,1256,2013-11-11 22:25:57 -0800,2111,6420 +9395,7317,2013-11-11 03:35:59 -0800,2112,6421 +9396,299,2013-11-07 03:45:04 -0800,2112,6421 +9397,2042,2013-11-06 11:54:18 -0800,2112,6421 +9398,2747,2013-11-11 15:31:56 -0800,2112,6421 +9399,5680,2013-11-09 15:54:15 -0800,2112,6421 +9400,8040,2013-11-11 09:51:57 -0800,2112,6421 +9401,3490,2013-11-06 13:56:52 -0800,2113,6423 +9402,1193,2013-11-09 22:16:54 -0800,2113,6425 +9403,3224,2013-11-09 23:32:22 -0800,2113,6426 +9404,3415,2013-11-07 15:57:52 -0800,2113,6423 +9405,6565,2013-11-13 05:13:27 -0800,2113,6425 +9406,3639,2013-11-10 04:53:16 -0800,2114,6429 +9407,2731,2013-11-12 17:40:23 -0800,2114,6428 +9408,5240,2013-11-12 20:11:34 -0800,2114,6429 +9409,5683,2013-11-09 08:49:34 -0800,2114,6429 +9410,9186,2013-11-10 06:16:46 -0800,2114,6427 +9411,7059,2013-11-12 03:27:09 -0800,2115,6431 +9412,2320,2013-11-08 21:26:32 -0800,2115,6431 +9413,1046,2013-11-13 04:47:50 -0800,2116,6432 +9414,6667,2013-11-11 00:25:42 -0800,2116,6432 +9415,9631,2013-11-07 09:52:52 -0800,2116,6432 +9416,240,2013-11-08 21:35:43 -0800,2116,6434 +9417,5244,2013-11-11 20:02:48 -0800,2118,6441 +9418,5675,2013-11-09 16:05:56 -0800,2118,6439 +9419,5215,2013-11-11 09:30:23 -0800,2118,6442 +9420,66,2013-11-07 19:50:31 -0800,2119,6443 +9421,4029,2013-11-06 12:26:31 -0800,2119,6443 +9422,7468,2013-11-13 00:48:47 -0800,2119,6444 +9423,9096,2013-11-07 12:34:24 -0800,2119,6443 +9424,9880,2013-11-10 14:49:59 -0800,2119,6444 +9425,1499,2013-11-06 12:28:15 -0800,2120,6447 +9426,4728,2013-11-07 13:42:11 -0800,2120,6449 +9427,377,2013-11-11 14:11:18 -0800,2120,6446 +9428,93,2013-11-10 04:22:44 -0800,2120,6446 +9429,9798,2013-11-12 01:35:09 -0800,2121,6451 +9430,7730,2013-11-10 15:53:32 -0800,2121,6452 +9431,5523,2013-11-07 21:59:35 -0800,2121,6452 +9432,392,2013-11-12 23:13:18 -0800,2121,6452 +9433,8467,2013-11-11 22:21:36 -0800,2121,6450 +9434,8400,2013-11-07 13:14:50 -0800,2121,6452 +9435,3100,2013-11-06 16:22:47 -0800,2122,6453 +9436,9491,2013-11-07 02:13:19 -0800,2122,6453 +9437,4741,2013-11-08 14:45:29 -0800,2122,6453 +9438,1452,2013-11-13 06:33:49 -0800,2123,6457 +9439,8585,2013-11-09 21:57:54 -0800,2123,6456 +9440,2942,2013-11-12 09:15:27 -0800,2124,6459 +9441,9340,2013-11-10 14:29:46 -0800,2124,6458 +9442,5815,2013-11-10 15:38:11 -0800,2124,6462 +9443,6879,2013-11-11 08:27:59 -0800,2125,6465 +9444,3865,2013-11-08 07:32:46 -0800,2126,6469 +9445,5459,2013-11-07 02:49:14 -0800,2126,6468 +9446,9464,2013-11-10 08:25:25 -0800,2127,6474 +9447,7478,2013-11-07 03:58:28 -0800,2127,6474 +9448,957,2013-11-07 05:45:40 -0800,2127,6471 +9449,3790,2013-11-13 01:33:09 -0800,2127,6471 +9450,4754,2013-11-07 14:34:14 -0800,2127,6471 +9451,1914,2013-11-10 19:08:55 -0800,2127,6470 +9452,6775,2013-11-07 08:29:26 -0800,2127,6472 +9453,3911,2013-11-08 22:57:34 -0800,2127,6472 +9454,2834,2013-11-11 17:34:41 -0800,2127,6471 +9455,5542,2013-11-12 13:56:46 -0800,2128,6475 +9456,9147,2013-11-07 23:03:38 -0800,2128,6478 +9457,8223,2013-11-08 01:54:20 -0800,2128,6479 +9458,5099,2013-11-09 03:30:19 -0800,2128,6479 +9459,249,2013-11-11 01:48:07 -0800,2128,6477 +9460,3041,2013-11-12 01:48:22 -0800,2128,6475 +9461,1563,2013-11-10 14:53:29 -0800,2128,6475 +9462,5890,2013-11-06 12:04:47 -0800,2128,6476 +9463,9870,2013-11-07 01:03:43 -0800,2128,6477 +9464,3790,2013-11-07 03:36:25 -0800,2130,6486 +9465,7270,2013-11-11 20:04:49 -0800,2130,6485 +9466,9693,2013-11-07 10:50:23 -0800,2130,6485 +9467,1619,2013-11-10 10:40:17 -0800,2130,6484 +9468,9771,2013-11-07 13:57:32 -0800,2130,6484 +9469,2159,2013-11-09 07:20:16 -0800,2130,6485 +9470,5533,2013-11-07 09:00:12 -0800,2130,6484 +9471,6634,2013-11-12 09:15:07 -0800,2131,6489 +9472,642,2013-11-10 07:05:50 -0800,2131,6488 +9473,2570,2013-11-11 20:57:09 -0800,2131,6489 +9474,9422,2013-11-12 23:36:31 -0800,2131,6487 +9475,8289,2013-11-11 16:51:54 -0800,2131,6490 +9476,9042,2013-11-08 07:42:50 -0800,2131,6487 +9477,6317,2013-11-09 16:15:43 -0800,2131,6490 +9478,2910,2013-11-08 23:39:49 -0800,2131,6488 +9479,6173,2013-11-06 18:18:15 -0800,2131,6488 +9480,4559,2013-11-06 14:08:33 -0800,2132,6491 +9481,8690,2013-11-09 10:47:00 -0800,2132,6494 +9482,9891,2013-11-09 06:10:01 -0800,2132,6493 +9483,6161,2013-11-08 04:52:47 -0800,2132,6491 +9484,2480,2013-11-11 03:48:51 -0800,2132,6493 +9485,3928,2013-11-09 02:57:28 -0800,2133,6500 +9486,6928,2013-11-11 02:31:40 -0800,2133,6496 +9487,6333,2013-11-07 07:48:17 -0800,2133,6497 +9488,1260,2013-11-12 02:00:57 -0800,2134,6501 +9489,8567,2013-11-06 21:57:09 -0800,2135,6507 +9490,1349,2013-11-10 00:41:55 -0800,2135,6506 +9491,9222,2013-11-07 19:52:14 -0800,2135,6506 +9492,9371,2013-11-08 04:37:55 -0800,2135,6507 +9493,3379,2013-11-07 21:41:06 -0800,2135,6507 +9494,1031,2013-11-06 14:15:06 -0800,2135,6506 +9495,5515,2013-11-08 23:31:36 -0800,2135,6506 +9496,8792,2013-11-10 02:51:10 -0800,2135,6506 +9497,9695,2013-11-10 23:28:30 -0800,2135,6506 +9498,8891,2013-11-08 05:51:33 -0800,2137,6514 +9499,9777,2013-11-07 11:15:43 -0800,2137,6513 +9500,6994,2013-11-10 20:26:22 -0800,2137,6514 +9501,1143,2013-11-10 17:34:24 -0800,2137,6514 +9502,5181,2013-11-11 02:11:57 -0800,2137,6511 +9503,7240,2013-11-07 20:52:17 -0800,2137,6514 +9504,6354,2013-11-12 02:44:22 -0800,2137,6512 +9505,4873,2013-11-06 12:43:01 -0800,2137,6512 +9506,8455,2013-11-08 10:25:58 -0800,2137,6512 +9507,1586,2013-11-11 18:29:49 -0800,2138,6515 +9508,32,2013-11-06 20:01:33 -0800,2138,6515 +9509,2245,2013-11-07 01:37:17 -0800,2138,6515 +9510,7598,2013-11-06 16:14:09 -0800,2138,6516 +9511,3272,2013-11-11 20:06:58 -0800,2139,6518 +9512,7122,2013-11-12 17:48:41 -0800,2139,6517 +9513,4384,2013-11-08 05:39:32 -0800,2140,6521 +9514,9853,2013-11-09 15:34:43 -0800,2141,6523 +9515,3417,2013-11-12 21:01:12 -0800,2141,6522 +9516,422,2013-11-09 20:26:29 -0800,2142,6526 +9517,742,2013-11-08 21:52:43 -0800,2144,6530 +9518,4853,2013-11-09 11:21:34 -0800,2145,6531 +9519,4051,2013-11-12 18:32:07 -0800,2145,6531 +9520,9571,2013-11-12 08:40:14 -0800,2145,6531 +9521,5417,2013-11-09 23:08:46 -0800,2146,6532 +9522,1726,2013-11-12 00:07:30 -0800,2148,6536 +9523,2886,2013-11-11 06:37:49 -0800,2148,6534 +9524,1173,2013-11-09 20:25:48 -0800,2148,6536 +9525,5458,2013-11-09 01:09:45 -0800,2148,6535 +9526,2294,2013-11-09 13:22:39 -0800,2149,6538 +9527,1647,2013-11-11 23:51:29 -0800,2151,6544 +9528,5744,2013-11-09 12:57:05 -0800,2151,6546 +9529,8998,2013-11-11 15:14:19 -0800,2151,6544 +9530,6831,2013-11-09 23:24:23 -0800,2151,6545 +9531,8338,2013-11-12 10:14:08 -0800,2151,6546 +9532,8868,2013-11-07 15:24:37 -0800,2151,6544 +9533,5831,2013-11-10 07:33:33 -0800,2151,6545 +9534,9272,2013-11-12 04:24:25 -0800,2153,6553 +9535,9268,2013-11-11 21:29:36 -0800,2153,6552 +9536,2381,2013-11-11 02:54:17 -0800,2153,6554 +9537,2376,2013-11-07 19:43:43 -0800,2153,6552 +9538,5931,2013-11-06 23:51:33 -0800,2155,6563 +9539,9898,2013-11-08 13:27:06 -0800,2155,6561 +9540,9162,2013-11-13 06:01:13 -0800,2155,6563 +9541,7570,2013-11-06 17:18:31 -0800,2155,6561 +9542,9512,2013-11-13 01:29:52 -0800,2155,6561 +9543,4430,2013-11-07 18:44:31 -0800,2155,6562 +9544,8120,2013-11-12 23:05:29 -0800,2156,6567 +9545,3238,2013-11-12 08:47:51 -0800,2156,6565 +9546,1321,2013-11-10 08:18:57 -0800,2156,6565 +9547,6439,2013-11-10 14:35:58 -0800,2156,6565 +9548,2123,2013-11-06 23:36:58 -0800,2156,6565 +9549,2777,2013-11-10 14:08:14 -0800,2157,6572 +9550,6085,2013-11-07 06:24:12 -0800,2157,6569 +9551,796,2013-11-10 20:16:14 -0800,2157,6568 +9552,4231,2013-11-12 11:58:38 -0800,2157,6568 +9553,2860,2013-11-11 20:11:06 -0800,2157,6571 +9554,6184,2013-11-08 15:02:43 -0800,2158,6575 +9555,4970,2013-11-13 05:17:44 -0800,2158,6573 +9556,1457,2013-11-09 02:54:59 -0800,2158,6575 +9557,4289,2013-11-11 15:47:46 -0800,2158,6574 +9558,7372,2013-11-06 23:59:36 -0800,2158,6576 +9559,684,2013-11-08 04:32:42 -0800,2158,6574 +9560,9257,2013-11-11 05:20:53 -0800,2158,6573 +9561,2180,2013-11-08 16:13:26 -0800,2158,6573 +9562,3981,2013-11-08 04:30:35 -0800,2159,6577 +9563,965,2013-11-12 12:00:13 -0800,2159,6577 +9564,3110,2013-11-09 07:26:53 -0800,2159,6577 +9565,6238,2013-11-13 02:49:55 -0800,2159,6577 +9566,6581,2013-11-12 08:55:32 -0800,2159,6577 +9567,1494,2013-11-10 10:23:46 -0800,2159,6577 +9568,1921,2013-11-12 16:26:54 -0800,2160,6580 +9569,7781,2013-11-08 16:11:56 -0800,2160,6580 +9570,2389,2013-11-11 02:07:45 -0800,2160,6579 +9571,3067,2013-11-09 20:32:30 -0800,2160,6578 +9572,3821,2013-11-10 00:17:24 -0800,2160,6579 +9573,3115,2013-11-09 06:03:58 -0800,2160,6579 +9574,7778,2013-11-13 05:44:28 -0800,2160,6578 +9575,5987,2013-11-08 10:14:42 -0800,2160,6579 +9576,3979,2013-11-10 18:02:23 -0800,2160,6578 +9577,5027,2013-11-11 21:01:08 -0800,2161,6581 +9578,2140,2013-11-10 03:25:01 -0800,2161,6582 +9579,9617,2013-11-11 15:36:32 -0800,2161,6583 +9580,425,2013-11-10 06:19:09 -0800,2161,6584 +9581,1789,2013-11-11 15:49:56 -0800,2161,6584 +9582,8843,2013-11-09 13:17:47 -0800,2161,6584 +9583,1186,2013-11-06 22:43:00 -0800,2162,6588 +9584,8698,2013-11-10 13:27:41 -0800,2162,6588 +9585,8840,2013-11-12 23:04:58 -0800,2162,6585 +9586,3191,2013-11-11 00:55:07 -0800,2162,6588 +9587,9856,2013-11-07 06:19:40 -0800,2162,6585 +9588,9534,2013-11-10 22:44:24 -0800,2162,6587 +9589,6223,2013-11-07 12:07:39 -0800,2162,6587 +9590,7989,2013-11-11 20:49:18 -0800,2162,6588 +9591,461,2013-11-10 18:22:30 -0800,2162,6588 +9592,587,2013-11-07 18:04:58 -0800,2163,6589 +9593,7019,2013-11-10 03:52:27 -0800,2163,6589 +9594,4232,2013-11-07 01:59:14 -0800,2163,6589 +9595,3278,2013-11-06 09:52:36 -0800,2165,6596 +9596,3745,2013-11-12 08:54:05 -0800,2167,6601 +9597,5263,2013-11-07 20:57:47 -0800,2167,6600 +9598,2063,2013-11-13 08:05:37 -0800,2167,6600 +9599,9357,2013-11-10 02:00:08 -0800,2167,6600 +9600,6027,2013-11-06 12:36:29 -0800,2168,6602 +9601,7044,2013-11-11 12:54:18 -0800,2168,6602 +9602,4993,2013-11-10 16:13:20 -0800,2168,6602 +9603,3099,2013-11-12 11:43:25 -0800,2168,6602 +9604,6629,2013-11-07 10:13:42 -0800,2168,6602 +9605,5043,2013-11-06 16:58:06 -0800,2168,6602 +9606,8013,2013-11-10 19:44:13 -0800,2168,6602 +9607,5224,2013-11-08 08:12:10 -0800,2169,6606 +9608,7430,2013-11-10 16:54:29 -0800,2169,6604 +9609,8668,2013-11-11 07:25:59 -0800,2169,6603 +9610,6020,2013-11-13 07:55:48 -0800,2169,6607 +9611,423,2013-11-10 04:56:51 -0800,2169,6605 +9612,3394,2013-11-07 13:31:31 -0800,2169,6606 +9613,1528,2013-11-12 18:27:58 -0800,2169,6605 +9614,1558,2013-11-06 19:08:47 -0800,2169,6604 +9615,8059,2013-11-11 19:32:11 -0800,2170,6608 +9616,6811,2013-11-12 19:59:31 -0800,2170,6609 +9617,760,2013-11-07 05:39:35 -0800,2171,6611 +9618,5839,2013-11-11 17:34:25 -0800,2171,6611 +9619,5067,2013-11-13 07:44:25 -0800,2171,6612 +9620,1480,2013-11-13 06:04:41 -0800,2171,6612 +9621,6023,2013-11-06 22:40:13 -0800,2171,6611 +9622,9315,2013-11-11 17:41:20 -0800,2172,6613 +9623,8512,2013-11-09 23:35:58 -0800,2172,6614 +9624,5114,2013-11-10 02:44:23 -0800,2172,6614 +9625,5139,2013-11-08 06:43:48 -0800,2173,6619 +9626,5712,2013-11-13 02:08:00 -0800,2173,6616 +9627,4262,2013-11-10 02:52:43 -0800,2174,6621 +9628,554,2013-11-08 02:35:16 -0800,2174,6620 +9629,7556,2013-11-07 10:18:36 -0800,2174,6622 +9630,2895,2013-11-07 15:40:00 -0800,2174,6621 +9631,281,2013-11-06 11:43:25 -0800,2174,6620 +9632,1472,2013-11-10 02:10:53 -0800,2174,6621 +9633,8395,2013-11-07 03:35:32 -0800,2174,6622 +9634,7751,2013-11-06 13:07:57 -0800,2174,6620 +9635,7280,2013-11-07 07:59:47 -0800,2174,6621 +9636,3145,2013-11-11 07:48:46 -0800,2175,6625 +9637,416,2013-11-11 02:33:22 -0800,2175,6626 +9638,7390,2013-11-11 16:03:59 -0800,2175,6626 +9639,1096,2013-11-11 10:19:11 -0800,2175,6626 +9640,6191,2013-11-10 19:30:02 -0800,2175,6625 +9641,1412,2013-11-07 07:23:03 -0800,2175,6626 +9642,5520,2013-11-09 12:04:13 -0800,2175,6625 +9643,530,2013-11-07 01:33:50 -0800,2175,6626 +9644,7427,2013-11-09 00:05:16 -0800,2176,6627 +9645,8740,2013-11-11 06:12:37 -0800,2176,6627 +9646,6078,2013-11-12 09:59:27 -0800,2176,6628 +9647,5737,2013-11-06 10:46:47 -0800,2176,6628 +9648,2863,2013-11-08 00:13:19 -0800,2176,6627 +9649,8599,2013-11-07 01:52:11 -0800,2176,6627 +9650,374,2013-11-09 18:22:19 -0800,2176,6628 +9651,3227,2013-11-07 08:51:50 -0800,2177,6630 +9652,1650,2013-11-08 16:30:40 -0800,2177,6630 +9653,447,2013-11-11 21:11:03 -0800,2177,6630 +9654,1893,2013-11-07 17:30:42 -0800,2177,6630 +9655,9593,2013-11-09 01:05:19 -0800,2177,6630 +9656,5949,2013-11-10 21:15:24 -0800,2178,6632 +9657,4631,2013-11-08 21:01:08 -0800,2179,6633 +9658,7795,2013-11-11 17:37:19 -0800,2179,6633 +9659,8273,2013-11-07 00:17:45 -0800,2180,6634 +9660,2893,2013-11-09 02:40:13 -0800,2180,6635 +9661,9667,2013-11-10 11:24:15 -0800,2180,6635 +9662,7651,2013-11-10 11:13:01 -0800,2180,6635 +9663,1393,2013-11-08 09:32:08 -0800,2181,6637 +9664,4887,2013-11-08 20:11:46 -0800,2181,6637 +9665,6952,2013-11-09 15:26:27 -0800,2181,6637 +9666,2582,2013-11-11 21:13:57 -0800,2181,6638 +9667,2066,2013-11-07 03:41:19 -0800,2181,6639 +9668,1411,2013-11-06 21:48:20 -0800,2181,6638 +9669,4288,2013-11-10 23:00:37 -0800,2181,6638 +9670,8389,2013-11-08 14:49:16 -0800,2182,6640 +9671,1131,2013-11-07 00:27:27 -0800,2182,6640 +9672,6360,2013-11-08 20:36:52 -0800,2182,6640 +9673,5897,2013-11-08 11:23:27 -0800,2182,6640 +9674,7114,2013-11-08 19:15:16 -0800,2182,6640 +9675,8126,2013-11-11 05:05:24 -0800,2183,6641 +9676,8640,2013-11-06 13:24:43 -0800,2183,6641 +9677,6575,2013-11-12 07:46:55 -0800,2183,6641 +9678,1723,2013-11-08 17:12:51 -0800,2183,6641 +9679,4093,2013-11-06 09:05:27 -0800,2183,6641 +9680,3496,2013-11-06 12:22:48 -0800,2183,6641 +9681,5698,2013-11-07 23:10:40 -0800,2183,6641 +9682,4791,2013-11-07 01:01:29 -0800,2183,6641 +9683,8369,2013-11-08 03:25:43 -0800,2184,6642 +9684,7293,2013-11-13 02:49:46 -0800,2184,6642 +9685,9014,2013-11-07 11:39:24 -0800,2184,6642 +9686,5686,2013-11-12 02:58:26 -0800,2184,6642 +9687,8445,2013-11-09 21:31:10 -0800,2185,6643 +9688,3085,2013-11-12 20:25:46 -0800,2185,6643 +9689,1843,2013-11-11 19:43:15 -0800,2185,6643 +9690,1964,2013-11-11 04:28:27 -0800,2185,6643 +9691,8851,2013-11-06 10:59:34 -0800,2185,6643 +9692,1764,2013-11-10 19:34:46 -0800,2185,6643 +9693,3574,2013-11-08 12:03:52 -0800,2185,6643 +9694,7552,2013-11-12 23:20:48 -0800,2185,6643 +9695,3428,2013-11-07 14:58:27 -0800,2186,6644 +9696,432,2013-11-10 09:17:40 -0800,2186,6644 +9697,5760,2013-11-10 07:56:53 -0800,2186,6645 +9698,1128,2013-11-12 22:56:33 -0800,2186,6644 +9699,64,2013-11-12 01:46:35 -0800,2186,6645 +9700,9850,2013-11-12 16:03:48 -0800,2186,6644 +9701,2871,2013-11-13 04:59:54 -0800,2186,6644 +9702,3057,2013-11-10 10:40:24 -0800,2187,6647 +9703,2036,2013-11-12 21:12:50 -0800,2187,6646 +9704,1266,2013-11-12 01:00:34 -0800,2187,6648 +9705,6661,2013-11-11 22:22:25 -0800,2187,6648 +9706,1927,2013-11-09 12:48:28 -0800,2187,6646 +9707,1825,2013-11-06 23:43:23 -0800,2187,6648 +9708,8668,2013-11-12 09:05:00 -0800,2187,6646 +9709,9798,2013-11-13 01:24:01 -0800,2187,6647 +9710,2568,2013-11-11 13:07:02 -0800,2187,6646 +9711,9047,2013-11-07 06:25:56 -0800,2188,6649 +9712,9219,2013-11-06 10:28:32 -0800,2188,6649 +9713,1245,2013-11-10 20:05:13 -0800,2188,6650 +9714,1980,2013-11-08 14:59:15 -0800,2188,6650 +9715,537,2013-11-06 16:26:36 -0800,2188,6650 +9716,3970,2013-11-12 01:55:02 -0800,2188,6649 +9717,9646,2013-11-12 04:27:15 -0800,2188,6650 +9718,215,2013-11-10 22:08:04 -0800,2188,6649 +9719,9434,2013-11-12 04:42:23 -0800,2189,6653 +9720,3635,2013-11-12 00:37:26 -0800,2189,6652 +9721,3453,2013-11-10 23:29:51 -0800,2189,6655 +9722,8830,2013-11-13 04:28:30 -0800,2189,6652 +9723,1854,2013-11-11 18:56:35 -0800,2189,6653 +9724,5970,2013-11-12 01:59:45 -0800,2191,6660 +9725,3933,2013-11-11 10:01:50 -0800,2191,6663 +9726,1112,2013-11-12 04:42:28 -0800,2191,6661 +9727,3097,2013-11-06 21:28:12 -0800,2192,6666 +9728,1670,2013-11-08 16:33:04 -0800,2192,6665 +9729,573,2013-11-09 15:25:18 -0800,2192,6665 +9730,9574,2013-11-11 14:35:49 -0800,2193,6671 +9731,8841,2013-11-09 21:10:30 -0800,2193,6670 +9732,7266,2013-11-11 10:35:06 -0800,2193,6672 +9733,3857,2013-11-12 03:42:58 -0800,2193,6670 +9734,8592,2013-11-11 15:01:44 -0800,2193,6668 +9735,6981,2013-11-08 07:56:53 -0800,2194,6673 +9736,3874,2013-11-08 09:59:16 -0800,2194,6673 +9737,1973,2013-11-07 20:20:12 -0800,2194,6673 +9738,2291,2013-11-09 17:57:38 -0800,2197,6684 +9739,8140,2013-11-10 09:59:54 -0800,2197,6683 +9740,922,2013-11-12 10:23:37 -0800,2197,6683 +9741,9798,2013-11-07 12:52:29 -0800,2197,6685 +9742,246,2013-11-11 16:49:44 -0800,2198,6690 +9743,5874,2013-11-07 02:58:40 -0800,2198,6687 +9744,2447,2013-11-12 11:23:53 -0800,2198,6689 +9745,9710,2013-11-09 13:56:19 -0800,2198,6688 +9746,8750,2013-11-10 08:40:43 -0800,2198,6689 +9747,7318,2013-11-06 13:19:40 -0800,2199,6692 +9748,2835,2013-11-09 05:19:54 -0800,2199,6692 +9749,3952,2013-11-08 11:53:03 -0800,2199,6692 +9750,3334,2013-11-12 09:30:34 -0800,2199,6692 +9751,2443,2013-11-09 08:29:34 -0800,2199,6692 +9752,8140,2013-11-08 22:55:46 -0800,2199,6692 +9753,8900,2013-11-09 14:02:01 -0800,2199,6692 +9754,7991,2013-11-10 07:13:00 -0800,2199,6692 +9755,7053,2013-11-10 03:23:47 -0800,2199,6692 +9756,7913,2013-11-08 12:12:03 -0800,2200,6695 +9757,3969,2013-11-07 11:00:34 -0800,2200,6696 +9758,2825,2013-11-11 13:17:59 -0800,2200,6694 +9759,4721,2013-11-07 21:15:26 -0800,2201,6700 +9760,7790,2013-11-09 17:33:03 -0800,2201,6698 +9761,9700,2013-11-09 00:53:38 -0800,2202,6703 +9762,1314,2013-11-11 03:24:43 -0800,2202,6702 +9763,6967,2013-11-06 08:49:13 -0800,2202,6704 +9764,1590,2013-11-07 20:35:17 -0800,2202,6702 +9765,7311,2013-11-08 07:26:03 -0800,2202,6704 +9766,3565,2013-11-10 08:55:43 -0800,2202,6705 +9767,4192,2013-11-10 17:07:30 -0800,2202,6704 +9768,3432,2013-11-12 23:28:47 -0800,2203,6706 +9769,2774,2013-11-11 19:57:29 -0800,2203,6707 +9770,4656,2013-11-07 09:53:18 -0800,2203,6706 +9771,9422,2013-11-08 03:21:32 -0800,2203,6706 +9772,813,2013-11-06 19:28:43 -0800,2203,6707 +9773,1621,2013-11-06 11:49:06 -0800,2203,6707 +9774,1632,2013-11-13 06:42:26 -0800,2203,6707 +9775,5596,2013-11-07 00:30:35 -0800,2203,6707 +9776,6850,2013-11-10 17:28:02 -0800,2203,6706 +9777,3510,2013-11-10 02:32:46 -0800,2204,6709 +9778,1660,2013-11-08 08:10:58 -0800,2204,6710 +9779,5926,2013-11-06 14:52:37 -0800,2204,6710 +9780,9621,2013-11-12 06:21:58 -0800,2204,6711 +9781,426,2013-11-11 19:49:52 -0800,2204,6711 +9782,6287,2013-11-08 06:35:31 -0800,2205,6713 +9783,2018,2013-11-09 12:48:22 -0800,2205,6712 +9784,160,2013-11-10 11:48:03 -0800,2205,6713 +9785,9713,2013-11-07 09:05:08 -0800,2205,6712 +9786,8484,2013-11-09 10:07:42 -0800,2205,6712 +9787,3289,2013-11-11 15:20:11 -0800,2206,6715 +9788,2357,2013-11-12 05:04:53 -0800,2206,6716 +9789,1163,2013-11-06 12:20:41 -0800,2206,6715 +9790,1530,2013-11-10 17:12:28 -0800,2206,6715 +9791,7422,2013-11-06 10:59:39 -0800,2206,6716 +9792,950,2013-11-11 14:35:42 -0800,2206,6714 +9793,8274,2013-11-12 16:51:00 -0800,2206,6715 +9794,7961,2013-11-09 18:20:09 -0800,2207,6718 +9795,7566,2013-11-10 04:12:30 -0800,2207,6718 +9796,7958,2013-11-09 19:08:07 -0800,2207,6718 +9797,8877,2013-11-07 04:43:45 -0800,2207,6718 +9798,6132,2013-11-08 05:46:17 -0800,2207,6717 +9799,8510,2013-11-06 22:34:07 -0800,2208,6719 +9800,7489,2013-11-06 13:12:24 -0800,2208,6723 +9801,2440,2013-11-10 19:12:54 -0800,2208,6719 +9802,8591,2013-11-13 01:50:49 -0800,2208,6722 +9803,3226,2013-11-11 12:18:18 -0800,2209,6725 +9804,9559,2013-11-06 16:39:34 -0800,2209,6725 +9805,7309,2013-11-13 03:45:35 -0800,2209,6725 +9806,1580,2013-11-09 02:03:03 -0800,2209,6726 +9807,8474,2013-11-10 09:14:47 -0800,2209,6725 +9808,4137,2013-11-13 02:18:12 -0800,2209,6724 +9809,3138,2013-11-13 04:05:59 -0800,2209,6725 +9810,5985,2013-11-12 10:36:55 -0800,2209,6725 +9811,256,2013-11-11 16:56:47 -0800,2209,6725 +9812,9440,2013-11-08 10:22:22 -0800,2210,6727 +9813,5540,2013-11-08 23:42:51 -0800,2210,6727 +9814,7059,2013-11-11 07:58:34 -0800,2210,6727 +9815,8170,2013-11-09 15:29:52 -0800,2210,6727 +9816,3742,2013-11-11 03:09:18 -0800,2210,6727 +9817,2445,2013-11-10 08:08:21 -0800,2210,6727 +9818,6456,2013-11-11 15:12:09 -0800,2210,6727 +9819,743,2013-11-07 04:34:17 -0800,2211,6728 +9820,6726,2013-11-12 04:45:43 -0800,2212,6730 +9821,6664,2013-11-11 13:32:08 -0800,2212,6729 +9822,3147,2013-11-07 18:17:24 -0800,2212,6731 +9823,2030,2013-11-10 00:14:52 -0800,2213,6732 +9824,6928,2013-11-09 06:48:19 -0800,2213,6732 +9825,2354,2013-11-10 21:20:58 -0800,2213,6732 +9826,2793,2013-11-07 00:41:34 -0800,2213,6732 +9827,8449,2013-11-06 12:37:16 -0800,2214,6733 +9828,8155,2013-11-11 06:49:04 -0800,2215,6737 +9829,1327,2013-11-08 14:12:59 -0800,2216,6741 +9830,7326,2013-11-08 23:56:30 -0800,2216,6740 +9831,3933,2013-11-06 17:25:49 -0800,2216,6743 +9832,4773,2013-11-11 22:15:06 -0800,2216,6742 +9833,1057,2013-11-09 14:54:44 -0800,2216,6742 +9834,4424,2013-11-06 20:22:52 -0800,2216,6740 +9835,1884,2013-11-11 02:16:44 -0800,2216,6742 +9836,810,2013-11-09 15:59:18 -0800,2216,6740 +9837,6823,2013-11-07 07:51:47 -0800,2217,6746 +9838,8370,2013-11-07 18:37:36 -0800,2217,6747 +9839,4299,2013-11-12 11:36:11 -0800,2217,6747 +9840,5372,2013-11-09 10:03:47 -0800,2217,6746 +9841,4820,2013-11-08 12:49:56 -0800,2217,6744 +9842,7122,2013-11-06 19:10:47 -0800,2217,6747 +9843,5043,2013-11-10 02:32:08 -0800,2219,6750 +9844,3913,2013-11-10 17:20:51 -0800,2219,6750 +9845,712,2013-11-10 12:28:26 -0800,2219,6752 +9846,8946,2013-11-06 19:49:29 -0800,2219,6752 +9847,2037,2013-11-08 13:10:27 -0800,2219,6751 +9848,1326,2013-11-11 11:13:56 -0800,2219,6750 +9849,7583,2013-11-10 21:14:44 -0800,2219,6750 +9850,2559,2013-11-10 16:56:30 -0800,2220,6754 +9851,1677,2013-11-10 09:08:47 -0800,2220,6755 +9852,5941,2013-11-11 06:07:25 -0800,2220,6757 +9853,2347,2013-11-06 18:26:49 -0800,2220,6757 +9854,8282,2013-11-10 22:30:17 -0800,2221,6759 +9855,4593,2013-11-06 16:56:30 -0800,2221,6760 +9856,60,2013-11-12 00:42:36 -0800,2222,6763 +9857,5182,2013-11-11 11:58:25 -0800,2224,6768 +9858,1030,2013-11-13 03:02:44 -0800,2224,6769 +9859,1177,2013-11-12 02:03:58 -0800,2224,6768 +9860,3196,2013-11-06 23:36:29 -0800,2225,6770 +9861,7859,2013-11-07 23:08:29 -0800,2225,6770 +9862,3459,2013-11-11 21:35:37 -0800,2225,6770 +9863,9420,2013-11-10 00:55:42 -0800,2225,6770 +9864,5251,2013-11-08 09:24:11 -0800,2225,6770 +9865,3324,2013-11-10 08:36:05 -0800,2226,6774 +9866,6494,2013-11-07 03:18:15 -0800,2226,6773 +9867,1894,2013-11-07 14:56:27 -0800,2226,6772 +9868,7094,2013-11-10 08:21:08 -0800,2226,6771 +9869,4463,2013-11-08 14:10:40 -0800,2226,6773 +9870,4227,2013-11-09 07:49:28 -0800,2226,6773 +9871,4067,2013-11-08 22:46:00 -0800,2226,6773 +9872,8679,2013-11-10 13:13:11 -0800,2227,6775 +9873,2327,2013-11-12 19:13:23 -0800,2227,6775 +9874,7540,2013-11-10 04:03:46 -0800,2228,6781 +9875,7678,2013-11-12 23:16:33 -0800,2228,6777 +9876,8900,2013-11-07 21:36:31 -0800,2228,6780 +9877,1275,2013-11-11 18:53:26 -0800,2228,6780 +9878,8720,2013-11-10 20:12:06 -0800,2228,6777 +9879,7155,2013-11-09 09:44:54 -0800,2228,6781 +9880,2360,2013-11-07 15:58:21 -0800,2228,6777 +9881,6622,2013-11-10 03:24:37 -0800,2228,6777 +9882,1535,2013-11-09 06:09:08 -0800,2228,6780 +9883,6995,2013-11-10 00:22:46 -0800,2229,6783 +9884,7372,2013-11-09 16:46:38 -0800,2229,6783 +9885,8864,2013-11-09 19:21:22 -0800,2229,6782 +9886,9385,2013-11-09 15:01:45 -0800,2229,6782 +9887,8289,2013-11-11 08:21:59 -0800,2229,6783 +9888,3010,2013-11-10 11:55:28 -0800,2229,6782 +9889,661,2013-11-10 22:55:40 -0800,2229,6782 +9890,5715,2013-11-07 14:59:17 -0800,2229,6783 +9891,6114,2013-11-11 04:39:23 -0800,2229,6783 +9892,7109,2013-11-10 01:10:36 -0800,2230,6784 +9893,1811,2013-11-06 19:34:43 -0800,2230,6784 +9894,6213,2013-11-06 20:33:29 -0800,2230,6784 +9895,2653,2013-11-06 21:56:53 -0800,2230,6784 +9896,6120,2013-11-06 20:18:13 -0800,2231,6785 +9897,1434,2013-11-11 01:32:24 -0800,2231,6785 +9898,4726,2013-11-12 04:39:31 -0800,2231,6785 +9899,7698,2013-11-09 11:19:35 -0800,2231,6785 +9900,1347,2013-11-10 15:32:59 -0800,2231,6785 +9901,8097,2013-11-06 22:23:32 -0800,2231,6785 +9902,2468,2013-11-08 14:47:44 -0800,2232,6788 +9903,3038,2013-11-09 12:57:18 -0800,2232,6788 +9904,6951,2013-11-06 09:48:30 -0800,2232,6788 +9905,243,2013-11-09 09:46:51 -0800,2233,6790 +9906,4990,2013-11-06 17:26:13 -0800,2233,6790 +9907,778,2013-11-10 23:45:00 -0800,2233,6789 +9908,1461,2013-11-13 01:15:54 -0800,2234,6792 +9909,6230,2013-11-09 10:03:42 -0800,2234,6791 +9910,28,2013-11-09 00:40:35 -0800,2234,6792 +9911,184,2013-11-11 01:07:24 -0800,2235,6793 +9912,7259,2013-11-06 20:15:24 -0800,2235,6793 +9913,192,2013-11-07 06:14:58 -0800,2235,6795 +9914,8336,2013-11-08 14:24:05 -0800,2235,6794 +9915,4842,2013-11-11 09:36:26 -0800,2235,6795 +9916,225,2013-11-08 21:59:22 -0800,2235,6794 +9917,8375,2013-11-11 19:02:24 -0800,2236,6796 +9918,8889,2013-11-10 22:38:54 -0800,2236,6796 +9919,8083,2013-11-08 03:07:24 -0800,2236,6796 +9920,4320,2013-11-10 04:55:39 -0800,2237,6799 +9921,8640,2013-11-08 10:06:56 -0800,2237,6799 +9922,9288,2013-11-10 16:26:21 -0800,2237,6799 +9923,1730,2013-11-07 11:11:16 -0800,2237,6798 +9924,6150,2013-11-08 15:42:58 -0800,2237,6797 +9925,8320,2013-11-11 05:05:33 -0800,2237,6798 +9926,9879,2013-11-12 17:54:26 -0800,2238,6800 +9927,8821,2013-11-10 15:44:53 -0800,2238,6801 +9928,3970,2013-11-08 16:58:53 -0800,2239,6803 +9929,8435,2013-11-10 19:26:53 -0800,2239,6803 +9930,5920,2013-11-11 10:50:06 -0800,2239,6805 +9931,9579,2013-11-07 04:06:51 -0800,2239,6805 +9932,7845,2013-11-07 01:10:44 -0800,2239,6803 +9933,2220,2013-11-07 08:47:17 -0800,2239,6802 +9934,62,2013-11-10 21:17:13 -0800,2239,6802 +9935,9080,2013-11-10 09:02:33 -0800,2240,6807 +9936,1524,2013-11-09 02:35:06 -0800,2240,6807 +9937,4457,2013-11-07 07:51:04 -0800,2240,6806 +9938,9463,2013-11-09 11:32:34 -0800,2240,6808 +9939,9158,2013-11-08 17:33:29 -0800,2241,6809 +9940,5174,2013-11-07 19:32:15 -0800,2242,6813 +9941,1314,2013-11-12 04:00:21 -0800,2242,6812 +9942,8717,2013-11-07 01:27:24 -0800,2242,6813 +9943,4428,2013-11-09 18:45:14 -0800,2242,6812 +9944,5840,2013-11-08 06:04:35 -0800,2242,6812 +9945,1837,2013-11-09 20:46:53 -0800,2242,6811 +9946,8835,2013-11-08 13:16:07 -0800,2242,6811 +9947,4215,2013-11-11 20:59:58 -0800,2242,6812 +9948,6462,2013-11-10 07:27:20 -0800,2242,6811 +9949,2175,2013-11-11 03:54:27 -0800,2243,6815 +9950,2426,2013-11-08 17:38:22 -0800,2243,6815 +9951,7889,2013-11-11 05:42:08 -0800,2243,6815 +9952,4911,2013-11-09 16:20:47 -0800,2243,6815 +9953,7650,2013-11-10 06:44:54 -0800,2243,6815 +9954,5835,2013-11-08 13:46:59 -0800,2244,6817 +9955,37,2013-11-07 19:44:06 -0800,2244,6817 +9956,9596,2013-11-06 08:54:12 -0800,2244,6816 +9957,1092,2013-11-08 20:49:20 -0800,2244,6816 +9958,9839,2013-11-07 14:53:18 -0800,2244,6816 +9959,4273,2013-11-12 01:33:26 -0800,2245,6818 +9960,65,2013-11-08 15:05:18 -0800,2246,6824 +9961,4768,2013-11-09 18:24:16 -0800,2246,6823 +9962,5586,2013-11-08 03:35:27 -0800,2246,6823 +9963,5879,2013-11-10 00:54:07 -0800,2247,6825 +9964,6530,2013-11-10 15:12:17 -0800,2247,6825 +9965,3050,2013-11-09 17:18:10 -0800,2247,6826 +9966,4120,2013-11-12 11:45:08 -0800,2247,6827 +9967,4575,2013-11-12 15:44:34 -0800,2247,6826 +9968,2399,2013-11-09 05:32:23 -0800,2247,6825 +9969,5781,2013-11-11 03:21:42 -0800,2247,6827 +9970,4995,2013-11-10 12:26:27 -0800,2247,6825 +9971,777,2013-11-11 07:08:09 -0800,2247,6826 +9972,2388,2013-11-09 13:44:28 -0800,2248,6829 +9973,6320,2013-11-08 23:00:57 -0800,2248,6828 +9974,2840,2013-11-08 16:22:06 -0800,2248,6829 +9975,5048,2013-11-09 11:53:55 -0800,2248,6829 +9976,1920,2013-11-06 18:45:38 -0800,2249,6831 +9977,1877,2013-11-08 13:34:23 -0800,2249,6832 +9978,2579,2013-11-06 17:27:46 -0800,2249,6831 +9979,5031,2013-11-09 09:06:21 -0800,2249,6832 +9980,7359,2013-11-11 08:32:31 -0800,2250,6835 +9981,6944,2013-11-11 17:56:47 -0800,2251,6840 +9982,3088,2013-11-09 19:28:47 -0800,2251,6844 +9983,3215,2013-11-09 07:50:33 -0800,2251,6840 +9984,7612,2013-11-13 03:40:30 -0800,2251,6841 +9985,1930,2013-11-13 07:19:48 -0800,2251,6844 +9986,3116,2013-11-06 13:48:15 -0800,2252,6845 +9987,8794,2013-11-11 10:44:00 -0800,2252,6846 +9988,4696,2013-11-12 18:30:50 -0800,2252,6846 +9989,7352,2013-11-11 14:09:10 -0800,2252,6846 +9990,610,2013-11-11 09:42:33 -0800,2252,6845 +9991,1862,2013-11-08 04:48:28 -0800,2252,6846 +9992,7267,2013-11-06 23:30:08 -0800,2252,6845 +9993,6884,2013-11-09 15:49:57 -0800,2252,6846 +9994,894,2013-11-12 10:05:52 -0800,2253,6847 +9995,4966,2013-11-08 02:57:37 -0800,2253,6847 +9996,3497,2013-11-08 22:46:25 -0800,2253,6847 +9997,5066,2013-11-11 17:23:31 -0800,2253,6847 +9998,7123,2013-11-08 14:10:49 -0800,2253,6847 +9999,7731,2013-11-13 04:10:29 -0800,2253,6847 +10000,4710,2013-11-12 13:18:32 -0800,2253,6847 +10001,9595,2013-11-07 21:27:43 -0800,2253,6847 +10002,7693,2013-11-12 17:19:30 -0800,2254,6848 +10003,3374,2013-11-10 05:41:09 -0800,2254,6850 +10004,3494,2013-11-12 23:34:19 -0800,2254,6849 +10005,4966,2013-11-12 23:07:06 -0800,2254,6850 +10006,9524,2013-11-12 12:45:03 -0800,2254,6851 +10007,6583,2013-11-07 17:55:14 -0800,2254,6851 +10008,9556,2013-11-11 04:47:31 -0800,2255,6853 +10009,2357,2013-11-07 02:15:53 -0800,2255,6853 +10010,5825,2013-11-07 08:20:41 -0800,2255,6853 +10011,8433,2013-11-11 07:36:08 -0800,2255,6853 +10012,5559,2013-11-08 16:57:38 -0800,2255,6853 +10013,2259,2013-11-09 06:28:02 -0800,2255,6853 +10014,8559,2013-11-08 02:00:42 -0800,2256,6854 +10015,865,2013-11-12 19:38:49 -0800,2256,6854 +10016,1819,2013-11-12 07:13:04 -0800,2256,6854 +10017,5890,2013-11-06 13:10:11 -0800,2256,6854 +10018,3695,2013-11-08 06:21:46 -0800,2256,6854 +10019,7648,2013-11-07 03:02:16 -0800,2256,6854 +10020,7336,2013-11-11 05:53:24 -0800,2256,6854 +10021,4221,2013-11-06 21:13:28 -0800,2256,6854 +10022,9372,2013-11-09 01:28:40 -0800,2257,6855 +10023,7640,2013-11-08 23:24:55 -0800,2257,6855 +10024,2423,2013-11-13 05:59:38 -0800,2257,6855 +10025,9586,2013-11-10 12:15:08 -0800,2257,6855 +10026,2010,2013-11-10 15:40:01 -0800,2257,6855 +10027,5563,2013-11-10 01:57:12 -0800,2257,6855 +10028,1391,2013-11-07 19:05:11 -0800,2257,6855 +10029,2194,2013-11-09 21:58:14 -0800,2259,6861 +10030,7519,2013-11-06 23:32:10 -0800,2259,6863 +10031,1873,2013-11-09 16:07:27 -0800,2259,6863 +10032,3078,2013-11-09 09:34:50 -0800,2259,6861 +10033,3527,2013-11-12 07:35:30 -0800,2259,6862 +10034,6234,2013-11-07 17:31:33 -0800,2259,6860 +10035,7588,2013-11-07 15:40:40 -0800,2259,6860 +10036,5260,2013-11-10 06:44:06 -0800,2259,6861 +10037,4374,2013-11-10 20:44:28 -0800,2260,6866 +10038,9260,2013-11-12 05:13:47 -0800,2260,6866 +10039,4410,2013-11-11 02:05:58 -0800,2260,6865 +10040,6900,2013-11-10 19:05:52 -0800,2261,6869 +10041,5815,2013-11-12 10:46:45 -0800,2261,6869 +10042,3779,2013-11-11 09:14:48 -0800,2261,6868 +10043,6130,2013-11-10 01:24:31 -0800,2261,6868 +10044,917,2013-11-08 12:08:10 -0800,2261,6870 +10045,5789,2013-11-07 16:00:42 -0800,2262,6874 +10046,1238,2013-11-08 15:31:41 -0800,2262,6872 +10047,6099,2013-11-10 04:29:42 -0800,2262,6873 +10048,2859,2013-11-11 19:57:01 -0800,2262,6873 +10049,4115,2013-11-11 22:55:09 -0800,2262,6872 +10050,6343,2013-11-06 16:15:50 -0800,2263,6875 +10051,6873,2013-11-08 09:19:02 -0800,2263,6877 +10052,5787,2013-11-11 04:03:00 -0800,2263,6879 +10053,9075,2013-11-11 05:36:46 -0800,2263,6877 +10054,299,2013-11-06 09:14:20 -0800,2263,6875 +10055,7719,2013-11-11 22:10:34 -0800,2263,6878 +10056,5983,2013-11-06 23:30:36 -0800,2263,6875 +10057,8428,2013-11-07 01:41:41 -0800,2263,6876 +10058,2920,2013-11-12 08:07:28 -0800,2263,6875 +10059,819,2013-11-10 10:15:38 -0800,2264,6880 +10060,6310,2013-11-09 06:55:05 -0800,2264,6883 +10061,7962,2013-11-12 11:09:02 -0800,2265,6885 +10062,697,2013-11-12 06:44:33 -0800,2265,6885 +10063,5690,2013-11-10 12:10:45 -0800,2265,6884 +10064,1775,2013-11-09 00:52:59 -0800,2265,6884 +10065,3041,2013-11-08 11:04:32 -0800,2265,6885 +10066,1347,2013-11-12 20:37:38 -0800,2265,6885 +10067,8522,2013-11-12 12:54:43 -0800,2265,6884 +10068,9556,2013-11-07 01:53:34 -0800,2265,6884 +10069,223,2013-11-12 20:36:21 -0800,2268,6892 +10070,8343,2013-11-12 00:21:39 -0800,2268,6893 +10071,8995,2013-11-13 06:12:34 -0800,2268,6891 +10072,5460,2013-11-09 19:18:08 -0800,2268,6893 +10073,252,2013-11-07 22:13:36 -0800,2269,6895 +10074,621,2013-11-07 12:51:24 -0800,2269,6894 +10075,4324,2013-11-09 19:34:57 -0800,2269,6894 +10076,1220,2013-11-09 01:17:36 -0800,2270,6896 +10077,3260,2013-11-08 05:46:52 -0800,2270,6896 +10078,8249,2013-11-09 23:01:40 -0800,2270,6896 +10079,6886,2013-11-12 10:55:51 -0800,2270,6896 +10080,7259,2013-11-12 10:39:12 -0800,2270,6896 +10081,4463,2013-11-10 09:59:56 -0800,2270,6896 +10082,9446,2013-11-10 00:26:52 -0800,2270,6896 +10083,8737,2013-11-08 09:29:02 -0800,2271,6897 +10084,3057,2013-11-11 09:15:03 -0800,2271,6899 +10085,8064,2013-11-10 02:34:29 -0800,2271,6898 +10086,7811,2013-11-13 08:16:52 -0800,2271,6897 +10087,1313,2013-11-07 23:33:03 -0800,2271,6898 +10088,6453,2013-11-11 19:47:50 -0800,2271,6897 +10089,5985,2013-11-12 07:04:08 -0800,2271,6899 +10090,9536,2013-11-09 13:16:57 -0800,2271,6897 +10091,8387,2013-11-09 09:49:21 -0800,2271,6899 +10092,3833,2013-11-09 20:26:22 -0800,2272,6900 +10093,631,2013-11-11 15:50:53 -0800,2272,6903 +10094,3770,2013-11-09 02:54:15 -0800,2272,6902 +10095,3584,2013-11-12 17:53:53 -0800,2272,6901 +10096,1872,2013-11-09 22:59:16 -0800,2272,6900 +10097,3424,2013-11-11 00:22:26 -0800,2273,6904 +10098,4341,2013-11-12 09:26:45 -0800,2273,6904 +10099,3924,2013-11-13 04:09:32 -0800,2273,6907 +10100,1670,2013-11-08 00:41:45 -0800,2273,6905 +10101,9062,2013-11-09 09:00:17 -0800,2273,6907 +10102,7715,2013-11-06 13:53:41 -0800,2273,6906 +10103,5540,2013-11-10 12:52:12 -0800,2273,6904 +10104,316,2013-11-10 13:45:44 -0800,2273,6908 +10105,3478,2013-11-12 00:49:34 -0800,2273,6905 +10106,1679,2013-11-11 10:23:29 -0800,2274,6909 +10107,1680,2013-11-07 21:09:15 -0800,2274,6909 +10108,6859,2013-11-12 00:49:27 -0800,2274,6909 +10109,5585,2013-11-12 23:32:23 -0800,2274,6909 +10110,382,2013-11-07 21:09:24 -0800,2275,6910 +10111,2774,2013-11-10 12:30:41 -0800,2275,6910 +10112,7084,2013-11-08 17:18:26 -0800,2275,6912 +10113,4730,2013-11-12 06:30:10 -0800,2275,6912 +10114,9599,2013-11-06 17:08:03 -0800,2276,6913 +10115,4345,2013-11-11 01:08:43 -0800,2276,6913 +10116,8153,2013-11-10 19:38:50 -0800,2276,6913 +10117,791,2013-11-09 19:50:56 -0800,2276,6913 +10118,2767,2013-11-11 07:15:59 -0800,2276,6913 +10119,1676,2013-11-11 08:36:12 -0800,2278,6919 +10120,6744,2013-11-10 22:01:52 -0800,2278,6922 +10121,4631,2013-11-12 09:04:57 -0800,2278,6922 +10122,6063,2013-11-06 20:39:20 -0800,2279,6924 +10123,2127,2013-11-07 16:52:04 -0800,2280,6928 +10124,336,2013-11-11 18:13:21 -0800,2280,6929 +10125,5423,2013-11-12 21:50:51 -0800,2280,6929 +10126,1675,2013-11-08 07:40:16 -0800,2280,6928 +10127,7523,2013-11-12 06:21:07 -0800,2280,6930 +10128,5378,2013-11-10 00:09:27 -0800,2281,6931 +10129,1283,2013-11-07 10:44:36 -0800,2281,6931 +10130,7959,2013-11-12 08:54:58 -0800,2282,6936 +10131,9755,2013-11-12 05:10:14 -0800,2282,6936 +10132,454,2013-11-11 13:23:05 -0800,2282,6933 +10133,2694,2013-11-08 06:28:38 -0800,2282,6936 +10134,2443,2013-11-08 17:39:19 -0800,2282,6933 +10135,211,2013-11-06 17:51:06 -0800,2283,6937 +10136,5020,2013-11-08 17:52:50 -0800,2283,6937 +10137,8317,2013-11-11 01:30:04 -0800,2284,6938 +10138,7417,2013-11-06 21:02:59 -0800,2284,6939 +10139,1689,2013-11-07 18:23:17 -0800,2284,6939 +10140,3920,2013-11-10 22:28:09 -0800,2285,6940 +10141,4916,2013-11-09 21:45:04 -0800,2285,6941 +10142,2480,2013-11-13 02:28:39 -0800,2285,6942 +10143,8048,2013-11-10 21:11:59 -0800,2285,6942 +10144,4090,2013-11-08 18:40:13 -0800,2286,6943 +10145,8597,2013-11-09 09:22:52 -0800,2286,6944 +10146,752,2013-11-12 03:41:43 -0800,2286,6944 +10147,3938,2013-11-08 14:13:35 -0800,2286,6943 +10148,1518,2013-11-09 08:22:51 -0800,2287,6949 +10149,6024,2013-11-11 13:52:56 -0800,2287,6947 +10150,1869,2013-11-07 22:46:34 -0800,2287,6949 +10151,8192,2013-11-12 12:31:53 -0800,2287,6949 +10152,3854,2013-11-08 06:22:54 -0800,2287,6947 +10153,8617,2013-11-08 13:36:20 -0800,2287,6947 +10154,4144,2013-11-09 06:19:09 -0800,2287,6949 +10155,3022,2013-11-08 23:53:41 -0800,2287,6949 +10156,5427,2013-11-07 03:49:05 -0800,2288,6952 +10157,660,2013-11-08 12:08:56 -0800,2288,6951 +10158,8643,2013-11-11 11:16:22 -0800,2288,6952 +10159,4722,2013-11-12 19:40:36 -0800,2288,6951 +10160,1480,2013-11-06 18:09:04 -0800,2290,6959 +10161,2556,2013-11-12 10:11:43 -0800,2290,6957 +10162,9323,2013-11-07 23:30:57 -0800,2290,6959 +10163,2164,2013-11-07 06:23:07 -0800,2290,6958 +10164,2286,2013-11-11 03:08:17 -0800,2290,6959 +10165,1193,2013-11-10 11:52:48 -0800,2290,6957 +10166,61,2013-11-10 01:20:21 -0800,2290,6957 +10167,1672,2013-11-08 05:29:04 -0800,2290,6959 +10168,2048,2013-11-12 08:19:36 -0800,2291,6962 +10169,7193,2013-11-13 01:33:28 -0800,2291,6961 +10170,2918,2013-11-08 13:25:54 -0800,2291,6960 +10171,7713,2013-11-12 01:40:17 -0800,2291,6961 +10172,7445,2013-11-08 19:52:12 -0800,2291,6962 +10173,2898,2013-11-08 08:27:18 -0800,2292,6963 +10174,5954,2013-11-11 13:06:06 -0800,2292,6965 +10175,1744,2013-11-08 12:31:49 -0800,2292,6966 +10176,5380,2013-11-08 16:48:45 -0800,2292,6963 +10177,8398,2013-11-12 07:08:46 -0800,2292,6964 +10178,5928,2013-11-10 11:41:43 -0800,2292,6964 +10179,3141,2013-11-11 01:02:35 -0800,2293,6967 +10180,7220,2013-11-12 14:53:28 -0800,2293,6967 +10181,6998,2013-11-06 09:02:23 -0800,2293,6967 +10182,5850,2013-11-11 18:53:45 -0800,2293,6967 +10183,9130,2013-11-11 22:02:36 -0800,2293,6967 +10184,5337,2013-11-06 19:38:17 -0800,2294,6968 +10185,7836,2013-11-10 14:39:20 -0800,2294,6969 +10186,117,2013-11-12 06:17:42 -0800,2294,6969 +10187,2089,2013-11-08 23:11:48 -0800,2295,6971 +10188,8387,2013-11-06 11:54:36 -0800,2295,6970 +10189,5969,2013-11-12 09:50:22 -0800,2295,6971 +10190,4856,2013-11-10 00:11:16 -0800,2295,6971 +10191,8934,2013-11-09 15:36:25 -0800,2295,6971 +10192,187,2013-11-10 03:27:32 -0800,2295,6971 +10193,1458,2013-11-11 22:11:25 -0800,2295,6971 +10194,8960,2013-11-10 17:56:19 -0800,2296,6972 +10195,5360,2013-11-06 08:58:03 -0800,2296,6974 +10196,3710,2013-11-10 18:35:56 -0800,2296,6973 +10197,2217,2013-11-12 04:22:49 -0800,2296,6973 +10198,8687,2013-11-08 11:45:56 -0800,2296,6972 +10199,5160,2013-11-10 03:40:26 -0800,2296,6973 +10200,1091,2013-11-07 22:18:13 -0800,2296,6973 +10201,8765,2013-11-06 11:45:34 -0800,2296,6974 +10202,5375,2013-11-11 05:05:21 -0800,2296,6973 +10203,3814,2013-11-12 09:31:34 -0800,2297,6976 +10204,4957,2013-11-11 01:09:48 -0800,2298,6979 +10205,4290,2013-11-12 01:17:07 -0800,2298,6977 +10206,4111,2013-11-11 15:11:41 -0800,2298,6979 +10207,3960,2013-11-12 13:19:01 -0800,2298,6980 +10208,2320,2013-11-08 07:26:40 -0800,2298,6977 +10209,3429,2013-11-11 09:17:18 -0800,2298,6981 +10210,3786,2013-11-12 02:23:32 -0800,2299,6982 +10211,6848,2013-11-09 04:53:23 -0800,2299,6982 +10212,8873,2013-11-07 15:41:45 -0800,2299,6982 +10213,3161,2013-11-06 13:44:10 -0800,2299,6982 +10214,822,2013-11-09 10:19:55 -0800,2299,6982 +10215,7140,2013-11-09 14:33:09 -0800,2299,6982 +10216,8179,2013-11-11 10:24:30 -0800,2300,6986 +10217,9895,2013-11-09 04:14:04 -0800,2300,6986 +10218,948,2013-11-11 14:00:57 -0800,2300,6984 +10219,513,2013-11-11 04:49:13 -0800,2301,6990 +10220,2232,2013-11-13 01:20:37 -0800,2302,6992 +10221,421,2013-11-06 20:41:36 -0800,2302,6993 +10222,2011,2013-11-12 06:39:09 -0800,2303,6997 +10223,1383,2013-11-07 21:57:05 -0800,2303,6996 +10224,2089,2013-11-07 09:10:13 -0800,2303,6997 +10225,2545,2013-11-07 15:06:07 -0800,2304,7000 +10226,9558,2013-11-08 04:06:12 -0800,2306,7004 +10227,8095,2013-11-11 03:54:13 -0800,2306,7004 +10228,5845,2013-11-08 12:57:23 -0800,2306,7004 +10229,3220,2013-11-11 21:36:05 -0800,2306,7004 +10230,8752,2013-11-13 00:14:01 -0800,2306,7004 +10231,6165,2013-11-07 11:57:10 -0800,2306,7004 +10232,8540,2013-11-06 20:23:17 -0800,2306,7004 +10233,6650,2013-11-09 15:32:23 -0800,2307,7006 +10234,9295,2013-11-08 11:12:19 -0800,2307,7006 +10235,1398,2013-11-08 19:12:53 -0800,2308,7008 +10236,5475,2013-11-11 05:53:57 -0800,2308,7011 +10237,8648,2013-11-13 08:11:24 -0800,2308,7012 +10238,1619,2013-11-08 06:15:48 -0800,2308,7012 +10239,9780,2013-11-09 14:06:31 -0800,2308,7012 +10240,6620,2013-11-09 00:17:53 -0800,2308,7009 +10241,8070,2013-11-07 05:00:34 -0800,2309,7013 +10242,8922,2013-11-09 03:47:34 -0800,2309,7015 +10243,1579,2013-11-10 06:36:15 -0800,2309,7015 +10244,7970,2013-11-08 07:52:45 -0800,2309,7013 +10245,2134,2013-11-07 07:47:10 -0800,2310,7017 +10246,146,2013-11-07 01:43:05 -0800,2311,7022 +10247,328,2013-11-12 10:23:49 -0800,2311,7023 +10248,8153,2013-11-13 05:15:19 -0800,2311,7022 +10249,7839,2013-11-11 16:49:00 -0800,2311,7023 +10250,6877,2013-11-12 10:30:29 -0800,2311,7023 +10251,6225,2013-11-11 21:31:51 -0800,2311,7022 +10252,8311,2013-11-08 19:04:03 -0800,2311,7023 +10253,1130,2013-11-12 16:09:23 -0800,2311,7023 +10254,3938,2013-11-10 20:22:29 -0800,2311,7023 +10255,5055,2013-11-10 10:23:27 -0800,2312,7027 +10256,4256,2013-11-08 09:30:15 -0800,2312,7024 +10257,6026,2013-11-11 23:41:25 -0800,2312,7027 +10258,9633,2013-11-09 15:05:02 -0800,2312,7027 +10259,5121,2013-11-11 03:12:01 -0800,2312,7025 +10260,2634,2013-11-12 18:13:30 -0800,2312,7024 +10261,848,2013-11-08 22:59:05 -0800,2312,7027 +10262,8198,2013-11-06 15:34:34 -0800,2313,7028 +10263,876,2013-11-09 02:52:24 -0800,2313,7028 +10264,7859,2013-11-09 19:52:33 -0800,2313,7028 +10265,7720,2013-11-09 07:40:13 -0800,2314,7032 +10266,4197,2013-11-11 16:45:52 -0800,2314,7032 +10267,8591,2013-11-11 22:10:46 -0800,2314,7032 +10268,859,2013-11-07 00:23:41 -0800,2314,7032 +10269,517,2013-11-10 08:32:08 -0800,2315,7035 +10270,7681,2013-11-08 22:53:35 -0800,2315,7033 +10271,8470,2013-11-09 18:52:06 -0800,2316,7038 +10272,1654,2013-11-13 04:50:25 -0800,2317,7040 +10273,4731,2013-11-10 08:51:15 -0800,2319,7046 +10274,539,2013-11-07 11:23:42 -0800,2319,7048 +10275,8883,2013-11-08 15:13:19 -0800,2319,7049 +10276,3661,2013-11-10 06:39:33 -0800,2319,7049 +10277,4342,2013-11-10 11:39:09 -0800,2319,7048 +10278,4967,2013-11-11 15:33:37 -0800,2319,7048 +10279,5198,2013-11-09 23:10:30 -0800,2319,7049 +10280,5358,2013-11-08 15:26:19 -0800,2320,7050 +10281,5871,2013-11-07 03:39:30 -0800,2320,7050 +10282,7387,2013-11-11 02:18:22 -0800,2320,7051 +10283,6812,2013-11-12 07:17:20 -0800,2320,7053 +10284,4070,2013-11-12 20:56:43 -0800,2320,7053 +10285,7859,2013-11-12 23:49:52 -0800,2320,7053 +10286,9113,2013-11-08 20:14:56 -0800,2320,7053 +10287,7464,2013-11-12 05:00:50 -0800,2320,7050 +10288,7987,2013-11-13 05:44:36 -0800,2320,7052 +10289,8097,2013-11-12 23:15:09 -0800,2322,7061 +10290,8800,2013-11-07 18:40:27 -0800,2322,7060 +10291,5686,2013-11-08 10:28:38 -0800,2322,7060 +10292,815,2013-11-11 14:05:08 -0800,2322,7062 +10293,1743,2013-11-08 03:29:00 -0800,2322,7062 +10294,5839,2013-11-07 13:50:18 -0800,2322,7059 +10295,3790,2013-11-09 02:49:00 -0800,2322,7061 +10296,3026,2013-11-09 11:46:21 -0800,2322,7059 +10297,2863,2013-11-07 13:34:08 -0800,2322,7062 +10298,5748,2013-11-08 17:20:58 -0800,2323,7064 +10299,8657,2013-11-09 05:07:12 -0800,2323,7067 +10300,7440,2013-11-12 11:13:54 -0800,2323,7066 +10301,9043,2013-11-11 03:20:32 -0800,2323,7067 +10302,4452,2013-11-08 07:37:52 -0800,2323,7063 +10303,6947,2013-11-09 01:27:00 -0800,2323,7064 +10304,1194,2013-11-06 10:04:34 -0800,2323,7067 +10305,1637,2013-11-12 22:48:32 -0800,2323,7063 +10306,2789,2013-11-10 03:32:30 -0800,2324,7070 +10307,7765,2013-11-09 12:51:19 -0800,2324,7068 +10308,5059,2013-11-09 11:43:15 -0800,2324,7071 +10309,940,2013-11-07 18:03:32 -0800,2324,7069 +10310,2080,2013-11-09 07:54:27 -0800,2325,7072 +10311,4523,2013-11-07 06:01:43 -0800,2326,7073 +10312,964,2013-11-11 17:52:38 -0800,2326,7075 +10313,6986,2013-11-11 23:21:26 -0800,2326,7074 +10314,211,2013-11-09 21:10:31 -0800,2326,7073 +10315,2970,2013-11-08 17:26:08 -0800,2326,7073 +10316,9362,2013-11-11 20:14:44 -0800,2326,7074 +10317,2368,2013-11-10 22:08:20 -0800,2326,7075 +10318,568,2013-11-10 21:45:24 -0800,2326,7075 +10319,776,2013-11-08 15:12:54 -0800,2327,7078 +10320,3322,2013-11-09 18:30:26 -0800,2328,7079 +10321,8423,2013-11-08 13:33:45 -0800,2329,7081 +10322,6559,2013-11-07 05:42:21 -0800,2329,7082 +10323,3339,2013-11-08 02:39:06 -0800,2329,7081 +10324,5964,2013-11-09 23:45:32 -0800,2329,7082 +10325,5016,2013-11-08 15:38:13 -0800,2329,7082 +10326,7198,2013-11-11 19:05:57 -0800,2329,7082 +10327,8526,2013-11-06 20:26:07 -0800,2330,7087 +10328,1934,2013-11-07 19:54:19 -0800,2331,7089 +10329,2479,2013-11-11 13:22:00 -0800,2331,7089 +10330,5093,2013-11-09 19:42:51 -0800,2331,7089 +10331,5551,2013-11-08 06:29:31 -0800,2331,7089 +10332,3829,2013-11-10 19:47:20 -0800,2332,7094 +10333,9690,2013-11-12 21:21:54 -0800,2332,7095 +10334,3829,2013-11-06 21:44:00 -0800,2332,7094 +10335,4900,2013-11-12 04:53:48 -0800,2332,7094 +10336,4322,2013-11-06 23:27:11 -0800,2333,7098 +10337,5787,2013-11-07 00:41:00 -0800,2333,7100 +10338,2773,2013-11-12 10:47:06 -0800,2333,7096 +10339,329,2013-11-11 22:17:08 -0800,2333,7097 +10340,9136,2013-11-07 00:08:04 -0800,2333,7097 +10341,1839,2013-11-09 06:08:27 -0800,2333,7100 +10342,8169,2013-11-06 12:35:38 -0800,2334,7102 +10343,7150,2013-11-13 08:00:31 -0800,2335,7105 +10344,2152,2013-11-06 14:11:46 -0800,2335,7106 +10345,7559,2013-11-07 07:30:45 -0800,2335,7108 +10346,9716,2013-11-11 03:41:01 -0800,2335,7106 +10347,6273,2013-11-13 02:27:32 -0800,2335,7109 +10348,1782,2013-11-10 05:26:15 -0800,2335,7106 +10349,7353,2013-11-07 18:28:35 -0800,2335,7106 +10350,2289,2013-11-06 22:57:29 -0800,2336,7111 +10351,843,2013-11-10 06:35:05 -0800,2336,7110 +10352,8167,2013-11-08 01:49:17 -0800,2336,7111 +10353,3632,2013-11-10 00:21:25 -0800,2336,7111 +10354,8345,2013-11-09 05:16:55 -0800,2337,7112 +10355,12,2013-11-06 20:09:27 -0800,2337,7112 +10356,4155,2013-11-09 08:17:42 -0800,2337,7113 +10357,7948,2013-11-10 00:54:47 -0800,2337,7113 +10358,2646,2013-11-08 09:00:08 -0800,2337,7112 +10359,739,2013-11-13 05:23:53 -0800,2337,7113 +10360,3545,2013-11-07 09:35:22 -0800,2337,7113 +10361,5954,2013-11-07 11:22:40 -0800,2338,7116 +10362,4262,2013-11-12 07:44:04 -0800,2338,7115 +10363,9622,2013-11-08 10:41:08 -0800,2338,7115 +10364,6898,2013-11-07 01:43:37 -0800,2338,7114 +10365,4816,2013-11-12 02:56:56 -0800,2339,7117 +10366,5730,2013-11-10 18:22:28 -0800,2339,7117 +10367,6926,2013-11-07 21:12:43 -0800,2339,7117 +10368,6034,2013-11-09 17:14:36 -0800,2339,7117 +10369,8946,2013-11-08 16:28:44 -0800,2339,7117 +10370,8068,2013-11-08 15:28:06 -0800,2339,7117 +10371,6938,2013-11-11 18:30:24 -0800,2339,7117 +10372,8540,2013-11-10 02:54:41 -0800,2340,7118 +10373,6533,2013-11-08 04:18:19 -0800,2340,7118 +10374,8712,2013-11-08 19:37:16 -0800,2340,7118 +10375,8846,2013-11-06 10:21:43 -0800,2340,7119 +10376,3579,2013-11-10 07:12:29 -0800,2340,7120 +10377,7378,2013-11-10 21:55:29 -0800,2340,7118 +10378,1823,2013-11-12 09:26:13 -0800,2340,7120 +10379,7218,2013-11-12 09:26:41 -0800,2342,7122 +10380,6085,2013-11-09 17:05:31 -0800,2342,7123 +10381,4293,2013-11-11 16:27:49 -0800,2342,7123 +10382,2421,2013-11-10 01:21:42 -0800,2342,7122 +10383,3633,2013-11-11 00:07:52 -0800,2342,7124 +10384,5498,2013-11-11 19:42:40 -0800,2343,7125 +10385,836,2013-11-07 13:14:06 -0800,2344,7130 +10386,1614,2013-11-06 21:28:52 -0800,2344,7130 +10387,9170,2013-11-11 02:38:45 -0800,2344,7129 +10388,2078,2013-11-10 23:19:26 -0800,2345,7136 +10389,5762,2013-11-10 20:12:26 -0800,2345,7133 +10390,1332,2013-11-06 18:42:06 -0800,2345,7133 +10391,5875,2013-11-09 08:55:44 -0800,2345,7133 +10392,3725,2013-11-08 14:31:29 -0800,2346,7137 +10393,4572,2013-11-07 11:44:20 -0800,2346,7138 +10394,8239,2013-11-07 23:42:43 -0800,2346,7138 +10395,2094,2013-11-08 07:48:16 -0800,2347,7140 +10396,9784,2013-11-12 04:03:05 -0800,2347,7140 +10397,8949,2013-11-06 23:34:36 -0800,2347,7140 +10398,3633,2013-11-12 02:50:51 -0800,2347,7140 +10399,9532,2013-11-09 02:49:32 -0800,2347,7140 +10400,4296,2013-11-12 06:30:56 -0800,2347,7140 +10401,9615,2013-11-10 17:00:13 -0800,2348,7141 +10402,2577,2013-11-13 07:23:53 -0800,2348,7144 +10403,4458,2013-11-11 06:23:31 -0800,2348,7141 +10404,4699,2013-11-06 11:59:33 -0800,2348,7142 +10405,1930,2013-11-11 03:18:51 -0800,2349,7146 +10406,2856,2013-11-12 01:58:09 -0800,2349,7145 +10407,323,2013-11-12 13:24:29 -0800,2349,7145 +10408,7141,2013-11-07 05:40:12 -0800,2349,7146 +10409,5195,2013-11-08 12:22:22 -0800,2350,7148 +10410,8360,2013-11-10 08:16:49 -0800,2350,7148 +10411,340,2013-11-09 16:01:28 -0800,2350,7149 +10412,3252,2013-11-08 19:39:29 -0800,2350,7148 +10413,7881,2013-11-09 11:30:52 -0800,2350,7147 +10414,296,2013-11-09 03:49:54 -0800,2350,7148 +10415,4179,2013-11-10 20:43:19 -0800,2350,7148 +10416,167,2013-11-13 07:14:08 -0800,2350,7148 +10417,7718,2013-11-11 09:49:53 -0800,2350,7147 +10418,5581,2013-11-11 20:11:09 -0800,2351,7156 +10419,4046,2013-11-10 15:03:38 -0800,2351,7152 +10420,3595,2013-11-13 04:12:55 -0800,2351,7155 +10421,2822,2013-11-09 14:43:36 -0800,2351,7155 +10422,5963,2013-11-08 21:58:01 -0800,2351,7152 +10423,7173,2013-11-07 00:34:38 -0800,2351,7154 +10424,7925,2013-11-06 09:44:27 -0800,2351,7152 +10425,9438,2013-11-08 14:27:47 -0800,2351,7155 +10426,2321,2013-11-12 23:19:29 -0800,2353,7160 +10427,4586,2013-11-06 21:24:40 -0800,2353,7160 +10428,8326,2013-11-09 16:51:41 -0800,2353,7160 +10429,8281,2013-11-08 19:20:30 -0800,2354,7162 +10430,7955,2013-11-08 09:51:23 -0800,2354,7161 +10431,399,2013-11-09 14:32:24 -0800,2354,7161 +10432,6335,2013-11-06 21:45:44 -0800,2354,7164 +10433,1522,2013-11-09 04:36:36 -0800,2355,7166 +10434,9639,2013-11-11 01:07:07 -0800,2355,7167 +10435,7523,2013-11-13 05:52:52 -0800,2355,7165 +10436,9497,2013-11-12 13:32:56 -0800,2355,7166 +10437,2754,2013-11-11 14:41:32 -0800,2355,7166 +10438,7934,2013-11-06 09:48:54 -0800,2355,7166 +10439,290,2013-11-07 04:45:33 -0800,2355,7165 +10440,9489,2013-11-13 05:39:26 -0800,2355,7167 +10441,9850,2013-11-11 02:23:59 -0800,2356,7168 +10442,6163,2013-11-09 18:21:25 -0800,2357,7173 +10443,5220,2013-11-10 07:04:36 -0800,2357,7175 +10444,6128,2013-11-12 21:25:51 -0800,2357,7173 +10445,1900,2013-11-09 16:02:20 -0800,2357,7172 +10446,7351,2013-11-07 15:11:37 -0800,2357,7171 +10447,9120,2013-11-08 05:33:25 -0800,2357,7173 +10448,6071,2013-11-11 02:25:36 -0800,2357,7173 +10449,4773,2013-11-07 07:10:10 -0800,2357,7172 +10450,1169,2013-11-07 11:51:35 -0800,2358,7179 +10451,4010,2013-11-13 07:36:25 -0800,2358,7178 +10452,7790,2013-11-11 04:17:34 -0800,2358,7179 +10453,5872,2013-11-10 08:56:52 -0800,2359,7184 +10454,217,2013-11-07 19:17:56 -0800,2359,7183 +10455,3354,2013-11-07 14:47:21 -0800,2359,7183 +10456,2196,2013-11-12 22:36:28 -0800,2359,7182 +10457,851,2013-11-10 18:46:53 -0800,2359,7180 +10458,5060,2013-11-07 05:44:04 -0800,2359,7181 +10459,3910,2013-11-08 19:33:11 -0800,2359,7182 +10460,2610,2013-11-12 17:58:20 -0800,2360,7185 +10461,6569,2013-11-08 02:26:37 -0800,2360,7185 +10462,3016,2013-11-06 20:33:00 -0800,2360,7185 +10463,191,2013-11-09 20:16:02 -0800,2360,7185 +10464,4463,2013-11-11 23:09:50 -0800,2360,7185 +10465,5530,2013-11-08 20:15:37 -0800,2360,7185 +10466,4629,2013-11-11 12:58:58 -0800,2360,7185 +10467,6390,2013-11-08 16:26:30 -0800,2361,7186 +10468,8090,2013-11-06 11:39:30 -0800,2361,7187 +10469,420,2013-11-10 06:20:24 -0800,2361,7187 +10470,2080,2013-11-11 17:20:37 -0800,2361,7187 +10471,6987,2013-11-09 22:15:27 -0800,2361,7186 +10472,734,2013-11-09 03:43:52 -0800,2361,7187 +10473,925,2013-11-09 22:24:07 -0800,2361,7188 +10474,1154,2013-11-12 20:12:52 -0800,2362,7191 +10475,9571,2013-11-07 08:14:17 -0800,2362,7190 +10476,6939,2013-11-08 21:31:27 -0800,2363,7196 +10477,6798,2013-11-09 23:42:36 -0800,2363,7198 +10478,4872,2013-11-11 18:42:32 -0800,2363,7198 +10479,3062,2013-11-12 06:43:01 -0800,2363,7197 +10480,5777,2013-11-12 03:09:07 -0800,2363,7195 +10481,9158,2013-11-12 02:11:50 -0800,2363,7195 +10482,4641,2013-11-07 07:53:50 -0800,2363,7197 +10483,8755,2013-11-10 16:27:51 -0800,2363,7196 +10484,4193,2013-11-11 09:45:39 -0800,2363,7196 +10485,1078,2013-11-08 16:05:37 -0800,2364,7202 +10486,5526,2013-11-07 07:51:04 -0800,2364,7203 +10487,2859,2013-11-12 15:46:57 -0800,2364,7199 +10488,4487,2013-11-08 06:23:10 -0800,2364,7202 +10489,1129,2013-11-10 00:26:23 -0800,2364,7201 +10490,5812,2013-11-12 23:06:22 -0800,2364,7199 +10491,5935,2013-11-10 13:36:35 -0800,2365,7204 +10492,4029,2013-11-10 11:55:12 -0800,2365,7204 +10493,2257,2013-11-08 21:42:40 -0800,2365,7204 +10494,9669,2013-11-12 08:03:57 -0800,2365,7204 +10495,3015,2013-11-09 04:07:21 -0800,2366,7206 +10496,6845,2013-11-09 08:19:54 -0800,2366,7208 +10497,8312,2013-11-11 01:13:42 -0800,2366,7207 +10498,6654,2013-11-10 12:14:11 -0800,2366,7206 +10499,2671,2013-11-07 16:42:11 -0800,2366,7207 +10500,4319,2013-11-08 06:48:48 -0800,2367,7209 +10501,7559,2013-11-07 02:54:23 -0800,2367,7211 +10502,4171,2013-11-09 20:56:44 -0800,2367,7211 +10503,528,2013-11-10 16:17:50 -0800,2368,7214 +10504,8383,2013-11-10 13:40:41 -0800,2368,7216 +10505,3247,2013-11-08 05:37:52 -0800,2368,7217 +10506,2016,2013-11-07 04:20:53 -0800,2368,7213 +10507,5145,2013-11-09 04:42:01 -0800,2368,7213 +10508,8221,2013-11-07 22:03:40 -0800,2368,7213 +10509,320,2013-11-12 17:43:16 -0800,2368,7217 +10510,1439,2013-11-13 07:53:11 -0800,2368,7215 +10511,1190,2013-11-12 00:17:10 -0800,2369,7218 +10512,661,2013-11-08 23:16:13 -0800,2369,7218 +10513,4880,2013-11-11 08:26:51 -0800,2369,7218 +10514,9664,2013-11-07 03:20:35 -0800,2370,7220 +10515,4465,2013-11-09 13:45:05 -0800,2370,7220 +10516,1654,2013-11-07 01:08:01 -0800,2370,7219 +10517,4018,2013-11-08 01:55:36 -0800,2370,7219 +10518,2929,2013-11-10 02:02:04 -0800,2370,7220 +10519,990,2013-11-09 18:30:46 -0800,2370,7220 +10520,7142,2013-11-13 07:15:41 -0800,2370,7219 +10521,3268,2013-11-09 19:30:45 -0800,2371,7223 +10522,4663,2013-11-06 19:34:09 -0800,2371,7221 +10523,5817,2013-11-10 18:16:13 -0800,2371,7222 +10524,9366,2013-11-10 14:55:18 -0800,2371,7222 +10525,1797,2013-11-08 09:50:27 -0800,2371,7225 +10526,5122,2013-11-06 20:10:13 -0800,2372,7226 +10527,935,2013-11-09 17:42:12 -0800,2373,7229 +10528,366,2013-11-12 09:57:18 -0800,2374,7231 +10529,5449,2013-11-10 00:57:10 -0800,2374,7233 +10530,7786,2013-11-11 18:52:25 -0800,2374,7232 +10531,7061,2013-11-11 13:57:23 -0800,2374,7234 +10532,6041,2013-11-07 13:16:53 -0800,2374,7230 +10533,7420,2013-11-12 17:22:20 -0800,2374,7233 +10534,216,2013-11-09 01:54:54 -0800,2374,7233 +10535,8188,2013-11-13 06:34:57 -0800,2375,7235 +10536,4250,2013-11-12 14:39:54 -0800,2375,7235 +10537,7097,2013-11-11 11:30:45 -0800,2375,7235 +10538,8220,2013-11-08 09:24:19 -0800,2375,7235 +10539,3631,2013-11-08 18:23:42 -0800,2375,7235 +10540,1222,2013-11-08 02:41:00 -0800,2375,7235 +10541,82,2013-11-09 13:00:19 -0800,2375,7235 +10542,4245,2013-11-13 06:38:19 -0800,2375,7235 +10543,9474,2013-11-09 02:03:40 -0800,2377,7238 +10544,1227,2013-11-12 08:07:40 -0800,2377,7238 +10545,8417,2013-11-12 14:01:38 -0800,2377,7238 +10546,6171,2013-11-10 11:08:59 -0800,2377,7238 +10547,9289,2013-11-08 00:46:12 -0800,2377,7238 +10548,3886,2013-11-08 15:23:34 -0800,2377,7238 +10549,4580,2013-11-12 20:58:56 -0800,2377,7238 +10550,1661,2013-11-08 14:08:06 -0800,2378,7240 +10551,8766,2013-11-06 13:49:49 -0800,2378,7239 +10552,6523,2013-11-12 12:38:37 -0800,2378,7239 +10553,2510,2013-11-12 23:35:01 -0800,2380,7242 +10554,4733,2013-11-09 15:12:41 -0800,2380,7243 +10555,1810,2013-11-09 03:36:58 -0800,2380,7243 +10556,6013,2013-11-07 17:26:32 -0800,2380,7242 +10557,2779,2013-11-12 22:10:53 -0800,2381,7244 +10558,1930,2013-11-12 13:02:00 -0800,2381,7245 +10559,2097,2013-11-08 16:27:56 -0800,2381,7246 +10560,1520,2013-11-09 21:26:42 -0800,2381,7244 +10561,5580,2013-11-08 21:39:15 -0800,2382,7247 +10562,6083,2013-11-11 05:07:02 -0800,2382,7247 +10563,4757,2013-11-12 12:52:28 -0800,2382,7247 +10564,8070,2013-11-12 22:37:50 -0800,2382,7247 +10565,7483,2013-11-09 04:39:35 -0800,2382,7247 +10566,9033,2013-11-08 16:56:28 -0800,2382,7247 +10567,3829,2013-11-08 00:30:51 -0800,2382,7247 +10568,3918,2013-11-13 01:08:16 -0800,2382,7247 +10569,4173,2013-11-10 12:26:37 -0800,2382,7247 +10570,8545,2013-11-10 13:29:27 -0800,2383,7248 +10571,2450,2013-11-07 16:58:21 -0800,2383,7248 +10572,9651,2013-11-11 08:44:04 -0800,2383,7249 +10573,4547,2013-11-08 01:57:23 -0800,2383,7248 +10574,5158,2013-11-08 14:51:38 -0800,2383,7248 +10575,3182,2013-11-12 20:14:13 -0800,2383,7248 +10576,2188,2013-11-11 00:36:53 -0800,2383,7248 +10577,7748,2013-11-07 23:36:01 -0800,2383,7249 +10578,8159,2013-11-12 09:37:32 -0800,2383,7249 +10579,6429,2013-11-12 05:02:35 -0800,2384,7250 +10580,9879,2013-11-08 17:50:43 -0800,2384,7250 +10581,6920,2013-11-07 01:33:51 -0800,2384,7250 +10582,6550,2013-11-10 13:02:24 -0800,2384,7250 +10583,4250,2013-11-10 17:45:05 -0800,2384,7250 +10584,5137,2013-11-09 17:22:29 -0800,2384,7250 +10585,1243,2013-11-12 02:23:50 -0800,2385,7251 +10586,2860,2013-11-13 07:57:37 -0800,2385,7251 +10587,998,2013-11-07 15:51:41 -0800,2385,7251 +10588,1071,2013-11-07 16:52:23 -0800,2385,7253 +10589,3192,2013-11-07 07:36:40 -0800,2385,7251 +10590,1432,2013-11-10 19:08:06 -0800,2385,7252 +10591,1784,2013-11-11 06:35:55 -0800,2385,7252 +10592,6150,2013-11-10 03:51:46 -0800,2385,7251 +10593,4331,2013-11-10 20:32:35 -0800,2385,7252 +10594,1159,2013-11-08 12:18:08 -0800,2386,7256 +10595,1111,2013-11-07 20:32:25 -0800,2386,7254 +10596,2630,2013-11-11 16:48:29 -0800,2387,7263 +10597,9888,2013-11-11 02:46:51 -0800,2387,7262 +10598,2417,2013-11-08 17:33:34 -0800,2389,7269 +10599,6380,2013-11-11 06:02:04 -0800,2389,7271 +10600,7295,2013-11-07 21:21:57 -0800,2389,7269 +10601,2138,2013-11-10 17:29:18 -0800,2389,7271 +10602,4057,2013-11-10 01:33:03 -0800,2389,7270 +10603,8818,2013-11-12 18:35:58 -0800,2389,7271 +10604,919,2013-11-08 08:44:48 -0800,2390,7273 +10605,2840,2013-11-11 05:12:20 -0800,2390,7274 +10606,6533,2013-11-11 17:07:51 -0800,2392,7279 +10607,3815,2013-11-11 20:23:18 -0800,2392,7279 +10608,214,2013-11-12 09:15:48 -0800,2392,7278 +10609,7380,2013-11-07 00:57:45 -0800,2392,7278 +10610,4875,2013-11-08 22:27:07 -0800,2392,7277 +10611,548,2013-11-13 07:08:44 -0800,2392,7280 +10612,4594,2013-11-13 06:31:16 -0800,2392,7278 +10613,4121,2013-11-08 15:03:11 -0800,2393,7282 +10614,7781,2013-11-11 13:02:45 -0800,2393,7282 +10615,2316,2013-11-11 03:09:43 -0800,2393,7284 +10616,7345,2013-11-09 01:59:25 -0800,2393,7284 +10617,2135,2013-11-09 01:13:39 -0800,2393,7282 +10618,2294,2013-11-08 14:58:58 -0800,2393,7283 +10619,1412,2013-11-08 09:48:16 -0800,2393,7282 +10620,6993,2013-11-13 00:15:31 -0800,2393,7283 +10621,894,2013-11-12 12:10:37 -0800,2394,7285 +10622,3894,2013-11-08 22:29:26 -0800,2394,7285 +10623,9037,2013-11-08 06:05:05 -0800,2394,7285 +10624,7995,2013-11-11 10:27:35 -0800,2394,7285 +10625,7530,2013-11-12 03:31:56 -0800,2394,7285 +10626,1037,2013-11-10 13:33:19 -0800,2395,7287 +10627,6151,2013-11-11 08:23:35 -0800,2395,7288 +10628,5173,2013-11-12 17:10:36 -0800,2395,7288 +10629,4960,2013-11-12 09:41:27 -0800,2395,7288 +10630,7673,2013-11-12 13:31:19 -0800,2396,7290 +10631,2265,2013-11-06 17:29:18 -0800,2396,7292 +10632,8383,2013-11-08 02:29:16 -0800,2396,7290 +10633,7970,2013-11-12 09:15:57 -0800,2396,7292 +10634,4879,2013-11-11 23:27:41 -0800,2396,7291 +10635,5790,2013-11-10 10:31:12 -0800,2396,7290 +10636,1237,2013-11-07 15:19:37 -0800,2396,7292 +10637,5073,2013-11-11 13:28:43 -0800,2397,7294 +10638,4634,2013-11-06 09:50:38 -0800,2398,7299 +10639,5080,2013-11-11 05:37:56 -0800,2398,7297 +10640,446,2013-11-07 16:40:21 -0800,2398,7295 +10641,7958,2013-11-12 07:10:18 -0800,2398,7299 +10642,5146,2013-11-06 16:07:22 -0800,2398,7299 +10643,1273,2013-11-12 15:17:54 -0800,2399,7300 +10644,9610,2013-11-12 01:07:56 -0800,2399,7301 +10645,545,2013-11-08 02:46:26 -0800,2399,7300 +10646,2730,2013-11-12 05:24:56 -0800,2399,7300 +10647,9487,2013-11-10 22:30:30 -0800,2399,7300 +10648,5839,2013-11-07 23:52:55 -0800,2399,7301 +10649,5940,2013-11-12 16:14:42 -0800,2400,7302 +10650,5678,2013-11-06 12:24:05 -0800,2400,7302 +10651,5487,2013-11-06 10:59:16 -0800,2400,7303 +10652,4649,2013-11-08 01:48:24 -0800,2400,7304 +10653,6927,2013-11-11 22:22:33 -0800,2401,7309 +10654,213,2013-11-11 22:24:52 -0800,2401,7308 +10655,7052,2013-11-07 22:15:13 -0800,2401,7308 +10656,5112,2013-11-11 06:08:30 -0800,2402,7311 +10657,5650,2013-11-06 10:56:57 -0800,2402,7311 +10658,1860,2013-11-10 10:41:31 -0800,2402,7311 +10659,5152,2013-11-13 01:34:57 -0800,2402,7312 +10660,4687,2013-11-09 14:40:16 -0800,2402,7311 +10661,9355,2013-11-11 04:03:49 -0800,2402,7311 +10662,5748,2013-11-12 09:09:42 -0800,2402,7311 +10663,9279,2013-11-12 07:18:07 -0800,2402,7311 +10664,9487,2013-11-12 14:14:41 -0800,2403,7314 +10665,2819,2013-11-06 10:49:06 -0800,2403,7316 +10666,1470,2013-11-12 07:29:20 -0800,2403,7314 +10667,2598,2013-11-11 09:19:46 -0800,2403,7316 +10668,5856,2013-11-10 20:10:27 -0800,2403,7313 +10669,7359,2013-11-06 13:32:57 -0800,2403,7314 +10670,6509,2013-11-10 20:25:01 -0800,2403,7316 +10671,4659,2013-11-08 20:12:43 -0800,2403,7315 +10672,4962,2013-11-13 02:46:06 -0800,2404,7317 +10673,2586,2013-11-11 15:29:30 -0800,2404,7317 +10674,6112,2013-11-09 21:31:31 -0800,2405,7321 +10675,8562,2013-11-12 17:16:56 -0800,2405,7319 +10676,2855,2013-11-06 19:58:28 -0800,2405,7320 +10677,2850,2013-11-07 11:11:58 -0800,2405,7321 +10678,5265,2013-11-11 10:48:13 -0800,2405,7320 +10679,2548,2013-11-10 11:31:40 -0800,2405,7320 +10680,3113,2013-11-12 15:55:54 -0800,2405,7319 +10681,7552,2013-11-13 03:06:44 -0800,2405,7321 +10682,5237,2013-11-12 04:21:12 -0800,2405,7320 +10683,861,2013-11-09 19:04:08 -0800,2406,7323 +10684,9740,2013-11-10 21:22:11 -0800,2406,7323 +10685,3590,2013-11-13 02:29:12 -0800,2407,7324 +10686,3924,2013-11-07 07:04:13 -0800,2407,7324 +10687,7223,2013-11-06 18:26:36 -0800,2407,7325 +10688,129,2013-11-07 00:37:46 -0800,2407,7324 +10689,1118,2013-11-12 11:42:29 -0800,2407,7324 +10690,9311,2013-11-12 18:28:36 -0800,2408,7326 +10691,1245,2013-11-13 07:28:16 -0800,2408,7326 +10692,4117,2013-11-06 13:21:33 -0800,2408,7326 +10693,6130,2013-11-11 09:27:15 -0800,2408,7326 +10694,1353,2013-11-12 23:49:05 -0800,2408,7326 +10695,6086,2013-11-09 06:09:55 -0800,2408,7326 +10696,5496,2013-11-09 16:21:44 -0800,2409,7328 +10697,8950,2013-11-08 21:15:27 -0800,2409,7327 +10698,8349,2013-11-11 23:04:06 -0800,2409,7330 +10699,8242,2013-11-09 02:27:45 -0800,2409,7330 +10700,7291,2013-11-09 20:42:03 -0800,2409,7328 +10701,8045,2013-11-10 18:22:21 -0800,2409,7328 +10702,5935,2013-11-09 02:00:23 -0800,2410,7331 +10703,6064,2013-11-10 05:36:07 -0800,2411,7333 +10704,596,2013-11-07 06:48:24 -0800,2411,7334 +10705,9333,2013-11-08 01:31:31 -0800,2411,7332 +10706,2974,2013-11-07 06:20:20 -0800,2412,7337 +10707,6831,2013-11-07 21:26:34 -0800,2412,7336 +10708,4264,2013-11-11 03:06:24 -0800,2412,7336 +10709,9761,2013-11-10 00:51:25 -0800,2412,7337 +10710,1621,2013-11-07 02:41:07 -0800,2412,7336 +10711,5456,2013-11-06 20:08:10 -0800,2412,7337 +10712,7381,2013-11-11 06:01:47 -0800,2412,7337 +10713,940,2013-11-12 12:35:38 -0800,2413,7339 +10714,7441,2013-11-10 12:57:13 -0800,2413,7338 +10715,2936,2013-11-11 05:19:24 -0800,2414,7344 +10716,2718,2013-11-08 23:48:48 -0800,2414,7344 +10717,4019,2013-11-07 13:54:59 -0800,2414,7343 +10718,2139,2013-11-12 12:14:58 -0800,2414,7344 +10719,4910,2013-11-09 22:13:36 -0800,2414,7344 +10720,3054,2013-11-13 02:08:56 -0800,2414,7343 +10721,4563,2013-11-12 10:09:00 -0800,2414,7344 +10722,1639,2013-11-06 22:27:14 -0800,2414,7343 +10723,5743,2013-11-09 23:50:22 -0800,2414,7344 +10724,3596,2013-11-07 11:28:09 -0800,2415,7349 +10725,4355,2013-11-10 06:08:08 -0800,2415,7349 +10726,6568,2013-11-12 17:12:56 -0800,2415,7346 +10727,8153,2013-11-11 01:56:03 -0800,2415,7345 +10728,2451,2013-11-12 16:24:02 -0800,2416,7350 +10729,1053,2013-11-10 09:32:48 -0800,2416,7351 +10730,9797,2013-11-07 10:38:16 -0800,2416,7352 +10731,218,2013-11-10 18:04:39 -0800,2416,7351 +10732,685,2013-11-11 23:28:10 -0800,2416,7350 +10733,1210,2013-11-12 08:45:05 -0800,2416,7354 +10734,1655,2013-11-06 20:49:37 -0800,2416,7351 +10735,5048,2013-11-12 22:59:52 -0800,2417,7357 +10736,8399,2013-11-07 07:53:51 -0800,2417,7356 +10737,6509,2013-11-06 09:33:59 -0800,2417,7356 +10738,1034,2013-11-12 07:34:03 -0800,2418,7360 +10739,5229,2013-11-08 02:50:54 -0800,2418,7359 +10740,7088,2013-11-06 16:49:29 -0800,2418,7361 +10741,9527,2013-11-08 08:15:46 -0800,2419,7363 +10742,8295,2013-11-11 16:53:27 -0800,2419,7363 +10743,8646,2013-11-09 19:52:42 -0800,2419,7363 +10744,6750,2013-11-09 09:58:48 -0800,2419,7363 +10745,4284,2013-11-07 09:50:28 -0800,2419,7362 +10746,9269,2013-11-12 18:54:41 -0800,2419,7363 +10747,6858,2013-11-07 18:18:30 -0800,2419,7362 +10748,2783,2013-11-09 15:32:17 -0800,2420,7364 +10749,3354,2013-11-12 05:44:39 -0800,2420,7364 +10750,2055,2013-11-07 17:21:09 -0800,2423,7375 +10751,7255,2013-11-13 02:19:35 -0800,2423,7375 +10752,7193,2013-11-11 14:36:20 -0800,2423,7375 +10753,8910,2013-11-13 03:02:50 -0800,2423,7375 +10754,9871,2013-11-08 05:13:55 -0800,2423,7375 +10755,98,2013-11-12 14:24:20 -0800,2423,7375 +10756,8143,2013-11-09 03:28:29 -0800,2423,7375 +10757,9681,2013-11-12 12:11:11 -0800,2423,7375 +10758,7730,2013-11-07 22:55:21 -0800,2424,7380 +10759,620,2013-11-07 02:03:54 -0800,2424,7379 +10760,9490,2013-11-11 00:18:20 -0800,2424,7377 +10761,9866,2013-11-13 03:59:14 -0800,2425,7381 +10762,682,2013-11-12 04:12:53 -0800,2425,7382 +10763,1767,2013-11-08 16:35:24 -0800,2426,7384 +10764,5123,2013-11-11 08:34:14 -0800,2426,7385 +10765,876,2013-11-06 13:41:32 -0800,2426,7386 +10766,1539,2013-11-12 05:44:53 -0800,2426,7387 +10767,2761,2013-11-11 01:30:55 -0800,2426,7385 +10768,7880,2013-11-11 00:33:47 -0800,2426,7386 +10769,3376,2013-11-07 03:58:19 -0800,2426,7385 +10770,2223,2013-11-12 06:49:29 -0800,2426,7385 +10771,6443,2013-11-07 08:31:54 -0800,2427,7389 +10772,3055,2013-11-11 13:54:19 -0800,2427,7388 +10773,1737,2013-11-12 17:06:22 -0800,2427,7388 +10774,6956,2013-11-10 22:14:04 -0800,2427,7388 +10775,149,2013-11-11 11:52:45 -0800,2427,7388 +10776,5525,2013-11-06 14:22:27 -0800,2427,7389 +10777,4079,2013-11-09 20:10:06 -0800,2428,7391 +10778,7827,2013-11-11 01:22:49 -0800,2428,7390 +10779,9399,2013-11-12 17:12:14 -0800,2428,7391 +10780,5294,2013-11-09 23:38:14 -0800,2428,7390 +10781,3020,2013-11-12 22:24:59 -0800,2428,7390 +10782,5334,2013-11-07 22:20:49 -0800,2430,7396 +10783,2762,2013-11-12 11:29:53 -0800,2430,7395 +10784,9136,2013-11-08 21:30:52 -0800,2430,7395 +10785,1928,2013-11-09 05:14:09 -0800,2430,7396 +10786,4298,2013-11-07 06:18:36 -0800,2431,7398 +10787,2121,2013-11-10 21:21:41 -0800,2431,7398 +10788,9781,2013-11-07 14:42:22 -0800,2431,7401 +10789,9290,2013-11-10 10:43:08 -0800,2431,7398 +10790,1862,2013-11-13 07:27:41 -0800,2431,7398 +10791,5334,2013-11-13 05:24:30 -0800,2431,7401 +10792,1914,2013-11-07 07:43:39 -0800,2431,7398 +10793,2313,2013-11-10 03:14:38 -0800,2431,7398 +10794,1780,2013-11-09 10:16:32 -0800,2432,7404 +10795,2192,2013-11-07 21:24:59 -0800,2432,7404 +10796,671,2013-11-09 11:57:51 -0800,2432,7406 +10797,2280,2013-11-10 05:02:40 -0800,2432,7403 +10798,6817,2013-11-07 17:57:30 -0800,2432,7403 +10799,9844,2013-11-13 07:43:38 -0800,2432,7404 +10800,7048,2013-11-08 09:58:58 -0800,2432,7402 +10801,3014,2013-11-07 00:42:14 -0800,2432,7403 +10802,9651,2013-11-12 20:59:59 -0800,2433,7407 +10803,4020,2013-11-07 23:40:29 -0800,2433,7409 +10804,7620,2013-11-08 04:35:17 -0800,2433,7409 +10805,6523,2013-11-07 01:56:22 -0800,2433,7407 +10806,2822,2013-11-08 18:59:24 -0800,2433,7409 +10807,8340,2013-11-09 17:15:07 -0800,2433,7410 +10808,2820,2013-11-11 04:25:40 -0800,2434,7411 +10809,6741,2013-11-07 03:24:36 -0800,2434,7411 +10810,2717,2013-11-11 01:48:00 -0800,2434,7411 +10811,195,2013-11-11 19:16:58 -0800,2434,7412 +10812,5213,2013-11-11 11:29:17 -0800,2434,7412 +10813,2946,2013-11-12 09:28:25 -0800,2434,7411 +10814,2594,2013-11-11 09:33:43 -0800,2434,7411 +10815,330,2013-11-12 21:01:56 -0800,2434,7412 +10816,5319,2013-11-08 05:31:04 -0800,2434,7412 +10817,511,2013-11-13 07:41:03 -0800,2435,7415 +10818,3252,2013-11-08 19:40:34 -0800,2435,7414 +10819,4570,2013-11-10 06:52:15 -0800,2435,7414 +10820,3129,2013-11-11 06:47:56 -0800,2436,7418 +10821,224,2013-11-12 03:11:49 -0800,2436,7419 +10822,9568,2013-11-12 08:11:24 -0800,2438,7422 +10823,6049,2013-11-07 19:07:40 -0800,2438,7421 +10824,8836,2013-11-11 19:34:31 -0800,2438,7422 +10825,9339,2013-11-11 09:27:47 -0800,2438,7422 +10826,8264,2013-11-08 05:56:57 -0800,2438,7421 +10827,9199,2013-11-10 08:56:18 -0800,2440,7428 +10828,7631,2013-11-06 22:27:24 -0800,2440,7429 +10829,4164,2013-11-06 18:29:45 -0800,2440,7428 +10830,5643,2013-11-07 17:35:13 -0800,2441,7432 +10831,321,2013-11-09 11:31:56 -0800,2441,7433 +10832,8919,2013-11-06 14:12:58 -0800,2441,7431 +10833,6478,2013-11-07 07:48:26 -0800,2441,7432 +10834,7117,2013-11-11 00:44:56 -0800,2441,7432 +10835,2777,2013-11-06 12:04:57 -0800,2443,7439 +10836,2486,2013-11-10 04:32:42 -0800,2443,7438 +10837,6040,2013-11-11 16:39:42 -0800,2443,7439 +10838,7511,2013-11-08 06:33:44 -0800,2443,7440 +10839,1934,2013-11-12 20:33:07 -0800,2443,7439 +10840,3590,2013-11-08 08:48:19 -0800,2443,7438 +10841,5250,2013-11-06 21:24:04 -0800,2444,7441 +10842,9410,2013-11-07 05:17:03 -0800,2444,7441 +10843,7393,2013-11-09 14:24:59 -0800,2446,7446 +10844,1281,2013-11-12 03:31:23 -0800,2447,7448 +10845,7054,2013-11-07 15:30:10 -0800,2447,7450 +10846,8651,2013-11-07 18:41:41 -0800,2447,7448 +10847,9030,2013-11-12 15:44:50 -0800,2447,7450 +10848,1826,2013-11-10 17:28:07 -0800,2447,7447 +10849,7569,2013-11-13 07:00:21 -0800,2449,7457 +10850,4132,2013-11-07 05:20:11 -0800,2451,7461 +10851,2076,2013-11-12 16:17:06 -0800,2451,7462 +10852,6227,2013-11-10 15:57:30 -0800,2451,7462 +10853,928,2013-11-07 03:33:28 -0800,2451,7461 +10854,7976,2013-11-12 22:34:53 -0800,2451,7461 +10855,2946,2013-11-07 22:45:52 -0800,2452,7467 +10856,1838,2013-11-07 16:49:36 -0800,2452,7467 +10857,3024,2013-11-09 20:16:50 -0800,2452,7465 +10858,9399,2013-11-13 04:01:27 -0800,2452,7465 +10859,2945,2013-11-11 05:47:44 -0800,2452,7465 +10860,8877,2013-11-07 18:42:35 -0800,2452,7465 +10861,1425,2013-11-06 21:22:57 -0800,2453,7468 +10862,5075,2013-11-10 09:38:38 -0800,2453,7468 +10863,5589,2013-11-08 16:54:51 -0800,2453,7468 +10864,6616,2013-11-09 15:50:35 -0800,2453,7469 +10865,8850,2013-11-08 22:53:28 -0800,2453,7469 +10866,5315,2013-11-13 02:54:40 -0800,2454,7471 +10867,8630,2013-11-08 00:21:10 -0800,2456,7478 +10868,4868,2013-11-10 02:17:47 -0800,2457,7482 +10869,2585,2013-11-12 18:38:29 -0800,2457,7483 +10870,4750,2013-11-13 05:17:25 -0800,2457,7483 +10871,2391,2013-11-08 10:50:01 -0800,2457,7481 +10872,1830,2013-11-08 02:50:24 -0800,2457,7483 +10873,798,2013-11-11 01:24:10 -0800,2457,7481 +10874,3765,2013-11-10 11:40:31 -0800,2457,7481 +10875,3567,2013-11-10 11:16:54 -0800,2457,7482 +10876,8410,2013-11-10 16:45:19 -0800,2458,7484 +10877,1673,2013-11-11 05:42:19 -0800,2458,7484 +10878,4258,2013-11-10 08:31:04 -0800,2458,7484 +10879,5861,2013-11-09 00:47:10 -0800,2460,7488 +10880,9142,2013-11-13 08:29:01 -0800,2460,7489 +10881,2073,2013-11-11 15:59:40 -0800,2460,7488 +10882,7329,2013-11-07 06:25:12 -0800,2460,7491 +10883,5045,2013-11-12 08:06:37 -0800,2460,7489 +10884,6340,2013-11-10 21:41:31 -0800,2460,7490 +10885,9757,2013-11-13 01:00:51 -0800,2460,7488 +10886,4650,2013-11-12 08:18:36 -0800,2461,7495 +10887,8872,2013-11-07 23:02:58 -0800,2461,7494 +10888,8231,2013-11-11 23:27:41 -0800,2462,7499 +10889,6681,2013-11-08 02:23:09 -0800,2462,7497 +10890,6219,2013-11-09 09:05:44 -0800,2462,7496 +10891,2911,2013-11-10 06:39:19 -0800,2462,7499 +10892,9278,2013-11-09 02:42:55 -0800,2462,7499 +10893,5354,2013-11-06 12:13:11 -0800,2462,7499 +10894,5949,2013-11-06 09:51:21 -0800,2463,7502 +10895,1594,2013-11-07 18:45:54 -0800,2463,7502 +10896,3457,2013-11-11 12:50:14 -0800,2463,7503 +10897,6530,2013-11-12 17:45:26 -0800,2463,7501 +10898,6018,2013-11-12 23:05:18 -0800,2463,7503 +10899,3000,2013-11-12 21:32:05 -0800,2463,7502 +10900,8281,2013-11-07 11:00:55 -0800,2464,7506 +10901,7154,2013-11-07 21:52:58 -0800,2464,7506 +10902,7680,2013-11-09 06:20:39 -0800,2464,7506 +10903,1911,2013-11-11 23:04:04 -0800,2464,7506 +10904,2393,2013-11-11 17:36:02 -0800,2464,7504 +10905,514,2013-11-07 01:00:55 -0800,2464,7506 +10906,9059,2013-11-12 14:34:30 -0800,2464,7505 +10907,6962,2013-11-09 19:30:32 -0800,2464,7505 +10908,3145,2013-11-09 11:28:35 -0800,2465,7509 +10909,1467,2013-11-10 14:10:04 -0800,2467,7514 +10910,3077,2013-11-12 03:21:43 -0800,2467,7513 +10911,451,2013-11-07 15:52:14 -0800,2467,7513 +10912,7759,2013-11-11 11:18:42 -0800,2467,7511 +10913,2962,2013-11-08 17:49:07 -0800,2469,7521 +10914,8764,2013-11-09 12:18:00 -0800,2469,7522 +10915,1234,2013-11-08 02:29:21 -0800,2469,7521 +10916,1644,2013-11-11 10:48:36 -0800,2469,7522 +10917,6667,2013-11-10 21:15:05 -0800,2470,7524 +10918,6795,2013-11-09 01:40:27 -0800,2470,7523 +10919,2883,2013-11-10 06:56:07 -0800,2470,7524 +10920,440,2013-11-09 08:16:01 -0800,2470,7526 +10921,6290,2013-11-08 08:19:28 -0800,2471,7528 +10922,3815,2013-11-11 04:37:02 -0800,2471,7530 +10923,3500,2013-11-06 10:23:05 -0800,2471,7528 +10924,3560,2013-11-08 10:00:10 -0800,2471,7530 +10925,1196,2013-11-10 02:51:06 -0800,2472,7531 +10926,5418,2013-11-12 20:20:41 -0800,2472,7532 +10927,8632,2013-11-08 02:30:15 -0800,2472,7532 +10928,6920,2013-11-09 04:17:00 -0800,2472,7532 +10929,5738,2013-11-10 08:06:08 -0800,2472,7532 +10930,379,2013-11-08 17:11:31 -0800,2472,7531 +10931,7359,2013-11-12 22:07:57 -0800,2472,7533 +10932,7959,2013-11-10 10:59:30 -0800,2472,7531 +10933,8930,2013-11-12 21:22:47 -0800,2473,7534 +10934,8059,2013-11-06 20:55:29 -0800,2473,7538 +10935,5643,2013-11-06 15:08:27 -0800,2473,7537 +10936,454,2013-11-06 09:23:14 -0800,2473,7538 +10937,1190,2013-11-13 01:48:22 -0800,2473,7537 +10938,4991,2013-11-07 06:27:51 -0800,2473,7534 +10939,712,2013-11-10 09:16:01 -0800,2473,7534 +10940,5757,2013-11-09 20:39:12 -0800,2475,7543 +10941,6191,2013-11-07 18:45:14 -0800,2475,7543 +10942,3672,2013-11-09 06:20:08 -0800,2475,7543 +10943,2361,2013-11-11 04:16:43 -0800,2476,7545 +10944,6048,2013-11-08 08:35:50 -0800,2476,7545 +10945,3174,2013-11-07 17:37:16 -0800,2476,7544 +10946,7950,2013-11-12 01:23:17 -0800,2476,7545 +10947,2173,2013-11-08 20:42:03 -0800,2476,7545 +10948,191,2013-11-12 19:58:57 -0800,2476,7545 +10949,5392,2013-11-12 01:17:58 -0800,2476,7544 +10950,8276,2013-11-06 20:27:07 -0800,2476,7545 +10951,3131,2013-11-09 08:14:32 -0800,2476,7544 +10952,5238,2013-11-09 21:46:14 -0800,2477,7547 +10953,6051,2013-11-09 23:56:51 -0800,2477,7547 +10954,438,2013-11-12 07:14:26 -0800,2477,7546 +10955,3179,2013-11-06 13:31:20 -0800,2477,7546 +10956,9470,2013-11-08 05:59:33 -0800,2478,7549 +10957,5888,2013-11-07 20:52:12 -0800,2478,7549 +10958,7341,2013-11-09 03:25:22 -0800,2478,7548 +10959,6091,2013-11-10 23:26:25 -0800,2478,7549 +10960,356,2013-11-08 15:47:17 -0800,2478,7549 +10961,299,2013-11-11 03:55:32 -0800,2478,7549 +10962,3490,2013-11-10 22:07:00 -0800,2479,7552 +10963,9195,2013-11-13 00:05:30 -0800,2479,7551 +10964,6943,2013-11-10 20:25:18 -0800,2479,7552 +10965,8148,2013-11-07 21:39:23 -0800,2479,7550 +10966,8059,2013-11-07 04:41:56 -0800,2479,7551 +10967,4499,2013-11-06 11:27:08 -0800,2479,7551 +10968,1752,2013-11-11 16:14:23 -0800,2479,7550 +10969,1133,2013-11-09 11:12:45 -0800,2479,7551 +10970,35,2013-11-08 18:43:15 -0800,2479,7552 +10971,4760,2013-11-07 03:10:32 -0800,2480,7554 +10972,7209,2013-11-09 11:59:38 -0800,2480,7554 +10973,1221,2013-11-07 01:54:32 -0800,2480,7554 +10974,7018,2013-11-11 14:33:41 -0800,2480,7554 +10975,4883,2013-11-07 20:33:00 -0800,2480,7554 +10976,7833,2013-11-12 19:45:04 -0800,2480,7554 +10977,1462,2013-11-07 03:10:02 -0800,2480,7554 +10978,6854,2013-11-09 14:10:42 -0800,2480,7554 +10979,5732,2013-11-10 23:20:11 -0800,2480,7554 +10980,9789,2013-11-12 02:35:48 -0800,2481,7555 +10981,6455,2013-11-06 21:49:19 -0800,2481,7555 +10982,4293,2013-11-12 18:00:17 -0800,2481,7555 +10983,3515,2013-11-08 03:08:11 -0800,2483,7565 +10984,4811,2013-11-11 07:06:26 -0800,2483,7566 +10985,8788,2013-11-12 10:23:36 -0800,2483,7563 +10986,770,2013-11-08 06:51:38 -0800,2483,7566 +10987,4934,2013-11-08 17:21:45 -0800,2484,7568 +10988,5835,2013-11-10 17:25:03 -0800,2484,7569 +10989,162,2013-11-09 08:19:24 -0800,2484,7569 +10990,1437,2013-11-10 17:57:01 -0800,2484,7568 +10991,1310,2013-11-11 11:16:28 -0800,2484,7569 +10992,6652,2013-11-08 14:36:09 -0800,2484,7567 +10993,8664,2013-11-09 03:01:05 -0800,2484,7568 +10994,8419,2013-11-09 17:31:50 -0800,2486,7576 +10995,8495,2013-11-08 16:23:17 -0800,2486,7577 +10996,8119,2013-11-09 09:27:52 -0800,2486,7576 +10997,175,2013-11-08 20:07:28 -0800,2486,7576 +10998,2055,2013-11-07 11:50:06 -0800,2486,7577 +10999,2759,2013-11-06 18:49:11 -0800,2486,7577 +11000,8133,2013-11-08 10:06:39 -0800,2486,7576 +11001,2716,2013-11-10 07:01:01 -0800,2487,7582 +11002,8221,2013-11-13 01:43:53 -0800,2487,7580 +11003,7970,2013-11-10 21:03:47 -0800,2487,7579 +11004,8519,2013-11-12 21:59:13 -0800,2487,7582 +11005,2269,2013-11-13 06:46:51 -0800,2487,7580 +11006,8130,2013-11-12 02:55:17 -0800,2487,7580 +11007,3535,2013-11-12 07:38:14 -0800,2487,7581 +11008,5528,2013-11-09 05:38:39 -0800,2487,7580 +11009,5996,2013-11-10 05:12:26 -0800,2487,7579 +11010,6694,2013-11-10 15:14:34 -0800,2488,7584 +11011,1697,2013-11-12 11:22:25 -0800,2488,7583 +11012,5229,2013-11-07 00:00:46 -0800,2488,7585 +11013,9021,2013-11-12 12:14:42 -0800,2488,7587 +11014,6761,2013-11-10 04:12:40 -0800,2488,7585 +11015,3286,2013-11-06 19:09:11 -0800,2488,7584 +11016,1551,2013-11-12 02:28:22 -0800,2489,7588 +11017,4650,2013-11-07 13:30:56 -0800,2489,7588 +11018,7790,2013-11-12 01:01:03 -0800,2489,7588 +11019,9557,2013-11-07 18:33:41 -0800,2489,7588 +11020,8557,2013-11-11 03:52:09 -0800,2489,7588 +11021,2523,2013-11-08 17:23:08 -0800,2489,7588 +11022,3168,2013-11-12 17:21:14 -0800,2489,7588 +11023,1964,2013-11-08 03:17:38 -0800,2489,7588 +11024,4675,2013-11-12 12:39:14 -0800,2489,7588 +11025,6650,2013-11-06 09:12:25 -0800,2491,7590 +11026,7515,2013-11-11 18:44:00 -0800,2491,7590 +11027,7915,2013-11-08 08:26:40 -0800,2491,7590 +11028,2156,2013-11-06 15:17:03 -0800,2492,7594 +11029,8530,2013-11-10 22:31:11 -0800,2493,7597 +11030,1410,2013-11-07 13:06:54 -0800,2494,7598 +11031,2348,2013-11-08 13:53:46 -0800,2494,7602 +11032,8430,2013-11-09 15:45:58 -0800,2494,7599 +11033,9230,2013-11-06 13:53:52 -0800,2494,7598 +11034,8023,2013-11-09 23:29:52 -0800,2494,7601 +11035,4011,2013-11-09 15:48:20 -0800,2495,7603 +11036,3514,2013-11-11 07:38:45 -0800,2496,7606 +11037,1340,2013-11-08 15:04:09 -0800,2496,7606 +11038,8712,2013-11-11 10:11:49 -0800,2496,7605 +11039,5210,2013-11-13 07:34:30 -0800,2496,7606 +11040,9773,2013-11-11 14:15:35 -0800,2496,7606 +11041,555,2013-11-06 20:16:10 -0800,2496,7605 +11042,6111,2013-11-10 12:56:11 -0800,2496,7605 +11043,330,2013-11-08 19:48:08 -0800,2496,7605 +11044,8739,2013-11-08 22:42:00 -0800,2498,7613 +11045,2770,2013-11-10 13:59:51 -0800,2498,7612 +11046,2727,2013-11-11 06:50:54 -0800,2498,7611 +11047,1081,2013-11-08 03:52:29 -0800,2498,7612 +11048,1882,2013-11-08 00:05:07 -0800,2499,7614 +11049,8042,2013-11-07 20:00:20 -0800,2499,7614 +11050,6800,2013-11-08 19:40:14 -0800,2501,7620 +11051,823,2013-11-11 17:43:22 -0800,2502,7623 +11052,8275,2013-11-07 05:32:26 -0800,2503,7626 +11053,8376,2013-11-10 17:44:49 -0800,2503,7626 +11054,9228,2013-11-12 15:00:09 -0800,2503,7625 +11055,4242,2013-11-12 17:29:33 -0800,2503,7625 +11056,5142,2013-11-09 04:55:49 -0800,2503,7625 +11057,5049,2013-11-13 07:37:06 -0800,2504,7627 +11058,4924,2013-11-11 11:01:46 -0800,2505,7629 +11059,147,2013-11-08 11:51:54 -0800,2505,7629 +11060,1066,2013-11-12 06:00:07 -0800,2505,7629 +11061,9739,2013-11-10 01:35:26 -0800,2505,7629 +11062,6348,2013-11-10 05:07:35 -0800,2505,7630 +11063,5491,2013-11-11 13:29:04 -0800,2506,7631 +11064,9794,2013-11-11 00:09:45 -0800,2506,7632 +11065,3990,2013-11-08 10:53:43 -0800,2506,7632 +11066,1545,2013-11-08 08:46:05 -0800,2506,7632 +11067,3925,2013-11-11 23:03:48 -0800,2506,7631 +11068,1121,2013-11-12 21:16:28 -0800,2506,7632 +11069,155,2013-11-11 15:11:30 -0800,2506,7632 +11070,2169,2013-11-09 20:39:00 -0800,2506,7631 +11071,671,2013-11-07 14:01:38 -0800,2508,7642 +11072,4428,2013-11-13 00:02:20 -0800,2508,7640 +11073,8480,2013-11-11 10:08:04 -0800,2508,7642 +11074,5957,2013-11-09 08:20:55 -0800,2508,7640 +11075,2472,2013-11-08 19:48:31 -0800,2508,7641 +11076,1263,2013-11-13 01:33:31 -0800,2509,7643 +11077,1955,2013-11-07 15:06:36 -0800,2509,7643 +11078,6070,2013-11-09 21:57:04 -0800,2509,7644 +11079,9285,2013-11-06 17:55:50 -0800,2509,7643 +11080,3375,2013-11-11 05:45:20 -0800,2509,7643 +11081,538,2013-11-09 19:44:22 -0800,2510,7645 +11082,9759,2013-11-06 22:20:21 -0800,2510,7647 +11083,6225,2013-11-12 11:28:17 -0800,2511,7649 +11084,3710,2013-11-06 19:17:44 -0800,2511,7648 +11085,2289,2013-11-12 03:56:28 -0800,2511,7651 +11086,8189,2013-11-10 11:04:00 -0800,2511,7650 +11087,1011,2013-11-06 15:54:35 -0800,2511,7648 +11088,9338,2013-11-06 11:08:06 -0800,2511,7651 +11089,5342,2013-11-07 01:45:53 -0800,2511,7650 +11090,3927,2013-11-10 05:53:16 -0800,2511,7649 +11091,1764,2013-11-11 06:26:04 -0800,2511,7648 +11092,6480,2013-11-10 22:34:40 -0800,2512,7653 +11093,5814,2013-11-11 16:22:48 -0800,2512,7652 +11094,7148,2013-11-10 20:24:55 -0800,2512,7653 +11095,5647,2013-11-12 01:37:44 -0800,2512,7653 +11096,6040,2013-11-11 07:09:43 -0800,2512,7653 +11097,3232,2013-11-09 07:14:00 -0800,2512,7653 +11098,5588,2013-11-07 09:28:39 -0800,2512,7652 +11099,1228,2013-11-09 11:55:11 -0800,2513,7655 +11100,2044,2013-11-07 13:23:19 -0800,2513,7656 +11101,7700,2013-11-12 10:27:27 -0800,2513,7656 +11102,6038,2013-11-13 01:52:56 -0800,2513,7656 +11103,6196,2013-11-11 05:50:44 -0800,2514,7657 +11104,9170,2013-11-13 03:42:39 -0800,2514,7658 +11105,2520,2013-11-09 22:17:37 -0800,2514,7658 +11106,525,2013-11-08 11:03:53 -0800,2514,7657 +11107,1712,2013-11-12 13:17:43 -0800,2515,7659 +11108,4889,2013-11-10 02:19:35 -0800,2515,7660 +11109,3979,2013-11-10 09:07:58 -0800,2515,7659 +11110,2616,2013-11-08 06:26:18 -0800,2515,7659 +11111,5531,2013-11-10 08:18:02 -0800,2515,7659 +11112,3027,2013-11-09 13:00:32 -0800,2515,7659 +11113,6144,2013-11-12 12:48:32 -0800,2515,7660 +11114,1555,2013-11-09 14:42:34 -0800,2516,7662 +11115,1938,2013-11-11 21:06:11 -0800,2516,7663 +11116,229,2013-11-09 18:23:26 -0800,2516,7664 +11117,4481,2013-11-11 20:34:26 -0800,2516,7663 +11118,2271,2013-11-11 12:19:59 -0800,2516,7663 +11119,4443,2013-11-13 07:31:37 -0800,2519,7670 +11120,5885,2013-11-06 21:25:52 -0800,2519,7672 +11121,2442,2013-11-12 09:01:49 -0800,2520,7677 +11122,2861,2013-11-06 18:39:44 -0800,2520,7676 +11123,6534,2013-11-11 16:25:48 -0800,2520,7678 +11124,4251,2013-11-09 21:08:36 -0800,2520,7677 +11125,8879,2013-11-07 04:59:43 -0800,2520,7675 +11126,9042,2013-11-09 19:03:01 -0800,2520,7674 +11127,1687,2013-11-12 16:19:30 -0800,2520,7675 +11128,7679,2013-11-11 14:24:46 -0800,2521,7680 +11129,5066,2013-11-11 11:29:46 -0800,2521,7680 +11130,9794,2013-11-07 06:40:44 -0800,2521,7679 +11131,2665,2013-11-09 22:09:12 -0800,2521,7679 +11132,9480,2013-11-12 06:23:48 -0800,2521,7679 +11133,7790,2013-11-08 17:44:19 -0800,2521,7679 +11134,9237,2013-11-09 05:18:51 -0800,2521,7681 +11135,5860,2013-11-09 00:42:42 -0800,2521,7681 +11136,9185,2013-11-09 16:34:09 -0800,2522,7683 +11137,6067,2013-11-09 07:29:11 -0800,2522,7682 +11138,1838,2013-11-11 13:11:40 -0800,2523,7686 +11139,631,2013-11-11 13:35:39 -0800,2523,7686 +11140,6967,2013-11-07 03:46:22 -0800,2523,7685 +11141,7330,2013-11-09 00:14:28 -0800,2523,7687 +11142,1976,2013-11-07 07:18:50 -0800,2523,7686 +11143,6970,2013-11-11 07:41:09 -0800,2523,7687 +11144,4455,2013-11-06 22:39:09 -0800,2523,7685 +11145,8495,2013-11-13 04:38:37 -0800,2524,7688 +11146,6859,2013-11-06 16:03:24 -0800,2524,7691 +11147,7331,2013-11-07 02:27:47 -0800,2524,7692 +11148,9248,2013-11-07 12:46:57 -0800,2524,7689 +11149,5049,2013-11-08 13:32:05 -0800,2524,7690 +11150,3496,2013-11-12 16:21:38 -0800,2524,7690 +11151,3447,2013-11-07 01:16:58 -0800,2524,7688 +11152,4382,2013-11-09 11:17:58 -0800,2524,7689 +11153,5690,2013-11-11 09:47:39 -0800,2525,7694 +11154,6197,2013-11-11 11:38:41 -0800,2525,7694 +11155,6661,2013-11-06 14:10:43 -0800,2526,7696 +11156,3468,2013-11-06 16:40:19 -0800,2526,7696 +11157,1932,2013-11-09 06:36:52 -0800,2526,7697 +11158,473,2013-11-10 13:40:34 -0800,2526,7697 +11159,2576,2013-11-10 05:09:56 -0800,2526,7696 +11160,6298,2013-11-07 02:08:18 -0800,2526,7696 +11161,548,2013-11-10 05:01:06 -0800,2527,7702 +11162,1761,2013-11-10 14:08:46 -0800,2527,7703 +11163,8197,2013-11-07 19:34:45 -0800,2527,7701 +11164,5568,2013-11-09 20:27:24 -0800,2527,7703 +11165,1222,2013-11-10 05:05:08 -0800,2527,7702 +11166,5381,2013-11-09 19:04:37 -0800,2527,7702 +11167,7398,2013-11-11 14:38:16 -0800,2527,7699 +11168,2030,2013-11-08 10:09:26 -0800,2527,7703 +11169,9496,2013-11-09 23:55:08 -0800,2528,7704 +11170,5118,2013-11-11 07:30:49 -0800,2528,7705 +11171,9080,2013-11-07 23:58:41 -0800,2529,7706 +11172,4032,2013-11-07 01:31:57 -0800,2529,7708 +11173,5261,2013-11-08 02:22:34 -0800,2530,7712 +11174,6681,2013-11-11 20:49:16 -0800,2530,7712 +11175,3488,2013-11-10 11:46:53 -0800,2530,7711 +11176,9122,2013-11-06 15:27:27 -0800,2530,7709 +11177,62,2013-11-06 11:13:44 -0800,2530,7711 +11178,8244,2013-11-09 11:09:55 -0800,2530,7711 +11179,6377,2013-11-11 14:17:09 -0800,2530,7709 +11180,4146,2013-11-08 00:32:18 -0800,2530,7709 +11181,7177,2013-11-13 07:08:59 -0800,2531,7714 +11182,4837,2013-11-06 09:21:29 -0800,2531,7714 +11183,5496,2013-11-09 20:20:14 -0800,2531,7715 +11184,7154,2013-11-07 16:36:46 -0800,2531,7714 +11185,2710,2013-11-09 13:14:31 -0800,2531,7715 +11186,6263,2013-11-09 03:04:18 -0800,2531,7714 +11187,6468,2013-11-08 08:13:16 -0800,2531,7714 +11188,9498,2013-11-10 03:29:09 -0800,2533,7720 +11189,852,2013-11-11 05:31:37 -0800,2533,7721 +11190,1070,2013-11-10 01:49:43 -0800,2533,7722 +11191,997,2013-11-07 05:16:51 -0800,2533,7720 +11192,3575,2013-11-07 02:47:06 -0800,2534,7724 +11193,2751,2013-11-12 06:51:38 -0800,2534,7724 +11194,3589,2013-11-08 21:11:28 -0800,2534,7724 +11195,7070,2013-11-07 02:00:24 -0800,2535,7726 +11196,6273,2013-11-07 22:17:21 -0800,2535,7727 +11197,1220,2013-11-09 01:29:02 -0800,2536,7729 +11198,7095,2013-11-10 22:40:35 -0800,2536,7729 +11199,4483,2013-11-12 01:54:09 -0800,2536,7729 +11200,9321,2013-11-09 11:24:37 -0800,2536,7729 +11201,7258,2013-11-13 07:35:23 -0800,2536,7729 +11202,655,2013-11-12 10:40:51 -0800,2536,7729 +11203,4195,2013-11-08 21:13:58 -0800,2536,7729 +11204,8712,2013-11-12 05:39:01 -0800,2536,7729 +11205,7314,2013-11-08 09:31:18 -0800,2538,7733 +11206,6256,2013-11-10 19:34:09 -0800,2538,7733 +11207,2744,2013-11-10 08:31:49 -0800,2538,7732 +11208,6667,2013-11-09 14:13:56 -0800,2538,7732 +11209,2915,2013-11-07 03:36:54 -0800,2538,7732 +11210,1129,2013-11-12 17:44:43 -0800,2538,7732 +11211,8957,2013-11-07 01:58:11 -0800,2538,7732 +11212,4124,2013-11-12 10:11:27 -0800,2538,7732 +11213,8367,2013-11-09 10:53:21 -0800,2538,7732 +11214,5767,2013-11-11 14:25:58 -0800,2539,7735 +11215,6823,2013-11-09 09:19:31 -0800,2539,7736 +11216,6515,2013-11-10 03:32:08 -0800,2539,7736 +11217,321,2013-11-07 23:07:58 -0800,2539,7735 +11218,745,2013-11-09 08:14:17 -0800,2539,7734 +11219,4192,2013-11-11 09:47:43 -0800,2540,7738 +11220,1648,2013-11-10 09:49:58 -0800,2540,7738 +11221,5148,2013-11-10 10:28:41 -0800,2540,7737 +11222,9515,2013-11-12 21:52:43 -0800,2540,7737 +11223,6584,2013-11-08 16:29:40 -0800,2540,7738 +11224,3075,2013-11-08 02:36:37 -0800,2540,7737 +11225,8084,2013-11-12 18:39:38 -0800,2540,7738 +11226,9266,2013-11-12 01:08:24 -0800,2541,7740 +11227,6422,2013-11-09 04:08:34 -0800,2541,7739 +11228,3010,2013-11-10 16:24:21 -0800,2541,7739 +11229,1789,2013-11-10 23:24:24 -0800,2541,7740 +11230,5510,2013-11-09 15:53:28 -0800,2541,7741 +11231,9172,2013-11-07 23:47:48 -0800,2541,7740 +11232,30,2013-11-08 07:32:34 -0800,2542,7744 +11233,7273,2013-11-07 00:57:31 -0800,2542,7743 +11234,5725,2013-11-08 23:38:41 -0800,2542,7746 +11235,8162,2013-11-11 16:48:24 -0800,2542,7745 +11236,9822,2013-11-08 14:22:21 -0800,2542,7743 +11237,1196,2013-11-11 20:23:52 -0800,2542,7743 +11238,4313,2013-11-12 23:05:23 -0800,2542,7746 +11239,4270,2013-11-10 02:39:37 -0800,2543,7747 +11240,1720,2013-11-09 11:40:13 -0800,2543,7749 +11241,8031,2013-11-08 23:51:40 -0800,2543,7748 +11242,1994,2013-11-10 08:58:21 -0800,2543,7751 +11243,1469,2013-11-12 23:06:42 -0800,2544,7752 +11244,8677,2013-11-07 17:02:12 -0800,2544,7755 +11245,8291,2013-11-10 11:49:48 -0800,2544,7755 +11246,3052,2013-11-06 22:03:31 -0800,2544,7752 +11247,9213,2013-11-13 02:13:39 -0800,2544,7753 +11248,4663,2013-11-11 02:41:11 -0800,2544,7754 +11249,811,2013-11-11 17:21:16 -0800,2544,7752 +11250,9068,2013-11-09 01:21:12 -0800,2544,7754 +11251,2081,2013-11-12 17:12:45 -0800,2544,7754 +11252,7383,2013-11-11 23:46:05 -0800,2545,7759 +11253,6473,2013-11-08 18:27:58 -0800,2545,7757 +11254,1945,2013-11-10 23:40:41 -0800,2545,7758 +11255,894,2013-11-08 01:24:10 -0800,2545,7756 +11256,2228,2013-11-08 17:02:05 -0800,2545,7759 +11257,4129,2013-11-07 12:57:36 -0800,2545,7758 +11258,1494,2013-11-07 22:40:21 -0800,2545,7758 +11259,8247,2013-11-07 18:09:50 -0800,2546,7760 +11260,2629,2013-11-10 18:33:19 -0800,2546,7760 +11261,17,2013-11-11 02:59:48 -0800,2546,7760 +11262,1932,2013-11-11 21:45:06 -0800,2546,7760 +11263,8780,2013-11-07 02:29:56 -0800,2546,7760 +11264,3425,2013-11-13 00:34:39 -0800,2546,7760 +11265,5115,2013-11-10 08:23:23 -0800,2547,7763 +11266,7141,2013-11-06 19:58:29 -0800,2547,7762 +11267,2250,2013-11-11 01:32:51 -0800,2547,7761 +11268,4136,2013-11-08 21:16:13 -0800,2547,7765 +11269,6351,2013-11-11 23:08:46 -0800,2548,7767 +11270,7964,2013-11-09 08:29:06 -0800,2548,7766 +11271,5026,2013-11-13 03:28:15 -0800,2548,7766 +11272,6425,2013-11-06 17:36:00 -0800,2548,7766 +11273,3600,2013-11-11 15:17:57 -0800,2548,7766 +11274,4323,2013-11-08 18:08:52 -0800,2548,7767 +11275,4638,2013-11-09 22:23:54 -0800,2548,7767 +11276,1272,2013-11-08 17:35:07 -0800,2548,7766 +11277,1844,2013-11-10 02:40:13 -0800,2548,7767 +11278,5130,2013-11-08 23:58:34 -0800,2549,7768 +11279,2310,2013-11-10 11:32:52 -0800,2549,7768 +11280,6887,2013-11-11 21:25:17 -0800,2549,7768 +11281,480,2013-11-11 04:47:49 -0800,2549,7768 +11282,8080,2013-11-08 11:08:20 -0800,2549,7768 +11283,9041,2013-11-08 09:38:44 -0800,2549,7768 +11284,9890,2013-11-10 13:43:49 -0800,2550,7771 +11285,5430,2013-11-10 13:23:10 -0800,2550,7769 +11286,3115,2013-11-09 09:37:32 -0800,2550,7771 +11287,6333,2013-11-09 04:23:10 -0800,2551,7773 +11288,7716,2013-11-13 03:27:48 -0800,2551,7773 +11289,5593,2013-11-13 06:19:22 -0800,2551,7774 +11290,5941,2013-11-10 18:35:28 -0800,2551,7774 +11291,1661,2013-11-12 16:21:09 -0800,2551,7776 +11292,526,2013-11-08 00:23:11 -0800,2551,7774 +11293,6555,2013-11-10 12:33:54 -0800,2552,7780 +11294,8340,2013-11-09 06:24:20 -0800,2552,7780 +11295,2486,2013-11-07 16:51:39 -0800,2552,7778 +11296,3677,2013-11-12 19:51:08 -0800,2552,7778 +11297,749,2013-11-07 23:53:46 -0800,2552,7777 +11298,1841,2013-11-10 05:43:50 -0800,2552,7778 +11299,5589,2013-11-12 19:23:23 -0800,2552,7778 +11300,533,2013-11-12 11:03:15 -0800,2552,7778 +11301,3060,2013-11-12 15:25:45 -0800,2552,7777 +11302,8268,2013-11-12 17:09:18 -0800,2553,7782 +11303,9845,2013-11-11 05:43:39 -0800,2553,7782 +11304,9361,2013-11-12 16:58:21 -0800,2553,7782 +11305,5220,2013-11-11 00:49:12 -0800,2554,7787 +11306,5210,2013-11-07 20:21:22 -0800,2554,7788 +11307,3356,2013-11-09 14:26:10 -0800,2554,7786 +11308,9333,2013-11-07 19:45:33 -0800,2554,7790 +11309,8279,2013-11-09 17:32:01 -0800,2554,7790 +11310,2160,2013-11-07 13:11:47 -0800,2554,7786 +11311,4314,2013-11-09 02:34:50 -0800,2554,7787 +11312,3486,2013-11-09 17:11:41 -0800,2554,7790 +11313,1457,2013-11-10 15:33:28 -0800,2554,7790 +11314,3361,2013-11-07 18:30:25 -0800,2555,7791 +11315,9657,2013-11-08 11:28:44 -0800,2555,7791 +11316,983,2013-11-12 02:40:44 -0800,2555,7791 +11317,1922,2013-11-08 09:42:15 -0800,2555,7791 +11318,4238,2013-11-10 04:42:41 -0800,2555,7791 +11319,1011,2013-11-06 19:05:44 -0800,2555,7791 +11320,9658,2013-11-10 07:19:46 -0800,2555,7791 +11321,7311,2013-11-13 00:40:07 -0800,2555,7791 +11322,2668,2013-11-11 14:47:03 -0800,2555,7791 +11323,3957,2013-11-10 05:59:49 -0800,2556,7792 +11324,3800,2013-11-09 16:23:01 -0800,2556,7792 +11325,4797,2013-11-06 14:30:00 -0800,2556,7792 +11326,7684,2013-11-08 10:31:57 -0800,2556,7792 +11327,8935,2013-11-07 08:33:51 -0800,2556,7792 +11328,713,2013-11-11 04:27:21 -0800,2556,7792 +11329,9243,2013-11-13 07:42:39 -0800,2557,7794 +11330,3229,2013-11-10 06:55:52 -0800,2557,7794 +11331,6823,2013-11-10 19:10:43 -0800,2557,7793 +11332,4579,2013-11-08 19:46:23 -0800,2557,7793 +11333,6062,2013-11-10 18:28:32 -0800,2557,7796 +11334,6650,2013-11-10 07:54:36 -0800,2557,7795 +11335,2470,2013-11-13 00:13:20 -0800,2557,7794 +11336,9061,2013-11-11 18:42:52 -0800,2557,7794 +11337,6158,2013-11-07 22:06:25 -0800,2557,7795 +11338,7092,2013-11-10 03:32:26 -0800,2558,7797 +11339,7991,2013-11-10 00:57:29 -0800,2558,7797 +11340,2094,2013-11-07 22:17:46 -0800,2559,7802 +11341,112,2013-11-08 21:58:31 -0800,2559,7801 +11342,2774,2013-11-07 13:08:25 -0800,2559,7801 +11343,2220,2013-11-11 08:51:12 -0800,2559,7799 +11344,1478,2013-11-06 08:41:08 -0800,2559,7800 +11345,2227,2013-11-10 05:58:16 -0800,2559,7799 +11346,2020,2013-11-08 17:19:21 -0800,2559,7800 +11347,614,2013-11-07 08:44:46 -0800,2559,7801 +11348,2070,2013-11-11 08:07:41 -0800,2559,7801 +11349,7058,2013-11-11 09:31:36 -0800,2560,7803 +11350,9067,2013-11-07 17:43:59 -0800,2560,7803 +11351,5549,2013-11-07 06:55:11 -0800,2561,7805 +11352,9189,2013-11-09 17:37:20 -0800,2561,7804 +11353,2648,2013-11-11 17:18:18 -0800,2561,7806 +11354,7423,2013-11-08 05:05:12 -0800,2561,7806 +11355,918,2013-11-10 22:01:50 -0800,2561,7805 +11356,8424,2013-11-08 17:58:31 -0800,2561,7805 +11357,5662,2013-11-07 15:45:03 -0800,2561,7804 +11358,5084,2013-11-10 02:21:28 -0800,2561,7806 +11359,8861,2013-11-10 21:06:54 -0800,2561,7805 +11360,2350,2013-11-09 00:03:30 -0800,2562,7807 +11361,1739,2013-11-10 02:04:24 -0800,2562,7807 +11362,5888,2013-11-09 14:35:07 -0800,2562,7807 +11363,8811,2013-11-10 10:23:08 -0800,2562,7807 +11364,1967,2013-11-08 15:45:50 -0800,2562,7807 +11365,9055,2013-11-07 11:34:26 -0800,2562,7807 +11366,2491,2013-11-08 16:30:07 -0800,2562,7807 +11367,8451,2013-11-11 00:06:06 -0800,2562,7807 +11368,4169,2013-11-12 04:14:50 -0800,2562,7807 +11369,2032,2013-11-07 19:33:15 -0800,2563,7809 +11370,4615,2013-11-12 02:49:46 -0800,2563,7811 +11371,2475,2013-11-07 05:15:56 -0800,2563,7808 +11372,6071,2013-11-11 17:44:49 -0800,2563,7808 +11373,6477,2013-11-12 03:56:46 -0800,2563,7811 +11374,9779,2013-11-07 19:21:28 -0800,2563,7811 +11375,7955,2013-11-11 04:31:24 -0800,2563,7809 +11376,4050,2013-11-11 20:06:36 -0800,2564,7814 +11377,5234,2013-11-08 11:26:36 -0800,2564,7814 +11378,5090,2013-11-07 18:39:06 -0800,2564,7813 +11379,2375,2013-11-09 15:30:16 -0800,2564,7812 +11380,64,2013-11-07 23:39:09 -0800,2564,7813 +11381,7327,2013-11-10 21:23:07 -0800,2566,7818 +11382,6639,2013-11-09 03:10:37 -0800,2566,7818 +11383,4250,2013-11-09 13:59:04 -0800,2566,7818 +11384,2800,2013-11-09 13:05:16 -0800,2566,7819 +11385,670,2013-11-11 06:46:44 -0800,2566,7821 +11386,8683,2013-11-10 15:12:12 -0800,2568,7828 +11387,509,2013-11-12 14:32:42 -0800,2568,7827 +11388,661,2013-11-10 03:18:26 -0800,2568,7828 +11389,8880,2013-11-07 02:32:12 -0800,2568,7827 +11390,6756,2013-11-10 22:31:25 -0800,2568,7827 +11391,7195,2013-11-11 10:39:03 -0800,2568,7827 +11392,7788,2013-11-10 16:01:46 -0800,2569,7829 +11393,8298,2013-11-10 04:01:34 -0800,2569,7829 +11394,3799,2013-11-13 05:03:52 -0800,2569,7831 +11395,1636,2013-11-10 01:48:02 -0800,2569,7829 +11396,9152,2013-11-11 19:59:47 -0800,2569,7829 +11397,1340,2013-11-09 14:41:36 -0800,2570,7833 +11398,2620,2013-11-07 14:20:40 -0800,2570,7835 +11399,2676,2013-11-10 12:15:50 -0800,2570,7832 +11400,268,2013-11-10 13:32:02 -0800,2570,7832 +11401,9854,2013-11-11 05:33:45 -0800,2571,7836 +11402,8847,2013-11-10 06:27:38 -0800,2571,7836 +11403,6934,2013-11-06 18:01:07 -0800,2571,7836 +11404,2647,2013-11-09 12:38:08 -0800,2572,7839 +11405,4938,2013-11-10 20:01:49 -0800,2572,7840 +11406,3110,2013-11-11 16:03:30 -0800,2572,7838 +11407,2976,2013-11-09 12:44:43 -0800,2572,7837 +11408,3415,2013-11-08 14:26:18 -0800,2572,7838 +11409,700,2013-11-12 00:27:57 -0800,2572,7839 +11410,710,2013-11-11 03:16:28 -0800,2573,7842 +11411,4726,2013-11-09 20:52:54 -0800,2574,7845 +11412,3084,2013-11-07 17:54:41 -0800,2574,7847 +11413,6445,2013-11-07 02:44:58 -0800,2575,7848 +11414,7556,2013-11-12 19:25:36 -0800,2575,7848 +11415,6736,2013-11-09 09:48:52 -0800,2575,7848 +11416,6190,2013-11-06 20:26:26 -0800,2575,7848 +11417,8871,2013-11-08 14:15:49 -0800,2575,7848 +11418,3560,2013-11-11 13:39:37 -0800,2575,7848 +11419,4865,2013-11-09 02:55:46 -0800,2575,7848 +11420,7397,2013-11-10 12:55:34 -0800,2575,7848 +11421,7638,2013-11-08 10:39:16 -0800,2575,7848 +11422,1920,2013-11-08 08:14:10 -0800,2576,7851 +11423,5561,2013-11-08 12:35:48 -0800,2576,7851 +11424,8428,2013-11-06 22:08:48 -0800,2576,7851 +11425,6716,2013-11-06 10:09:43 -0800,2576,7850 +11426,6343,2013-11-11 14:56:47 -0800,2576,7849 +11427,3149,2013-11-07 00:45:11 -0800,2576,7850 +11428,5046,2013-11-08 11:36:43 -0800,2577,7853 +11429,4221,2013-11-06 18:38:35 -0800,2577,7852 +11430,2080,2013-11-07 08:57:26 -0800,2578,7859 +11431,8354,2013-11-12 21:58:45 -0800,2578,7857 +11432,2225,2013-11-09 04:56:03 -0800,2578,7855 +11433,1696,2013-11-10 02:46:27 -0800,2578,7855 +11434,2393,2013-11-10 09:42:00 -0800,2579,7862 +11435,9186,2013-11-11 11:20:44 -0800,2579,7863 +11436,498,2013-11-12 20:59:28 -0800,2579,7863 +11437,293,2013-11-09 12:32:36 -0800,2579,7860 +11438,5367,2013-11-12 17:34:56 -0800,2579,7862 +11439,1225,2013-11-12 17:24:19 -0800,2579,7862 +11440,3163,2013-11-10 17:35:07 -0800,2579,7862 +11441,4744,2013-11-11 08:24:21 -0800,2579,7861 +11442,4389,2013-11-08 16:52:39 -0800,2580,7864 +11443,8581,2013-11-08 14:22:53 -0800,2580,7864 +11444,8233,2013-11-06 16:11:13 -0800,2580,7864 +11445,3531,2013-11-07 09:36:32 -0800,2580,7864 +11446,6978,2013-11-13 02:19:55 -0800,2580,7864 +11447,5873,2013-11-06 18:54:23 -0800,2580,7864 +11448,190,2013-11-06 09:32:33 -0800,2581,7867 +11449,4547,2013-11-08 17:53:39 -0800,2581,7867 +11450,7947,2013-11-08 19:58:20 -0800,2581,7867 +11451,7990,2013-11-11 11:46:47 -0800,2581,7866 +11452,789,2013-11-11 21:10:21 -0800,2581,7869 +11453,3869,2013-11-10 00:07:32 -0800,2582,7870 +11454,1226,2013-11-08 09:14:30 -0800,2582,7870 +11455,6840,2013-11-07 23:37:13 -0800,2582,7871 +11456,3038,2013-11-09 04:10:45 -0800,2582,7871 +11457,9332,2013-11-12 05:44:01 -0800,2582,7871 +11458,6020,2013-11-09 14:19:03 -0800,2583,7872 +11459,7718,2013-11-07 08:53:43 -0800,2583,7873 +11460,2684,2013-11-10 04:16:11 -0800,2583,7872 +11461,7554,2013-11-08 22:27:03 -0800,2583,7873 +11462,5789,2013-11-09 02:18:51 -0800,2583,7873 +11463,8857,2013-11-07 08:03:04 -0800,2583,7873 +11464,4376,2013-11-12 22:05:09 -0800,2583,7873 +11465,777,2013-11-10 23:28:11 -0800,2583,7873 +11466,7840,2013-11-06 15:05:43 -0800,2583,7872 +11467,5422,2013-11-09 08:36:36 -0800,2584,7874 +11468,4138,2013-11-08 01:23:03 -0800,2584,7877 +11469,2146,2013-11-08 00:32:30 -0800,2584,7874 +11470,3661,2013-11-06 19:34:25 -0800,2584,7876 +11471,5030,2013-11-12 04:36:39 -0800,2584,7876 +11472,8183,2013-11-07 07:20:30 -0800,2584,7874 +11473,1241,2013-11-09 23:48:15 -0800,2585,7878 +11474,273,2013-11-09 03:45:51 -0800,2585,7879 +11475,5784,2013-11-12 21:59:52 -0800,2585,7879 +11476,1937,2013-11-10 14:54:49 -0800,2585,7879 +11477,3611,2013-11-09 04:20:49 -0800,2585,7880 +11478,5536,2013-11-13 07:57:58 -0800,2585,7880 +11479,3534,2013-11-13 07:43:02 -0800,2585,7879 +11480,6372,2013-11-08 15:00:55 -0800,2586,7882 +11481,7192,2013-11-13 00:05:41 -0800,2587,7887 +11482,8217,2013-11-06 19:46:44 -0800,2587,7886 +11483,2678,2013-11-07 22:15:19 -0800,2587,7887 +11484,7948,2013-11-10 21:14:01 -0800,2587,7888 +11485,7651,2013-11-11 23:18:54 -0800,2587,7886 +11486,7028,2013-11-08 13:26:16 -0800,2587,7888 +11487,1786,2013-11-13 06:22:15 -0800,2587,7886 +11488,2227,2013-11-11 13:30:18 -0800,2587,7887 +11489,1299,2013-11-08 22:39:40 -0800,2587,7888 +11490,8788,2013-11-11 11:06:33 -0800,2588,7889 +11491,5217,2013-11-06 18:09:07 -0800,2588,7891 +11492,8683,2013-11-07 21:49:30 -0800,2588,7891 +11493,9352,2013-11-07 13:26:35 -0800,2588,7890 +11494,7066,2013-11-06 14:57:14 -0800,2588,7891 +11495,8276,2013-11-07 22:58:08 -0800,2590,7895 +11496,5979,2013-11-08 14:16:17 -0800,2590,7895 +11497,3421,2013-11-07 06:34:29 -0800,2590,7895 +11498,2472,2013-11-09 22:01:19 -0800,2590,7896 +11499,8298,2013-11-08 00:51:37 -0800,2590,7895 +11500,9784,2013-11-09 06:13:34 -0800,2590,7895 +11501,7873,2013-11-13 00:36:41 -0800,2590,7895 +11502,8744,2013-11-07 16:44:07 -0800,2590,7895 +11503,6890,2013-11-12 11:52:40 -0800,2590,7896 +11504,1273,2013-11-06 09:53:14 -0800,2591,7898 +11505,5948,2013-11-08 04:34:01 -0800,2591,7901 +11506,4953,2013-11-10 08:54:19 -0800,2591,7901 +11507,4190,2013-11-11 21:22:25 -0800,2591,7897 +11508,9135,2013-11-12 21:25:55 -0800,2592,7902 +11509,5714,2013-11-13 08:01:57 -0800,2592,7902 +11510,369,2013-11-11 11:54:32 -0800,2592,7902 +11511,9164,2013-11-13 04:42:19 -0800,2592,7902 +11512,3185,2013-11-08 11:44:07 -0800,2592,7902 +11513,4776,2013-11-08 17:47:52 -0800,2592,7902 +11514,811,2013-11-12 08:51:30 -0800,2592,7902 +11515,9470,2013-11-12 02:49:15 -0800,2592,7902 +11516,7948,2013-11-12 15:31:08 -0800,2592,7902 +11517,6368,2013-11-08 23:35:33 -0800,2593,7903 +11518,6296,2013-11-10 22:55:49 -0800,2593,7906 +11519,6297,2013-11-12 18:09:14 -0800,2593,7906 +11520,4581,2013-11-10 06:08:20 -0800,2593,7904 +11521,1796,2013-11-12 08:52:00 -0800,2594,7909 +11522,7816,2013-11-12 23:32:12 -0800,2594,7909 +11523,6980,2013-11-13 05:54:45 -0800,2594,7909 +11524,2544,2013-11-13 07:44:24 -0800,2594,7908 +11525,9163,2013-11-12 06:08:01 -0800,2594,7908 +11526,788,2013-11-13 03:32:19 -0800,2594,7908 +11527,6222,2013-11-08 19:34:46 -0800,2594,7907 +11528,9766,2013-11-11 16:03:17 -0800,2594,7908 +11529,3059,2013-11-07 10:38:31 -0800,2595,7911 +11530,5558,2013-11-09 12:33:33 -0800,2595,7911 +11531,1889,2013-11-11 23:38:13 -0800,2596,7916 +11532,4740,2013-11-07 11:30:36 -0800,2596,7914 +11533,4568,2013-11-10 10:44:38 -0800,2596,7913 +11534,4146,2013-11-07 19:38:40 -0800,2596,7912 +11535,5397,2013-11-12 22:37:25 -0800,2596,7913 +11536,5819,2013-11-12 18:32:10 -0800,2597,7917 +11537,1638,2013-11-06 15:05:33 -0800,2597,7917 +11538,7877,2013-11-10 07:34:57 -0800,2597,7917 +11539,7990,2013-11-06 14:50:47 -0800,2597,7918 +11540,1067,2013-11-06 11:28:04 -0800,2597,7917 +11541,8648,2013-11-07 16:59:35 -0800,2597,7917 +11542,1160,2013-11-07 06:54:09 -0800,2598,7921 +11543,6664,2013-11-09 16:35:20 -0800,2598,7921 +11544,1224,2013-11-08 18:38:59 -0800,2598,7921 +11545,5881,2013-11-11 06:45:36 -0800,2598,7921 +11546,7279,2013-11-10 02:05:12 -0800,2599,7922 +11547,8421,2013-11-07 10:20:08 -0800,2599,7922 +11548,9833,2013-11-08 14:49:52 -0800,2599,7922 +11549,4766,2013-11-07 19:25:39 -0800,2599,7922 +11550,651,2013-11-11 13:53:07 -0800,2599,7924 +11551,2461,2013-11-06 19:57:48 -0800,2599,7923 +11552,650,2013-11-08 19:54:58 -0800,2599,7924 +11553,3700,2013-11-09 00:21:22 -0800,2600,7926 +11554,266,2013-11-08 17:25:11 -0800,2600,7927 +11555,499,2013-11-09 10:12:44 -0800,2600,7926 +11556,5082,2013-11-07 17:50:50 -0800,2600,7927 +11557,8221,2013-11-06 11:16:45 -0800,2600,7927 +11558,4766,2013-11-09 00:06:58 -0800,2600,7927 +11559,5431,2013-11-08 16:11:25 -0800,2600,7926 +11560,3582,2013-11-10 15:59:58 -0800,2600,7926 +11561,1033,2013-11-08 22:45:49 -0800,2601,7928 +11562,8452,2013-11-07 11:16:55 -0800,2601,7928 +11563,8462,2013-11-12 14:47:59 -0800,2601,7928 +11564,5754,2013-11-08 06:47:22 -0800,2601,7928 +11565,8897,2013-11-11 02:19:34 -0800,2601,7928 +11566,8087,2013-11-12 09:18:34 -0800,2601,7928 +11567,7286,2013-11-10 04:55:13 -0800,2601,7928 +11568,4290,2013-11-07 14:24:47 -0800,2601,7928 +11569,950,2013-11-08 09:20:07 -0800,2601,7928 +11570,9481,2013-11-12 20:41:24 -0800,2602,7930 +11571,3497,2013-11-11 20:11:29 -0800,2602,7929 +11572,2511,2013-11-09 23:21:03 -0800,2602,7930 +11573,7690,2013-11-10 13:55:11 -0800,2602,7929 +11574,3149,2013-11-11 15:17:41 -0800,2604,7934 +11575,1610,2013-11-07 04:49:21 -0800,2604,7934 +11576,8692,2013-11-08 07:28:39 -0800,2604,7934 +11577,3577,2013-11-11 10:46:34 -0800,2605,7938 +11578,9777,2013-11-10 20:25:08 -0800,2605,7936 +11579,7064,2013-11-07 07:29:10 -0800,2605,7937 +11580,2090,2013-11-06 18:32:57 -0800,2606,7943 +11581,3635,2013-11-13 07:41:39 -0800,2606,7943 +11582,7726,2013-11-13 02:59:55 -0800,2606,7940 +11583,6989,2013-11-08 16:39:46 -0800,2606,7941 +11584,5744,2013-11-06 15:04:59 -0800,2606,7942 +11585,179,2013-11-08 23:52:28 -0800,2607,7946 +11586,328,2013-11-11 12:47:14 -0800,2607,7944 +11587,4627,2013-11-06 12:37:52 -0800,2607,7944 +11588,4279,2013-11-09 22:08:57 -0800,2607,7945 +11589,5834,2013-11-10 18:02:57 -0800,2607,7944 +11590,3482,2013-11-10 08:15:08 -0800,2607,7945 +11591,570,2013-11-08 14:33:06 -0800,2607,7944 +11592,3365,2013-11-11 01:33:42 -0800,2608,7948 +11593,30,2013-11-09 06:44:20 -0800,2608,7947 +11594,6994,2013-11-10 22:20:16 -0800,2608,7948 +11595,5298,2013-11-08 06:34:30 -0800,2608,7947 +11596,9655,2013-11-11 10:17:54 -0800,2610,7954 +11597,5626,2013-11-07 15:48:10 -0800,2610,7957 +11598,592,2013-11-10 22:36:27 -0800,2610,7954 +11599,7073,2013-11-10 11:59:52 -0800,2611,7959 +11600,2198,2013-11-13 06:20:03 -0800,2611,7960 +11601,434,2013-11-11 12:56:14 -0800,2611,7960 +11602,5364,2013-11-10 12:42:19 -0800,2611,7961 +11603,550,2013-11-07 07:22:13 -0800,2611,7960 +11604,4811,2013-11-12 03:40:00 -0800,2611,7961 +11605,5162,2013-11-11 06:01:43 -0800,2611,7959 +11606,4110,2013-11-11 14:52:11 -0800,2611,7959 +11607,2540,2013-11-10 18:21:07 -0800,2612,7962 +11608,4240,2013-11-07 00:33:35 -0800,2612,7963 +11609,1360,2013-11-08 09:40:33 -0800,2612,7962 +11610,2872,2013-11-07 16:12:40 -0800,2612,7963 +11611,5083,2013-11-06 17:29:07 -0800,2612,7963 +11612,2862,2013-11-13 01:38:03 -0800,2612,7963 +11613,1739,2013-11-10 22:48:57 -0800,2613,7964 +11614,1040,2013-11-08 23:46:39 -0800,2613,7965 +11615,5912,2013-11-13 06:35:31 -0800,2613,7964 +11616,988,2013-11-07 22:39:42 -0800,2613,7965 +11617,4341,2013-11-07 09:15:34 -0800,2613,7965 +11618,4297,2013-11-06 19:04:23 -0800,2613,7964 +11619,279,2013-11-10 01:52:11 -0800,2613,7965 +11620,2983,2013-11-09 16:48:18 -0800,2613,7965 +11621,6567,2013-11-13 02:50:01 -0800,2614,7969 +11622,1061,2013-11-11 13:30:22 -0800,2614,7968 +11623,5636,2013-11-12 09:15:46 -0800,2614,7968 +11624,3799,2013-11-11 20:49:02 -0800,2614,7969 +11625,3974,2013-11-07 15:17:23 -0800,2614,7970 +11626,1515,2013-11-11 10:01:19 -0800,2614,7967 +11627,4134,2013-11-08 18:27:07 -0800,2615,7971 +11628,4581,2013-11-12 12:21:39 -0800,2615,7971 +11629,1197,2013-11-08 20:34:51 -0800,2615,7971 +11630,9540,2013-11-09 13:59:09 -0800,2615,7971 +11631,6842,2013-11-07 13:26:46 -0800,2615,7971 +11632,6062,2013-11-12 17:56:09 -0800,2616,7972 +11633,4899,2013-11-06 17:37:13 -0800,2616,7974 +11634,5183,2013-11-06 15:51:32 -0800,2617,7976 +11635,5178,2013-11-10 01:45:43 -0800,2617,7976 +11636,5180,2013-11-12 20:21:07 -0800,2617,7976 +11637,5938,2013-11-09 03:30:42 -0800,2617,7976 +11638,6598,2013-11-11 11:33:37 -0800,2618,7978 +11639,1943,2013-11-11 23:30:47 -0800,2618,7978 +11640,8490,2013-11-10 10:33:49 -0800,2618,7980 +11641,8935,2013-11-13 06:49:28 -0800,2618,7979 +11642,941,2013-11-08 03:42:33 -0800,2618,7978 +11643,1766,2013-11-08 07:51:05 -0800,2618,7977 +11644,8386,2013-11-09 21:36:04 -0800,2618,7979 +11645,6181,2013-11-11 12:49:34 -0800,2618,7980 +11646,6959,2013-11-11 06:25:55 -0800,2618,7978 +11647,5860,2013-11-12 08:47:22 -0800,2619,7981 +11648,9469,2013-11-11 07:49:45 -0800,2619,7981 +11649,5691,2013-11-08 17:41:38 -0800,2619,7981 +11650,9527,2013-11-08 11:29:37 -0800,2619,7981 +11651,3258,2013-11-09 04:46:20 -0800,2619,7981 +11652,725,2013-11-12 18:55:50 -0800,2619,7981 +11653,3196,2013-11-10 03:36:13 -0800,2619,7981 +11654,8670,2013-11-12 23:35:51 -0800,2619,7981 +11655,3153,2013-11-08 20:24:46 -0800,2619,7981 +11656,2225,2013-11-13 03:49:30 -0800,2620,7983 +11657,7388,2013-11-07 14:16:36 -0800,2620,7985 +11658,6913,2013-11-10 10:25:10 -0800,2620,7982 +11659,5891,2013-11-09 18:31:36 -0800,2620,7984 +11660,3459,2013-11-11 20:10:17 -0800,2620,7983 +11661,8370,2013-11-09 15:02:36 -0800,2620,7985 +11662,3959,2013-11-12 03:14:34 -0800,2620,7983 +11663,1789,2013-11-06 11:37:19 -0800,2620,7985 +11664,9155,2013-11-07 09:31:26 -0800,2622,7992 +11665,3484,2013-11-07 12:29:12 -0800,2622,7992 +11666,5893,2013-11-07 21:11:55 -0800,2622,7991 +11667,9786,2013-11-08 22:21:05 -0800,2622,7991 +11668,3351,2013-11-09 20:13:10 -0800,2623,7997 +11669,6274,2013-11-06 18:08:21 -0800,2623,7996 +11670,5946,2013-11-08 17:14:09 -0800,2623,7995 +11671,5410,2013-11-13 00:12:44 -0800,2623,7996 +11672,2256,2013-11-12 05:16:48 -0800,2623,7994 +11673,1283,2013-11-08 01:31:45 -0800,2623,7994 +11674,3175,2013-11-07 10:47:00 -0800,2623,7997 +11675,3210,2013-11-06 15:24:38 -0800,2623,7995 +11676,4580,2013-11-09 19:16:48 -0800,2623,7997 +11677,7809,2013-11-06 09:13:11 -0800,2624,7998 +11678,238,2013-11-07 14:49:06 -0800,2624,7998 +11679,9055,2013-11-07 04:05:25 -0800,2624,7999 +11680,1485,2013-11-12 11:16:31 -0800,2624,7999 +11681,571,2013-11-08 13:32:32 -0800,2624,8000 +11682,4116,2013-11-06 17:44:35 -0800,2624,7999 +11683,3489,2013-11-12 18:30:42 -0800,2624,8000 +11684,8783,2013-11-11 08:20:07 -0800,2625,8001 +11685,5198,2013-11-12 23:24:52 -0800,2626,8003 +11686,4934,2013-11-10 00:06:40 -0800,2626,8004 +11687,840,2013-11-06 08:38:38 -0800,2626,8002 +11688,8778,2013-11-07 20:21:26 -0800,2627,8009 +11689,6244,2013-11-08 10:16:26 -0800,2627,8009 +11690,2340,2013-11-10 12:40:39 -0800,2627,8009 +11691,2172,2013-11-08 10:19:16 -0800,2627,8009 +11692,5190,2013-11-11 12:25:54 -0800,2627,8006 +11693,9220,2013-11-07 07:47:57 -0800,2628,8010 +11694,6467,2013-11-12 16:30:48 -0800,2628,8010 +11695,2644,2013-11-09 08:44:28 -0800,2628,8010 +11696,4141,2013-11-12 14:42:34 -0800,2628,8012 +11697,2593,2013-11-06 23:57:06 -0800,2628,8011 +11698,3127,2013-11-07 00:04:45 -0800,2629,8015 +11699,2782,2013-11-11 01:05:13 -0800,2629,8015 +11700,3119,2013-11-08 22:22:44 -0800,2629,8013 +11701,6540,2013-11-11 18:20:42 -0800,2629,8014 +11702,3934,2013-11-10 07:21:29 -0800,2629,8015 +11703,6127,2013-11-12 18:38:46 -0800,2629,8015 +11704,7737,2013-11-08 17:19:01 -0800,2630,8016 +11705,4560,2013-11-10 00:54:15 -0800,2630,8016 +11706,5183,2013-11-09 04:44:37 -0800,2631,8017 +11707,3411,2013-11-10 21:58:18 -0800,2631,8017 +11708,9645,2013-11-08 01:49:22 -0800,2631,8017 +11709,384,2013-11-11 06:53:14 -0800,2631,8017 +11710,8050,2013-11-10 20:21:18 -0800,2631,8018 +11711,9213,2013-11-12 06:34:31 -0800,2631,8017 +11712,4332,2013-11-10 09:27:02 -0800,2631,8018 +11713,430,2013-11-09 08:51:37 -0800,2631,8018 +11714,8265,2013-11-12 01:10:24 -0800,2631,8018 +11715,469,2013-11-09 08:52:32 -0800,2632,8019 +11716,9485,2013-11-12 05:13:07 -0800,2632,8020 +11717,9272,2013-11-10 08:09:28 -0800,2632,8019 +11718,1755,2013-11-11 14:19:57 -0800,2632,8020 +11719,6944,2013-11-08 14:08:20 -0800,2632,8021 +11720,3368,2013-11-11 22:10:05 -0800,2632,8019 +11721,1776,2013-11-06 17:48:24 -0800,2633,8022 +11722,4539,2013-11-12 18:50:41 -0800,2633,8022 +11723,5737,2013-11-10 07:19:50 -0800,2633,8022 +11724,9616,2013-11-09 07:58:55 -0800,2633,8022 +11725,1177,2013-11-07 01:09:53 -0800,2633,8022 +11726,6583,2013-11-13 06:53:39 -0800,2633,8022 +11727,4090,2013-11-06 20:47:58 -0800,2633,8022 +11728,1788,2013-11-10 20:27:45 -0800,2633,8022 +11729,7584,2013-11-12 05:16:32 -0800,2633,8022 +11730,1132,2013-11-09 09:23:18 -0800,2634,8027 +11731,6100,2013-11-07 05:32:03 -0800,2634,8026 +11732,8783,2013-11-06 15:08:28 -0800,2634,8027 +11733,7897,2013-11-11 06:24:49 -0800,2634,8027 +11734,8118,2013-11-10 06:34:46 -0800,2635,8028 +11735,4789,2013-11-07 06:29:19 -0800,2635,8028 +11736,2455,2013-11-12 13:05:29 -0800,2635,8028 +11737,9219,2013-11-12 02:15:14 -0800,2635,8028 +11738,9120,2013-11-12 00:19:25 -0800,2635,8028 +11739,5926,2013-11-07 09:27:31 -0800,2635,8028 +11740,1793,2013-11-12 07:52:56 -0800,2635,8028 +11741,7529,2013-11-07 02:40:35 -0800,2635,8028 +11742,317,2013-11-10 03:24:53 -0800,2636,8029 +11743,4378,2013-11-07 14:09:43 -0800,2636,8029 +11744,2263,2013-11-07 21:11:10 -0800,2636,8029 +11745,3770,2013-11-08 02:39:16 -0800,2636,8029 +11746,8255,2013-11-11 07:24:00 -0800,2636,8029 +11747,3729,2013-11-08 13:33:43 -0800,2636,8029 +11748,7091,2013-11-12 11:00:52 -0800,2637,8030 +11749,1242,2013-11-06 20:29:24 -0800,2637,8030 +11750,543,2013-11-10 13:23:49 -0800,2637,8032 +11751,5656,2013-11-10 07:01:38 -0800,2637,8032 +11752,3485,2013-11-11 05:31:53 -0800,2637,8033 +11753,2711,2013-11-07 02:12:46 -0800,2637,8032 +11754,4648,2013-11-07 07:56:58 -0800,2637,8032 +11755,7719,2013-11-09 18:37:55 -0800,2637,8030 +11756,297,2013-11-11 21:39:24 -0800,2637,8033 +11757,3220,2013-11-07 00:41:16 -0800,2638,8038 +11758,1278,2013-11-07 01:53:22 -0800,2638,8037 +11759,1240,2013-11-09 17:36:02 -0800,2638,8038 +11760,5634,2013-11-06 11:47:44 -0800,2638,8035 +11761,9274,2013-11-10 20:37:15 -0800,2638,8037 +11762,6364,2013-11-10 23:02:14 -0800,2638,8034 +11763,9664,2013-11-11 13:35:02 -0800,2638,8035 +11764,3338,2013-11-08 18:42:45 -0800,2640,8041 +11765,6021,2013-11-07 23:27:33 -0800,2640,8041 +11766,4631,2013-11-12 01:25:21 -0800,2640,8041 +11767,3888,2013-11-08 22:21:14 -0800,2640,8041 +11768,9328,2013-11-08 22:39:16 -0800,2640,8041 +11769,9562,2013-11-06 22:00:40 -0800,2640,8041 +11770,3875,2013-11-11 04:33:43 -0800,2642,8045 +11771,5693,2013-11-09 14:31:21 -0800,2642,8045 +11772,9195,2013-11-10 23:11:32 -0800,2642,8044 +11773,1332,2013-11-07 09:09:58 -0800,2642,8044 +11774,4119,2013-11-07 10:10:25 -0800,2642,8045 +11775,1454,2013-11-10 11:54:13 -0800,2642,8044 +11776,4475,2013-11-09 10:26:01 -0800,2642,8043 +11777,1854,2013-11-11 02:36:58 -0800,2643,8047 +11778,3365,2013-11-08 23:01:27 -0800,2643,8049 +11779,742,2013-11-12 00:11:45 -0800,2643,8050 +11780,3122,2013-11-10 07:48:48 -0800,2644,8052 +11781,6550,2013-11-07 11:16:30 -0800,2644,8051 +11782,6513,2013-11-12 23:46:04 -0800,2644,8053 +11783,9422,2013-11-07 13:07:52 -0800,2644,8055 +11784,1667,2013-11-11 23:42:16 -0800,2645,8056 +11785,7075,2013-11-11 03:15:09 -0800,2645,8056 +11786,8843,2013-11-12 02:19:57 -0800,2645,8057 +11787,725,2013-11-10 15:37:38 -0800,2645,8057 +11788,5091,2013-11-11 10:08:06 -0800,2646,8060 +11789,6353,2013-11-08 03:32:02 -0800,2646,8059 +11790,6189,2013-11-07 03:47:14 -0800,2646,8058 +11791,3081,2013-11-11 20:57:30 -0800,2646,8060 +11792,2592,2013-11-07 00:56:50 -0800,2646,8058 +11793,231,2013-11-12 20:40:03 -0800,2646,8059 +11794,3385,2013-11-12 20:43:56 -0800,2647,8061 +11795,8030,2013-11-08 13:40:06 -0800,2647,8061 +11796,5540,2013-11-06 16:01:02 -0800,2647,8062 +11797,5566,2013-11-10 03:27:56 -0800,2647,8062 +11798,3695,2013-11-06 16:34:33 -0800,2647,8061 +11799,8039,2013-11-10 15:24:41 -0800,2647,8061 +11800,2767,2013-11-12 05:15:23 -0800,2648,8065 +11801,5945,2013-11-08 06:46:55 -0800,2648,8063 +11802,1710,2013-11-07 16:13:54 -0800,2648,8066 +11803,3831,2013-11-07 20:27:30 -0800,2648,8063 +11804,44,2013-11-07 16:03:18 -0800,2648,8065 +11805,2550,2013-11-08 01:21:35 -0800,2648,8065 +11806,9867,2013-11-09 00:43:09 -0800,2648,8066 +11807,6823,2013-11-11 02:07:15 -0800,2648,8067 +11808,3250,2013-11-07 22:22:12 -0800,2648,8065 +11809,9148,2013-11-12 01:17:15 -0800,2649,8070 +11810,6543,2013-11-07 17:41:44 -0800,2649,8070 +11811,32,2013-11-07 18:27:42 -0800,2649,8068 +11812,8314,2013-11-07 22:19:41 -0800,2649,8068 +11813,2464,2013-11-09 21:31:53 -0800,2649,8068 +11814,4237,2013-11-11 17:13:49 -0800,2649,8068 +11815,6553,2013-11-06 16:08:42 -0800,2649,8068 +11816,3159,2013-11-09 01:26:39 -0800,2650,8073 +11817,3954,2013-11-12 22:22:07 -0800,2650,8071 +11818,7392,2013-11-12 05:44:33 -0800,2650,8071 +11819,2446,2013-11-11 01:06:14 -0800,2650,8075 +11820,9544,2013-11-13 06:46:57 -0800,2650,8075 +11821,4665,2013-11-11 13:50:52 -0800,2650,8072 +11822,5260,2013-11-09 01:07:05 -0800,2650,8074 +11823,3842,2013-11-08 22:09:24 -0800,2651,8076 +11824,6634,2013-11-08 11:01:36 -0800,2651,8076 +11825,3219,2013-11-07 18:24:23 -0800,2651,8076 +11826,8664,2013-11-09 20:47:56 -0800,2652,8078 +11827,6918,2013-11-13 06:13:09 -0800,2652,8078 +11828,2851,2013-11-08 14:21:20 -0800,2652,8077 +11829,3970,2013-11-09 19:24:16 -0800,2652,8078 +11830,8869,2013-11-07 11:01:18 -0800,2652,8078 +11831,6866,2013-11-09 06:04:45 -0800,2652,8077 +11832,5650,2013-11-08 01:03:49 -0800,2653,8080 +11833,4511,2013-11-09 20:54:15 -0800,2653,8079 +11834,7068,2013-11-07 02:02:19 -0800,2654,8082 +11835,4195,2013-11-12 11:57:40 -0800,2654,8084 +11836,7481,2013-11-13 06:25:36 -0800,2654,8081 +11837,4556,2013-11-09 21:19:02 -0800,2654,8084 +11838,549,2013-11-08 20:23:12 -0800,2654,8082 +11839,1425,2013-11-07 17:40:07 -0800,2655,8085 +11840,5394,2013-11-11 11:41:55 -0800,2655,8086 +11841,2650,2013-11-11 01:42:56 -0800,2655,8086 +11842,5369,2013-11-09 15:04:37 -0800,2655,8086 +11843,1486,2013-11-10 02:02:30 -0800,2655,8086 +11844,8162,2013-11-08 09:34:54 -0800,2655,8086 +11845,1169,2013-11-06 22:21:47 -0800,2655,8086 +11846,2122,2013-11-07 18:23:21 -0800,2655,8085 +11847,8450,2013-11-07 11:19:08 -0800,2655,8086 +11848,5054,2013-11-10 20:25:11 -0800,2656,8087 +11849,5249,2013-11-11 21:03:36 -0800,2656,8087 +11850,2926,2013-11-09 02:03:14 -0800,2656,8089 +11851,248,2013-11-12 14:09:24 -0800,2656,8087 +11852,6045,2013-11-07 13:56:02 -0800,2656,8089 +11853,811,2013-11-11 07:24:09 -0800,2656,8087 +11854,118,2013-11-11 08:32:03 -0800,2656,8087 +11855,3996,2013-11-07 00:30:04 -0800,2657,8090 +11856,896,2013-11-10 05:02:35 -0800,2657,8091 +11857,6013,2013-11-11 05:33:28 -0800,2657,8091 +11858,1378,2013-11-06 08:47:12 -0800,2657,8090 +11859,8888,2013-11-07 10:10:19 -0800,2657,8091 +11860,2575,2013-11-11 09:14:43 -0800,2657,8091 +11861,1778,2013-11-07 22:35:56 -0800,2657,8090 +11862,1563,2013-11-08 06:32:28 -0800,2657,8091 +11863,4940,2013-11-07 15:41:39 -0800,2657,8091 +11864,3050,2013-11-10 02:24:34 -0800,2658,8092 +11865,772,2013-11-11 19:56:01 -0800,2658,8092 +11866,9578,2013-11-11 11:13:50 -0800,2658,8092 +11867,5797,2013-11-10 13:29:47 -0800,2658,8092 +11868,7145,2013-11-06 17:18:51 -0800,2658,8092 +11869,4987,2013-11-07 20:10:16 -0800,2658,8092 +11870,8250,2013-11-07 16:55:33 -0800,2658,8092 +11871,222,2013-11-13 05:35:37 -0800,2658,8092 +11872,56,2013-11-08 19:15:30 -0800,2658,8092 +11873,1384,2013-11-12 06:12:43 -0800,2659,8093 +11874,4891,2013-11-06 10:01:56 -0800,2660,8097 +11875,1620,2013-11-09 04:25:48 -0800,2660,8097 +11876,9285,2013-11-10 08:26:30 -0800,2660,8098 +11877,5343,2013-11-11 14:16:02 -0800,2660,8097 +11878,6396,2013-11-07 08:07:28 -0800,2660,8099 +11879,9430,2013-11-08 10:59:03 -0800,2660,8096 +11880,7840,2013-11-08 13:12:10 -0800,2660,8099 +11881,9290,2013-11-09 12:51:17 -0800,2661,8100 +11882,4932,2013-11-13 02:18:18 -0800,2661,8102 +11883,3697,2013-11-12 21:41:53 -0800,2662,8103 +11884,9268,2013-11-06 22:15:38 -0800,2662,8103 +11885,1227,2013-11-12 07:10:44 -0800,2663,8106 +11886,1360,2013-11-13 08:28:41 -0800,2663,8104 +11887,4480,2013-11-11 16:54:20 -0800,2663,8105 +11888,7328,2013-11-10 15:00:47 -0800,2665,8113 +11889,1392,2013-11-11 09:53:25 -0800,2666,8117 +11890,1469,2013-11-12 17:12:58 -0800,2666,8117 +11891,543,2013-11-07 23:15:36 -0800,2667,8118 +11892,3264,2013-11-11 23:19:37 -0800,2667,8120 +11893,5581,2013-11-08 04:13:21 -0800,2667,8118 +11894,3023,2013-11-07 13:15:45 -0800,2667,8119 +11895,7923,2013-11-07 10:56:06 -0800,2667,8120 +11896,4064,2013-11-10 01:50:53 -0800,2667,8119 +11897,4112,2013-11-09 13:34:50 -0800,2668,8122 +11898,7089,2013-11-08 05:46:25 -0800,2669,8126 +11899,1836,2013-11-12 19:10:54 -0800,2669,8124 +11900,741,2013-11-06 16:53:01 -0800,2669,8125 +11901,6512,2013-11-08 09:49:46 -0800,2669,8126 +11902,6374,2013-11-10 05:43:46 -0800,2669,8124 +11903,9636,2013-11-08 16:34:29 -0800,2669,8124 +11904,275,2013-11-09 15:34:47 -0800,2669,8128 +11905,7934,2013-11-06 12:15:15 -0800,2670,8129 +11906,1426,2013-11-11 13:09:57 -0800,2670,8129 +11907,519,2013-11-12 00:43:13 -0800,2670,8129 +11908,7373,2013-11-07 14:36:11 -0800,2670,8129 +11909,56,2013-11-13 07:43:01 -0800,2670,8129 +11910,5930,2013-11-06 12:23:23 -0800,2670,8129 +11911,6323,2013-11-10 11:31:26 -0800,2670,8129 +11912,3684,2013-11-10 04:53:58 -0800,2670,8129 +11913,9894,2013-11-06 13:28:20 -0800,2670,8129 +11914,770,2013-11-06 20:29:41 -0800,2671,8130 +11915,942,2013-11-12 02:35:20 -0800,2671,8130 +11916,7937,2013-11-11 23:00:44 -0800,2671,8130 +11917,4470,2013-11-10 00:28:52 -0800,2672,8131 +11918,7875,2013-11-12 04:27:37 -0800,2672,8133 +11919,9718,2013-11-08 14:38:10 -0800,2672,8133 +11920,9777,2013-11-07 07:39:53 -0800,2672,8131 +11921,4035,2013-11-08 09:35:18 -0800,2672,8131 +11922,8279,2013-11-11 01:43:26 -0800,2672,8131 +11923,5582,2013-11-09 22:17:00 -0800,2672,8131 +11924,9500,2013-11-08 23:27:26 -0800,2672,8133 +11925,7247,2013-11-07 22:13:03 -0800,2673,8136 +11926,7243,2013-11-10 19:06:28 -0800,2673,8136 +11927,1398,2013-11-06 17:54:43 -0800,2673,8136 +11928,1976,2013-11-10 17:24:07 -0800,2673,8136 +11929,5817,2013-11-10 11:21:27 -0800,2673,8136 +11930,3384,2013-11-08 22:12:28 -0800,2673,8136 +11931,4470,2013-11-08 11:28:38 -0800,2673,8135 +11932,6177,2013-11-06 09:07:01 -0800,2674,8139 +11933,3997,2013-11-10 00:03:27 -0800,2675,8140 +11934,6728,2013-11-12 11:53:45 -0800,2676,8144 +11935,8954,2013-11-11 14:12:01 -0800,2676,8144 +11936,7361,2013-11-13 04:34:12 -0800,2676,8141 +11937,7378,2013-11-08 07:16:40 -0800,2676,8141 +11938,2947,2013-11-08 04:40:26 -0800,2676,8144 +11939,2496,2013-11-08 15:31:50 -0800,2676,8142 +11940,1294,2013-11-10 09:53:25 -0800,2677,8146 +11941,413,2013-11-10 19:32:03 -0800,2677,8146 +11942,4310,2013-11-07 13:18:22 -0800,2677,8147 +11943,1584,2013-11-12 23:34:25 -0800,2677,8145 +11944,8685,2013-11-11 17:57:41 -0800,2677,8145 +11945,180,2013-11-10 00:28:13 -0800,2678,8150 +11946,8353,2013-11-13 06:13:18 -0800,2679,8153 +11947,6839,2013-11-10 13:43:11 -0800,2679,8153 +11948,6880,2013-11-07 07:23:07 -0800,2680,8157 +11949,2656,2013-11-08 12:27:51 -0800,2680,8159 +11950,7190,2013-11-11 19:42:35 -0800,2680,8156 +11951,1721,2013-11-09 00:06:52 -0800,2680,8157 +11952,9419,2013-11-07 01:37:32 -0800,2680,8157 +11953,3794,2013-11-13 08:25:54 -0800,2680,8157 +11954,199,2013-11-08 02:47:13 -0800,2680,8158 +11955,2535,2013-11-06 09:09:42 -0800,2680,8159 +11956,4833,2013-11-06 23:48:02 -0800,2680,8158 +11957,8998,2013-11-13 06:14:39 -0800,2681,8161 +11958,4260,2013-11-11 01:25:50 -0800,2681,8161 +11959,2455,2013-11-12 00:45:32 -0800,2683,8168 +11960,3071,2013-11-12 22:24:14 -0800,2683,8169 +11961,3954,2013-11-06 22:48:31 -0800,2683,8167 +11962,1670,2013-11-10 05:03:29 -0800,2683,8169 +11963,2225,2013-11-13 06:04:38 -0800,2683,8166 +11964,3690,2013-11-10 20:19:07 -0800,2683,8167 +11965,3198,2013-11-11 01:00:13 -0800,2683,8166 +11966,419,2013-11-07 05:43:52 -0800,2683,8168 +11967,5050,2013-11-10 14:37:12 -0800,2683,8166 +11968,8031,2013-11-10 14:55:02 -0800,2684,8170 +11969,8660,2013-11-08 04:21:34 -0800,2684,8171 +11970,9264,2013-11-11 19:01:38 -0800,2684,8171 +11971,3219,2013-11-11 11:24:08 -0800,2684,8171 +11972,153,2013-11-09 15:39:01 -0800,2684,8170 +11973,1669,2013-11-10 13:21:30 -0800,2684,8170 +11974,4231,2013-11-11 13:01:15 -0800,2684,8170 +11975,4950,2013-11-13 06:57:56 -0800,2684,8170 +11976,6028,2013-11-08 08:08:48 -0800,2684,8170 +11977,7338,2013-11-10 11:23:50 -0800,2685,8174 +11978,3815,2013-11-07 07:05:19 -0800,2685,8173 +11979,2836,2013-11-09 05:05:59 -0800,2685,8173 +11980,8951,2013-11-06 11:26:20 -0800,2686,8178 +11981,7994,2013-11-08 08:51:59 -0800,2686,8177 +11982,7718,2013-11-10 05:49:56 -0800,2686,8178 +11983,3000,2013-11-13 03:35:12 -0800,2686,8177 +11984,5200,2013-11-09 23:40:52 -0800,2686,8178 +11985,1816,2013-11-12 01:42:43 -0800,2686,8177 +11986,2362,2013-11-07 10:27:04 -0800,2687,8179 +11987,6113,2013-11-07 17:34:42 -0800,2687,8179 +11988,5419,2013-11-09 21:26:23 -0800,2687,8179 +11989,4751,2013-11-10 05:09:12 -0800,2687,8179 +11990,6291,2013-11-11 23:38:50 -0800,2687,8179 +11991,7440,2013-11-12 17:10:16 -0800,2687,8179 +11992,7050,2013-11-12 04:36:22 -0800,2687,8179 +11993,5127,2013-11-09 09:45:19 -0800,2688,8182 +11994,222,2013-11-12 22:36:46 -0800,2688,8182 +11995,6321,2013-11-13 07:35:49 -0800,2688,8181 +11996,5139,2013-11-11 02:53:07 -0800,2688,8182 +11997,3184,2013-11-07 04:00:22 -0800,2688,8180 +11998,1572,2013-11-12 03:15:52 -0800,2688,8180 +11999,3793,2013-11-08 00:39:35 -0800,2689,8188 +12000,7773,2013-11-10 12:15:19 -0800,2690,8193 +12001,8923,2013-11-10 15:22:35 -0800,2690,8192 +00,2538,2013-11-08 19:38:09 -0800,, +11206,6256.0,2013-11-13 03:09:41 -0800,2538,7733 +11207,2744.0,2013-11-12 03:31:22 -0800,2538,7732 +11208,6667.0,2013-11-09 00:35:43 -0800,2538,7732 +11209,2915.0,2013-11-11 02:51:21 -0800,2538,7732 +11210,1129.0,2013-11-12 17:47:48 -0800,2538,7732 +11211,8957.0,2013-11-08 16:32:24 -0800,2538,7732 +11212,4124.0,2013-11-08 07:22:06 -0800,2538,7732 +11213,8367.0,2013-11-09 14:30:23 -0800,2538,7732 +11214,5767.0,2013-11-12 07:00:31 -0800,2539,7735 +11215,6823.999999999999,2013-11-07 18:09:49 -0800,2539,7736 +11216,6515.000000000001,2013-11-09 08:56:58 -0800,2539,7736 +11217,321.0,2013-11-06 12:42:25 -0800,2539,7735 +11218,745.0,2013-11-12 06:48:48 -0800,2539,7734 +11219,4192.0,2013-11-11 08:56:45 -0800,2540,7738 +11220,1648.9999999999998,2013-11-10 01:30:05 -0800,2540,7738 +11221,5148.0,2013-11-10 12:17:08 -0800,2540,7737 +11222,9515.0,2013-11-12 00:48:02 -0800,2540,7737 +11223,6584.0,2013-11-10 00:35:17 -0800,2540,7738 +11224,3075.0,2013-11-09 06:32:13 -0800,2540,7737 +11225,8084.0,2013-11-08 18:58:06 -0800,2540,7738 +11226,9266.0,2013-11-12 12:26:06 -0800,2541,7740 +11227,6422.0,2013-11-09 02:16:03 -0800,2541,7739 +11228,3010.0,2013-11-08 14:33:03 -0800,2541,7739 +11229,1789.9999999999998,2013-11-09 11:23:48 -0800,2541,7740 +11230,5510.0,2013-11-07 21:40:02 -0800,2541,7741 +11231,9172.0,2013-11-08 01:43:45 -0800,2541,7740 +11232,30.0,2013-11-07 11:27:02 -0800,2542,7744 +11233,7273.999999999999,2013-11-10 01:38:44 -0800,2542,7743 +11234,5725.0,2013-11-09 06:37:00 -0800,2542,7746 +11235,8162.0,2013-11-12 07:23:43 -0800,2542,7745 +11236,9822.0,2013-11-11 01:06:11 -0800,2542,7743 +11237,1196.0,2013-11-06 11:38:14 -0800,2542,7743 +11238,4313.0,2013-11-11 12:29:03 -0800,2542,7746 +11239,4270.0,2013-11-08 18:53:47 -0800,2543,7747 +11240,1720.0,2013-11-11 19:21:33 -0800,2543,7749 +11241,8031.0,2013-11-06 20:00:07 -0800,2543,7748 +11242,1994.0000000000002,2013-11-06 22:56:23 -0800,2543,7751 +11243,1469.0,2013-11-09 21:17:09 -0800,2544,7752 +11244,8677.0,2013-11-07 13:29:51 -0800,2544,7755 +11245,8291.0,2013-11-12 00:04:21 -0800,2544,7755 +11246,3052.0,2013-11-08 21:34:17 -0800,2544,7752 +11247,9213.0,2013-11-08 14:11:11 -0800,2544,7753 +11248,4663.0,2013-11-07 12:35:45 -0800,2544,7754 +11249,811.0,2013-11-10 23:29:08 -0800,2544,7752 +11250,9068.0,2013-11-10 11:37:48 -0800,2544,7754 +11251,2081.0,2013-11-11 08:36:30 -0800,2544,7754 +11252,7383.0,2013-11-07 02:11:00 -0800,2545,7759 +11253,6473.0,2013-11-12 23:53:51 -0800,2545,7757 +11254,1945.0,2013-11-11 17:08:14 -0800,2545,7758 +11255,894.0,2013-11-07 20:42:59 -0800,2545,7756 +11256,2228.0,2013-11-07 08:15:25 -0800,2545,7759 +11257,4129.0,2013-11-09 00:39:40 -0800,2545,7758 +11258,1494.0,2013-11-10 02:36:30 -0800,2545,7758 +11259,8247.0,2013-11-09 18:16:42 -0800,2546,7760 +11260,2629.0,2013-11-09 17:24:20 -0800,2546,7760 +11261,17.0,2013-11-06 19:25:42 -0800,2546,7760 +11262,1932.9999999999998,2013-11-11 22:25:47 -0800,2546,7760 +11263,8780.0,2013-11-11 06:35:33 -0800,2546,7760 +11264,3425.0,2013-11-13 07:17:47 -0800,2546,7760 +11265,5115.0,2013-11-07 18:27:16 -0800,2547,7763 +11266,7141.0,2013-11-10 02:53:58 -0800,2547,7762 +11267,2250.0,2013-11-13 03:29:21 -0800,2547,7761 +11268,4136.0,2013-11-12 06:49:12 -0800,2547,7765 +11269,6351.0,2013-11-13 02:03:16 -0800,2548,7767 +11270,7964.0,2013-11-06 13:32:30 -0800,2548,7766 +11271,5026.0,2013-11-08 23:15:33 -0800,2548,7766 +11272,6425.0,2013-11-08 19:34:02 -0800,2548,7766 +11273,3600.0,2013-11-10 05:27:22 -0800,2548,7766 +11274,4323.0,2013-11-08 07:04:31 -0800,2548,7767 +11275,4638.0,2013-11-08 19:44:48 -0800,2548,7767 +11276,1272.0,2013-11-09 03:54:09 -0800,2548,7766 +11277,1844.0000000000002,2013-11-11 12:19:23 -0800,2548,7767 +11278,5130.0,2013-11-12 22:21:36 -0800,2549,7768 +11279,2310.0,2013-11-09 02:29:46 -0800,2549,7768 +11280,6887.0,2013-11-12 08:39:41 -0800,2549,7768 +11281,480.99999999999994,2013-11-06 23:34:51 -0800,2549,7768 +11282,8080.0,2013-11-13 03:20:02 -0800,2549,7768 +11283,9041.0,2013-11-06 22:44:25 -0800,2549,7768 +11284,9890.0,2013-11-11 02:22:40 -0800,2550,7771 +11285,5430.0,2013-11-12 16:11:04 -0800,2550,7769 +11286,3115.0,2013-11-07 00:50:11 -0800,2550,7771 +11287,6333.0,2013-11-12 03:16:05 -0800,2551,7773 +11288,7716.0,2013-11-09 02:52:15 -0800,2551,7773 +11289,5593.0,2013-11-09 04:16:52 -0800,2551,7774 +11290,5941.0,2013-11-07 01:32:05 -0800,2551,7774 +11291,1661.0,2013-11-09 12:54:42 -0800,2551,7776 +11292,526.0,2013-11-10 12:53:13 -0800,2551,7774 +11293,6555.0,2013-11-13 07:19:46 -0800,2552,7780 +11294,8340.0,2013-11-12 20:42:25 -0800,2552,7780 +11295,2486.0,2013-11-11 06:28:44 -0800,2552,7778 +11296,3677.0000000000005,2013-11-10 01:56:34 -0800,2552,7778 +11297,749.0,2013-11-11 10:59:44 -0800,2552,7777 +11298,1841.0,2013-11-07 01:29:18 -0800,2552,7778 +11299,5589.0,2013-11-09 13:54:52 -0800,2552,7778 +11300,533.0,2013-11-11 23:14:10 -0800,2552,7778 +11301,3060.0,2013-11-09 13:47:16 -0800,2552,7777 +11302,8268.0,2013-11-10 14:44:18 -0800,2553,7782 +11303,9845.0,2013-11-09 15:18:14 -0800,2553,7782 +11304,9361.0,2013-11-13 03:02:36 -0800,2553,7782 +11305,5220.0,2013-11-12 20:05:27 -0800,2554,7787 +11306,5210.0,2013-11-12 14:18:53 -0800,2554,7788 +11307,3356.0,2013-11-08 18:37:51 -0800,2554,7786 +11308,9333.0,2013-11-06 17:23:52 -0800,2554,7790 +11309,8279.0,2013-11-08 23:42:30 -0800,2554,7790 +11310,2160.0,2013-11-12 03:40:49 -0800,2554,7786 +11311,4314.0,2013-11-08 09:01:55 -0800,2554,7787 +11312,3486.0,2013-11-11 02:15:30 -0800,2554,7790 +11313,1457.0,2013-11-09 06:52:34 -0800,2554,7790 +11314,3361.0,2013-11-07 12:12:58 -0800,2555,7791 +11315,9657.0,2013-11-08 05:57:16 -0800,2555,7791 +11316,983.0,2013-11-06 10:43:12 -0800,2555,7791 +11317,1922.0,2013-11-08 19:18:07 -0800,2555,7791 +11318,4238.0,2013-11-10 19:55:54 -0800,2555,7791 +11319,1011.9999999999999,2013-11-09 16:54:25 -0800,2555,7791 +11320,9658.0,2013-11-09 04:21:44 -0800,2555,7791 +11321,7311.0,2013-11-12 10:19:57 -0800,2555,7791 +11322,2668.0,2013-11-08 21:59:29 -0800,2555,7791 +11323,3957.0,2013-11-11 09:49:01 -0800,2556,7792 +11324,3800.0,2013-11-07 11:56:25 -0800,2556,7792 +11325,4797.0,2013-11-10 13:47:28 -0800,2556,7792 +11326,7684.0,2013-11-09 21:50:45 -0800,2556,7792 +11327,8935.0,2013-11-13 01:04:39 -0800,2556,7792 +11328,713.0,2013-11-07 14:05:28 -0800,2556,7792 +11329,9243.0,2013-11-12 20:27:51 -0800,2557,7794 +11330,3229.0,2013-11-09 03:06:07 -0800,2557,7794 +11331,6823.999999999999,2013-11-07 07:22:12 -0800,2557,7793 +11332,4579.0,2013-11-08 03:04:53 -0800,2557,7793 +11333,6062.0,2013-11-07 08:23:07 -0800,2557,7796 +11334,6650.0,2013-11-07 09:41:32 -0800,2557,7795 +11335,2470.0,2013-11-09 15:54:33 -0800,2557,7794 +11336,9061.0,2013-11-06 13:48:32 -0800,2557,7794 +11337,6158.0,2013-11-07 23:47:38 -0800,2557,7795 +11338,7092.0,2013-11-10 12:48:43 -0800,2558,7797 +11339,7991.0,2013-11-12 19:48:46 -0800,2558,7797 +11340,2094.0,2013-11-11 14:29:28 -0800,2559,7802 +11341,112.99999999999999,2013-11-07 15:25:47 -0800,2559,7801 +11342,2774.0,2013-11-07 17:46:24 -0800,2559,7801 +11343,2220.0,2013-11-13 00:18:46 -0800,2559,7799 +11344,1478.0,2013-11-09 21:07:54 -0800,2559,7800 +11345,2227.0,2013-11-08 15:45:47 -0800,2559,7799 +11346,2020.0,2013-11-10 16:40:02 -0800,2559,7800 +11347,614.0,2013-11-07 00:17:26 -0800,2559,7801 +11348,2070.0,2013-11-08 14:28:31 -0800,2559,7801 +11349,7058.0,2013-11-07 22:57:55 -0800,2560,7803 +11350,9067.0,2013-11-12 04:02:20 -0800,2560,7803 +11351,5549.0,2013-11-13 04:20:50 -0800,2561,7805 +11352,9189.0,2013-11-11 02:59:51 -0800,2561,7804 +11353,2648.0,2013-11-11 14:48:33 -0800,2561,7806 +11354,7423.0,2013-11-13 03:41:36 -0800,2561,7806 +11355,918.0,2013-11-06 09:58:47 -0800,2561,7805 +11356,8424.0,2013-11-10 22:51:05 -0800,2561,7805 +11357,5662.0,2013-11-12 14:18:36 -0800,2561,7804 +11358,5084.0,2013-11-06 15:45:08 -0800,2561,7806 +11359,8861.0,2013-11-11 09:14:30 -0800,2561,7805 +11360,2350.0,2013-11-12 21:29:27 -0800,2562,7807 +11361,1739.9999999999998,2013-11-08 18:24:50 -0800,2562,7807 +11362,5888.0,2013-11-10 21:14:44 -0800,2562,7807 +11363,8811.0,2013-11-07 18:05:24 -0800,2562,7807 +11364,1967.0000000000002,2013-11-09 09:18:15 -0800,2562,7807 +11365,9055.0,2013-11-11 09:18:53 -0800,2562,7807 +11366,2491.0,2013-11-12 02:11:44 -0800,2562,7807 +11367,8451.0,2013-11-12 13:08:28 -0800,2562,7807 +11368,4169.0,2013-11-12 13:13:18 -0800,2562,7807 +11369,2032.0,2013-11-07 16:00:24 -0800,2563,7809 +11370,4615.0,2013-11-08 04:31:14 -0800,2563,7811 +11371,2475.0,2013-11-06 08:56:56 -0800,2563,7808 +11372,6071.0,2013-11-12 08:50:23 -0800,2563,7808 +11373,6477.0,2013-11-09 17:18:54 -0800,2563,7811 +11374,9779.0,2013-11-08 16:57:07 -0800,2563,7811 +11375,7955.0,2013-11-11 21:04:35 -0800,2563,7809 +11376,4050.0,2013-11-11 07:53:33 -0800,2564,7814 +11377,5234.0,2013-11-12 15:32:12 -0800,2564,7814 +11378,5090.0,2013-11-06 12:31:20 -0800,2564,7813 +11379,2375.0,2013-11-12 03:43:12 -0800,2564,7812 +11380,64.0,2013-11-08 20:51:27 -0800,2564,7813 +11381,7327.0,2013-11-13 02:09:44 -0800,2566,7818 +11382,6639.0,2013-11-08 05:56:33 -0800,2566,7818 +11383,4250.0,2013-11-10 02:21:28 -0800,2566,7818 +11384,2800.0,2013-11-07 22:26:36 -0800,2566,7819 +11385,670.0,2013-11-09 23:11:21 -0800,2566,7821 +11386,8683.0,2013-11-11 04:51:19 -0800,2568,7828 +11387,509.99999999999994,2013-11-07 18:16:38 -0800,2568,7827 +11388,661.0,2013-11-12 20:33:35 -0800,2568,7828 +11389,8880.0,2013-11-13 02:53:46 -0800,2568,7827 +11390,6756.999999999999,2013-11-11 08:53:38 -0800,2568,7827 +11391,7195.999999999999,2013-11-08 18:32:33 -0800,2568,7827 +11392,7788.0,2013-11-09 01:08:04 -0800,2569,7829 +11393,8298.0,2013-11-07 17:51:39 -0800,2569,7829 +11394,3799.0,2013-11-06 22:49:40 -0800,2569,7831 +11395,1636.0,2013-11-08 01:52:13 -0800,2569,7829 +11396,9152.0,2013-11-13 02:48:07 -0800,2569,7829 +11397,1340.0,2013-11-13 02:53:11 -0800,2570,7833 +11398,2620.0,2013-11-12 18:39:46 -0800,2570,7835 +11399,2676.0,2013-11-10 22:40:07 -0800,2570,7832 +11400,268.0,2013-11-12 07:57:27 -0800,2570,7832 +11401,9854.0,2013-11-12 10:37:57 -0800,2571,7836 +11402,8847.0,2013-11-10 09:04:37 -0800,2571,7836 +11403,6934.0,2013-11-11 02:55:03 -0800,2571,7836 +11404,2647.0,2013-11-10 10:15:24 -0800,2572,7839 +11405,4938.0,2013-11-06 19:26:21 -0800,2572,7840 +11406,3110.0,2013-11-09 10:25:59 -0800,2572,7838 +11407,2976.0,2013-11-08 20:23:46 -0800,2572,7837 +11408,3415.0,2013-11-10 08:52:00 -0800,2572,7838 +11409,700.0,2013-11-10 21:45:55 -0800,2572,7839 +11410,710.0,2013-11-06 20:47:45 -0800,2573,7842 +11411,4726.0,2013-11-11 12:41:12 -0800,2574,7845 +11412,3084.0,2013-11-08 02:08:14 -0800,2574,7847 +11413,6445.0,2013-11-08 01:48:56 -0800,2575,7848 +11414,7556.0,2013-11-07 03:48:12 -0800,2575,7848 +11415,6736.0,2013-11-06 19:25:57 -0800,2575,7848 +11416,6190.0,2013-11-07 08:43:05 -0800,2575,7848 +11417,8871.0,2013-11-11 17:10:08 -0800,2575,7848 +11418,3560.0,2013-11-08 09:34:24 -0800,2575,7848 +11419,4865.0,2013-11-06 22:29:30 -0800,2575,7848 +11420,7397.0,2013-11-13 00:09:39 -0800,2575,7848 +11421,7638.0,2013-11-12 21:00:31 -0800,2575,7848 +11422,1920.0,2013-11-10 18:45:02 -0800,2576,7851 +11423,5561.0,2013-11-09 02:11:52 -0800,2576,7851 +11424,8428.0,2013-11-08 02:55:10 -0800,2576,7851 +11425,6716.0,2013-11-10 16:31:19 -0800,2576,7850 +11426,6343.0,2013-11-10 19:11:02 -0800,2576,7849 +11427,3149.0,2013-11-11 10:20:13 -0800,2576,7850 +11428,5046.0,2013-11-08 10:21:16 -0800,2577,7853 +11429,4221.0,2013-11-09 22:05:37 -0800,2577,7852 +11430,2080.0,2013-11-07 14:02:47 -0800,2578,7859 +11431,8354.0,2013-11-13 06:14:06 -0800,2578,7857 +11432,2225.0,2013-11-12 09:46:21 -0800,2578,7855 +11433,1696.0,2013-11-09 00:56:28 -0800,2578,7855 +11434,2393.0,2013-11-08 16:06:49 -0800,2579,7862 +11435,9186.0,2013-11-06 13:07:12 -0800,2579,7863 +11436,498.00000000000006,2013-11-09 00:09:27 -0800,2579,7863 +11437,293.0,2013-11-07 10:37:48 -0800,2579,7860 +11438,5367.0,2013-11-10 03:16:18 -0800,2579,7862 +11439,1225.0,2013-11-06 11:21:09 -0800,2579,7862 +11440,3163.0,2013-11-11 23:26:22 -0800,2579,7862 +11441,4744.0,2013-11-11 18:03:14 -0800,2579,7861 +11442,4389.0,2013-11-09 02:07:51 -0800,2580,7864 +11443,8581.0,2013-11-08 12:10:33 -0800,2580,7864 +11444,8233.0,2013-11-09 14:26:41 -0800,2580,7864 +11445,3531.0,2013-11-08 20:41:50 -0800,2580,7864 +11446,6978.0,2013-11-09 05:15:41 -0800,2580,7864 +11447,5873.0,2013-11-08 18:52:53 -0800,2580,7864 +11448,190.0,2013-11-10 08:23:01 -0800,2581,7867 +11449,4547.0,2013-11-06 08:54:46 -0800,2581,7867 +11450,7947.0,2013-11-11 01:38:37 -0800,2581,7867 +11451,7990.000000000001,2013-11-08 01:07:28 -0800,2581,7866 +11452,789.0,2013-11-06 12:00:02 -0800,2581,7869 +11453,3869.0,2013-11-07 17:40:21 -0800,2582,7870 +11454,1226.0,2013-11-09 12:30:12 -0800,2582,7870 +11455,6840.000000000001,2013-11-09 21:37:19 -0800,2582,7871 +11456,3038.0,2013-11-10 01:43:07 -0800,2582,7871 +11457,9332.0,2013-11-09 18:47:18 -0800,2582,7871 +11458,6020.0,2013-11-11 07:09:08 -0800,2583,7872 +11459,7718.000000000001,2013-11-06 21:01:20 -0800,2583,7873 +11460,2684.0,2013-11-07 03:03:44 -0800,2583,7872 +11461,7554.000000000001,2013-11-11 14:13:53 -0800,2583,7873 +11462,5789.0,2013-11-11 19:04:53 -0800,2583,7873 +11463,8857.0,2013-11-06 16:20:30 -0800,2583,7873 +11464,4376.0,2013-11-13 02:45:23 -0800,2583,7873 +11465,777.0,2013-11-07 19:35:30 -0800,2583,7873 +11466,7840.000000000001,2013-11-13 03:28:34 -0800,2583,7872 +11467,5422.0,2013-11-07 08:25:40 -0800,2584,7874 +11468,4138.0,2013-11-09 02:23:21 -0800,2584,7877 +11469,2146.0,2013-11-11 03:38:08 -0800,2584,7874 +11470,3661.0,2013-11-12 22:36:07 -0800,2584,7876 +11471,5030.0,2013-11-08 14:51:16 -0800,2584,7876 +11472,8183.0,2013-11-12 06:18:52 -0800,2584,7874 +11473,1241.0,2013-11-12 11:02:27 -0800,2585,7878 +11474,273.0,2013-11-10 10:51:44 -0800,2585,7879 +11475,5784.0,2013-11-10 14:39:04 -0800,2585,7879 +11476,1937.0,2013-11-10 06:40:27 -0800,2585,7879 +11477,3611.9999999999995,2013-11-08 04:11:35 -0800,2585,7880 +11478,5536.0,2013-11-12 03:17:07 -0800,2585,7880 +11479,3534.0000000000005,2013-11-07 21:27:42 -0800,2585,7879 +11480,6372.0,2013-11-12 21:58:41 -0800,2586,7882 +11481,7192.0,2013-11-13 02:27:16 -0800,2587,7887 +11482,8217.0,2013-11-12 03:16:14 -0800,2587,7886 +11483,2678.0,2013-11-07 14:08:57 -0800,2587,7887 +11484,7948.999999999999,2013-11-09 09:55:19 -0800,2587,7888 +11485,7651.000000000001,2013-11-08 12:35:20 -0800,2587,7886 +11486,7028.0,2013-11-08 15:50:19 -0800,2587,7888 +11487,1786.0,2013-11-10 11:21:36 -0800,2587,7886 +11488,2227.0,2013-11-13 01:14:44 -0800,2587,7887 +11489,1299.0,2013-11-08 22:59:26 -0800,2587,7888 +11490,8788.0,2013-11-10 22:34:55 -0800,2588,7889 +11491,5217.0,2013-11-06 17:31:47 -0800,2588,7891 +11492,8683.0,2013-11-12 09:31:45 -0800,2588,7891 +11493,9352.0,2013-11-06 21:03:47 -0800,2588,7890 +11494,7066.0,2013-11-08 05:46:37 -0800,2588,7891 +11495,8276.0,2013-11-13 01:27:48 -0800,2590,7895 +11496,5979.0,2013-11-11 18:14:32 -0800,2590,7895 +11497,3421.0,2013-11-12 06:51:34 -0800,2590,7895 +11498,2472.0,2013-11-09 08:46:04 -0800,2590,7896 +11499,8298.0,2013-11-10 03:04:56 -0800,2590,7895 +11500,9784.0,2013-11-07 11:57:07 -0800,2590,7895 +11501,7873.999999999999,2013-11-12 10:27:19 -0800,2590,7895 +11502,8744.0,2013-11-07 12:22:33 -0800,2590,7895 +11503,6890.000000000001,2013-11-08 17:59:49 -0800,2590,7896 +11504,1273.0,2013-11-07 00:48:43 -0800,2591,7898 +11505,5948.0,2013-11-11 08:33:43 -0800,2591,7901 +11506,4953.0,2013-11-10 19:00:21 -0800,2591,7901 +11507,4190.0,2013-11-12 15:25:08 -0800,2591,7897 +11508,9135.0,2013-11-11 14:26:13 -0800,2592,7902 +11509,5714.0,2013-11-10 23:58:39 -0800,2592,7902 +11510,369.0,2013-11-11 18:44:46 -0800,2592,7902 +11511,9164.0,2013-11-11 13:01:55 -0800,2592,7902 +11512,3185.0,2013-11-06 12:11:22 -0800,2592,7902 +11513,4776.0,2013-11-12 00:11:57 -0800,2592,7902 +11514,811.9999999999999,2013-11-12 06:11:26 -0800,2592,7902 +11515,9470.0,2013-11-06 16:04:48 -0800,2592,7902 +11516,7948.999999999999,2013-11-08 04:44:34 -0800,2592,7902 +11517,6368.0,2013-11-11 13:39:45 -0800,2593,7903 +11518,6296.0,2013-11-11 14:53:23 -0800,2593,7906 +11519,6297.0,2013-11-09 18:58:13 -0800,2593,7906 +11520,4581.0,2013-11-12 23:42:28 -0800,2593,7904 +11521,1796.0,2013-11-07 12:08:23 -0800,2594,7909 +11522,7816.0,2013-11-12 11:43:06 -0800,2594,7909 +11523,6980.0,2013-11-08 15:46:59 -0800,2594,7909 +11524,2544.0,2013-11-12 07:31:28 -0800,2594,7908 +11525,9163.0,2013-11-06 15:55:47 -0800,2594,7908 +11526,788.0,2013-11-13 00:06:39 -0800,2594,7908 +11527,6222.0,2013-11-11 02:47:10 -0800,2594,7907 +11528,9766.0,2013-11-06 16:50:15 -0800,2594,7908 +11529,3059.0,2013-11-11 06:43:57 -0800,2595,7911 +11530,5558.0,2013-11-06 09:49:15 -0800,2595,7911 +11531,1889.9999999999998,2013-11-11 12:51:36 -0800,2596,7916 +11532,4740.0,2013-11-08 03:47:23 -0800,2596,7914 +11533,4568.0,2013-11-07 18:35:59 -0800,2596,7913 +11534,4146.0,2013-11-11 02:27:51 -0800,2596,7912 +11535,5397.0,2013-11-08 21:41:40 -0800,2596,7913 +11536,5819.0,2013-11-11 03:08:55 -0800,2597,7917 +11537,1638.0,2013-11-11 12:14:00 -0800,2597,7917 +11538,7877.0,2013-11-10 03:10:11 -0800,2597,7917 +11539,7990.000000000001,2013-11-10 17:55:05 -0800,2597,7918 +11540,1067.0,2013-11-07 13:05:56 -0800,2597,7917 +11541,8648.0,2013-11-10 11:55:39 -0800,2597,7917 +11542,1160.0,2013-11-07 00:20:56 -0800,2598,7921 +11543,6664.0,2013-11-12 19:43:28 -0800,2598,7921 +11544,1224.0,2013-11-08 06:26:53 -0800,2598,7921 +11545,5881.0,2013-11-11 23:53:20 -0800,2598,7921 +11546,7279.000000000001,2013-11-09 19:13:52 -0800,2599,7922 +11547,8421.0,2013-11-10 12:28:59 -0800,2599,7922 +11548,9833.0,2013-11-07 07:43:19 -0800,2599,7922 +11549,4766.0,2013-11-08 08:22:10 -0800,2599,7922 +11550,651.0,2013-11-10 19:12:04 -0800,2599,7924 +11551,2461.0,2013-11-09 14:05:49 -0800,2599,7923 +11552,650.0,2013-11-10 22:00:51 -0800,2599,7924 +11553,3700.0,2013-11-07 12:07:22 -0800,2600,7926 +11554,266.0,2013-11-06 18:31:17 -0800,2600,7927 +11555,499.0,2013-11-06 11:00:25 -0800,2600,7926 +11556,5082.0,2013-11-07 00:07:00 -0800,2600,7927 +11557,8221.0,2013-11-10 14:58:09 -0800,2600,7927 +11558,4766.0,2013-11-09 00:53:20 -0800,2600,7927 +11559,5431.0,2013-11-08 11:06:21 -0800,2600,7926 +11560,3582.0,2013-11-12 18:26:36 -0800,2600,7926 +11561,1033.0,2013-11-12 18:52:17 -0800,2601,7928 +11562,8452.0,2013-11-11 05:58:31 -0800,2601,7928 +11563,8462.0,2013-11-10 02:21:09 -0800,2601,7928 +11564,5754.0,2013-11-08 19:08:58 -0800,2601,7928 +11565,8897.0,2013-11-12 01:38:01 -0800,2601,7928 +11566,8087.0,2013-11-11 15:03:18 -0800,2601,7928 +11567,7286.0,2013-11-13 07:20:59 -0800,2601,7928 +11568,4290.0,2013-11-09 08:46:07 -0800,2601,7928 +11569,950.0,2013-11-08 07:45:15 -0800,2601,7928 +11570,9481.0,2013-11-06 08:58:49 -0800,2602,7930 +11571,3497.9999999999995,2013-11-09 09:46:10 -0800,2602,7929 +11572,2511.0,2013-11-13 06:46:54 -0800,2602,7930 +11573,7690.000000000001,2013-11-13 03:43:02 -0800,2602,7929 +11574,3149.0,2013-11-08 20:01:33 -0800,2604,7934 +11575,1610.0000000000002,2013-11-11 16:47:21 -0800,2604,7934 +11576,8692.0,2013-11-09 17:06:49 -0800,2604,7934 +11577,3577.0000000000005,2013-11-11 13:38:50 -0800,2605,7938 +11578,9777.0,2013-11-08 02:36:22 -0800,2605,7936 +11579,7064.0,2013-11-07 13:35:52 -0800,2605,7937 +11580,2090.0,2013-11-10 07:26:11 -0800,2606,7943 +11581,3635.0,2013-11-10 09:25:45 -0800,2606,7943 +11582,7726.000000000001,2013-11-13 06:43:29 -0800,2606,7940 +11583,6989.0,2013-11-10 09:23:15 -0800,2606,7941 +11584,5744.0,2013-11-11 05:00:05 -0800,2606,7942 +11585,179.0,2013-11-10 17:34:52 -0800,2607,7946 +11586,328.0,2013-11-10 14:25:28 -0800,2607,7944 +11587,4627.0,2013-11-08 17:14:09 -0800,2607,7944 +11588,4279.0,2013-11-11 07:12:12 -0800,2607,7945 +11589,5834.0,2013-11-08 20:22:46 -0800,2607,7944 +11590,3482.0,2013-11-09 16:04:32 -0800,2607,7945 +11591,570.0,2013-11-11 12:40:28 -0800,2607,7944 +11592,3365.9999999999995,2013-11-12 14:26:21 -0800,2608,7948 +11593,30.0,2013-11-09 02:34:21 -0800,2608,7947 +11594,6994.0,2013-11-06 09:14:03 -0800,2608,7948 +11595,5298.0,2013-11-08 04:52:26 -0800,2608,7947 +11596,9655.0,2013-11-09 16:54:30 -0800,2610,7954 +11597,5626.0,2013-11-09 13:59:37 -0800,2610,7957 +11598,592.0,2013-11-08 16:46:57 -0800,2610,7954 +11599,7073.999999999999,2013-11-11 01:22:31 -0800,2611,7959 +11600,2198.0,2013-11-07 17:46:06 -0800,2611,7960 +11601,434.99999999999994,2013-11-11 04:04:20 -0800,2611,7960 +11602,5364.0,2013-11-10 21:58:10 -0800,2611,7961 +11603,550.0,2013-11-12 04:12:31 -0800,2611,7960 +11604,4811.0,2013-11-07 20:26:45 -0800,2611,7961 +11605,5162.0,2013-11-10 12:21:10 -0800,2611,7959 +11606,4110.0,2013-11-07 02:02:07 -0800,2611,7959 +11607,2540.0,2013-11-10 23:56:17 -0800,2612,7962 +11608,4240.0,2013-11-08 12:15:03 -0800,2612,7963 +11609,1360.0,2013-11-07 05:52:17 -0800,2612,7962 +11610,2872.0,2013-11-13 02:53:34 -0800,2612,7963 +11611,5083.0,2013-11-10 11:36:30 -0800,2612,7963 +11612,2862.0,2013-11-10 01:51:40 -0800,2612,7963 +11613,1739.9999999999998,2013-11-09 17:12:16 -0800,2613,7964 +11614,1040.0,2013-11-06 23:42:46 -0800,2613,7965 +11615,5912.0,2013-11-07 11:07:27 -0800,2613,7964 +11616,988.0000000000001,2013-11-11 21:50:24 -0800,2613,7965 +11617,4341.0,2013-11-07 06:37:36 -0800,2613,7965 +11618,4297.0,2013-11-07 21:50:45 -0800,2613,7964 +11619,279.0,2013-11-12 19:50:38 -0800,2613,7965 +11620,2983.0,2013-11-09 01:25:08 -0800,2613,7965 +11621,6567.0,2013-11-10 02:39:51 -0800,2614,7969 +11622,1061.0,2013-11-11 16:47:04 -0800,2614,7968 +11623,5636.0,2013-11-07 09:42:08 -0800,2614,7968 +11624,3799.0,2013-11-13 05:38:18 -0800,2614,7969 +11625,3974.0,2013-11-08 11:44:09 -0800,2614,7970 +11626,1515.0,2013-11-06 13:18:57 -0800,2614,7967 +11627,4134.0,2013-11-07 13:46:52 -0800,2615,7971 +11628,4581.0,2013-11-11 15:50:54 -0800,2615,7971 +11629,1197.0,2013-11-12 22:22:54 -0800,2615,7971 +11630,9540.0,2013-11-08 05:02:14 -0800,2615,7971 +11631,6842.0,2013-11-12 04:34:01 -0800,2615,7971 +11632,6062.0,2013-11-09 08:04:21 -0800,2616,7972 +11633,4899.0,2013-11-09 17:55:35 -0800,2616,7974 +11634,5183.0,2013-11-12 08:51:25 -0800,2617,7976 +11635,5178.0,2013-11-08 04:32:04 -0800,2617,7976 +11636,5180.0,2013-11-12 16:32:34 -0800,2617,7976 +11637,5938.0,2013-11-08 21:26:39 -0800,2617,7976 +11638,6598.999999999999,2013-11-12 20:57:46 -0800,2618,7978 +11639,1943.0,2013-11-12 11:54:31 -0800,2618,7978 +11640,8490.0,2013-11-10 16:49:45 -0800,2618,7980 +11641,8935.0,2013-11-08 14:28:10 -0800,2618,7979 +11642,941.0,2013-11-11 03:46:22 -0800,2618,7978 +11643,1766.0,2013-11-06 14:21:43 -0800,2618,7977 +11644,8386.0,2013-11-10 09:24:57 -0800,2618,7979 +11645,6181.0,2013-11-09 17:58:04 -0800,2618,7980 +11646,6959.999999999999,2013-11-09 10:59:32 -0800,2618,7978 +11647,5860.0,2013-11-12 12:32:28 -0800,2619,7981 +11648,9469.0,2013-11-06 11:22:31 -0800,2619,7981 +11649,5691.0,2013-11-09 22:00:10 -0800,2619,7981 +11650,9527.0,2013-11-08 22:08:09 -0800,2619,7981 +11651,3258.0,2013-11-10 11:23:40 -0800,2619,7981 +11652,725.0,2013-11-09 03:07:34 -0800,2619,7981 +11653,3196.0,2013-11-10 03:49:27 -0800,2619,7981 +11654,8670.0,2013-11-12 07:55:39 -0800,2619,7981 +11655,3153.0,2013-11-08 14:14:17 -0800,2619,7981 +11656,2225.0,2013-11-12 00:31:27 -0800,2620,7983 +11657,7388.0,2013-11-07 02:48:13 -0800,2620,7985 +11658,6913.0,2013-11-13 03:01:34 -0800,2620,7982 +11659,5891.0,2013-11-09 18:35:18 -0800,2620,7984 +11660,3459.0000000000005,2013-11-11 21:53:08 -0800,2620,7983 +11661,8370.0,2013-11-11 05:35:18 -0800,2620,7985 +11662,3959.0000000000005,2013-11-12 15:07:03 -0800,2620,7983 +11663,1789.9999999999998,2013-11-06 16:05:27 -0800,2620,7985 +11664,9155.0,2013-11-10 06:05:41 -0800,2622,7992 +11665,3484.0000000000005,2013-11-08 03:50:48 -0800,2622,7992 +11666,5893.0,2013-11-09 21:59:32 -0800,2622,7991 +11667,9786.0,2013-11-09 14:06:01 -0800,2622,7991 +11668,3351.0,2013-11-12 22:38:43 -0800,2623,7997 +11669,6274.0,2013-11-11 16:07:37 -0800,2623,7996 +11670,5946.0,2013-11-06 13:54:54 -0800,2623,7995 +11671,5410.0,2013-11-08 21:21:46 -0800,2623,7996 +11672,2256.0,2013-11-07 06:04:08 -0800,2623,7994 +11673,1283.0,2013-11-09 19:58:54 -0800,2623,7994 +11674,3175.0,2013-11-10 14:14:04 -0800,2623,7997 +11675,3210.0,2013-11-07 08:51:38 -0800,2623,7995 +11676,4580.0,2013-11-12 08:23:09 -0800,2623,7997 +11677,7809.999999999999,2013-11-08 16:43:01 -0800,2624,7998 +11678,238.0,2013-11-08 15:20:34 -0800,2624,7998 +11679,9055.0,2013-11-12 06:11:08 -0800,2624,7999 +11680,1485.0,2013-11-08 16:24:59 -0800,2624,7999 +11681,571.0,2013-11-11 18:27:51 -0800,2624,8000 +11682,4116.0,2013-11-06 20:03:44 -0800,2624,7999 +11683,3489.0,2013-11-09 23:41:48 -0800,2624,8000 +11684,8783.0,2013-11-13 04:39:48 -0800,2625,8001 +11685,5198.0,2013-11-07 23:19:32 -0800,2626,8003 +11686,4934.0,2013-11-11 12:55:55 -0800,2626,8004 +11687,840.0,2013-11-08 06:41:46 -0800,2626,8002 +11688,8778.0,2013-11-11 18:47:59 -0800,2627,8009 +11689,6244.0,2013-11-12 10:10:05 -0800,2627,8009 +11690,2340.0,2013-11-08 18:40:59 -0800,2627,8009 +11691,2172.0,2013-11-06 17:46:58 -0800,2627,8009 +11692,5190.0,2013-11-09 04:13:22 -0800,2627,8006 +11693,9220.0,2013-11-08 16:43:21 -0800,2628,8010 +11694,6467.0,2013-11-08 19:40:48 -0800,2628,8010 +11695,2644.0,2013-11-09 17:10:23 -0800,2628,8010 +11696,4141.0,2013-11-12 11:34:33 -0800,2628,8012 +11697,2593.0,2013-11-09 10:33:04 -0800,2628,8011 +11698,3127.0,2013-11-12 11:10:37 -0800,2629,8015 +11699,2782.0,2013-11-08 19:10:23 -0800,2629,8015 +11700,3119.0,2013-11-12 22:01:04 -0800,2629,8013 +11701,6540.000000000001,2013-11-08 10:26:17 -0800,2629,8014 +11702,3934.0000000000005,2013-11-08 14:19:00 -0800,2629,8015 +11703,6127.0,2013-11-12 21:22:02 -0800,2629,8015 +11704,7737.0,2013-11-07 15:15:03 -0800,2630,8016 +11705,4560.0,2013-11-11 11:45:42 -0800,2630,8016 +11706,5183.0,2013-11-06 11:40:59 -0800,2631,8017 +11707,3411.9999999999995,2013-11-07 13:57:41 -0800,2631,8017 +11708,9645.0,2013-11-13 02:25:44 -0800,2631,8017 +11709,384.0,2013-11-10 12:03:02 -0800,2631,8017 +11710,8050.0,2013-11-13 00:31:05 -0800,2631,8018 +11711,9213.0,2013-11-11 06:52:59 -0800,2631,8017 +11712,4332.0,2013-11-08 05:26:07 -0800,2631,8018 +11713,430.0,2013-11-07 20:13:01 -0800,2631,8018 +11714,8265.0,2013-11-13 02:17:03 -0800,2631,8018 +11715,469.00000000000006,2013-11-08 06:55:36 -0800,2632,8019 +11716,9485.0,2013-11-08 19:07:10 -0800,2632,8020 +11717,9272.0,2013-11-12 19:52:35 -0800,2632,8019 +11718,1755.0,2013-11-10 18:06:07 -0800,2632,8020 +11719,6944.0,2013-11-08 04:35:27 -0800,2632,8021 +11720,3368.0,2013-11-09 14:40:30 -0800,2632,8019 +11721,1776.0000000000002,2013-11-10 06:00:42 -0800,2633,8022 +11722,4539.0,2013-11-08 07:54:56 -0800,2633,8022 +11723,5737.0,2013-11-10 19:43:13 -0800,2633,8022 +11724,9616.0,2013-11-06 13:20:25 -0800,2633,8022 +11725,1177.0,2013-11-08 03:39:07 -0800,2633,8022 +11726,6583.0,2013-11-08 03:53:32 -0800,2633,8022 +11727,4090.9999999999995,2013-11-11 20:39:36 -0800,2633,8022 +11728,1788.0,2013-11-09 05:51:05 -0800,2633,8022 +11729,7584.0,2013-11-07 01:24:08 -0800,2633,8022 +11730,1132.0,2013-11-06 18:04:49 -0800,2634,8027 +11731,6100.0,2013-11-08 07:43:09 -0800,2634,8026 +11732,8783.0,2013-11-06 19:28:45 -0800,2634,8027 +11733,7897.0,2013-11-06 10:20:13 -0800,2634,8027 +11734,8118.000000000001,2013-11-09 10:40:20 -0800,2635,8028 +11735,4789.0,2013-11-09 09:40:18 -0800,2635,8028 +11736,2455.0,2013-11-10 21:58:50 -0800,2635,8028 +11737,9219.0,2013-11-13 01:50:10 -0800,2635,8028 +11738,9120.0,2013-11-09 18:17:40 -0800,2635,8028 +11739,5926.0,2013-11-12 23:46:48 -0800,2635,8028 +11740,1793.0,2013-11-09 10:00:56 -0800,2635,8028 +11741,7529.000000000001,2013-11-10 21:48:32 -0800,2635,8028 +11742,317.0,2013-11-06 09:53:01 -0800,2636,8029 +11743,4378.0,2013-11-08 16:34:41 -0800,2636,8029 +11744,2263.0,2013-11-06 14:08:47 -0800,2636,8029 +11745,3770.0000000000005,2013-11-06 17:58:27 -0800,2636,8029 +11746,8255.0,2013-11-08 23:20:39 -0800,2636,8029 +11747,3729.9999999999995,2013-11-13 06:23:23 -0800,2636,8029 +11748,7091.0,2013-11-11 00:15:59 -0800,2637,8030 +11749,1242.0,2013-11-07 07:07:26 -0800,2637,8030 +11750,543.0,2013-11-08 07:19:18 -0800,2637,8032 +11751,5656.0,2013-11-11 21:12:35 -0800,2637,8032 +11752,3485.0,2013-11-09 13:43:47 -0800,2637,8033 +11753,2711.0,2013-11-09 00:23:06 -0800,2637,8032 +11754,4648.0,2013-11-12 21:02:36 -0800,2637,8032 +11755,7719.0,2013-11-11 18:57:36 -0800,2637,8030 +11756,297.0,2013-11-12 21:55:19 -0800,2637,8033 +11757,3220.0000000000005,2013-11-06 09:48:58 -0800,2638,8038 +11758,1278.0,2013-11-11 07:03:25 -0800,2638,8037 +11759,1240.0,2013-11-10 00:21:59 -0800,2638,8038 +11760,5634.0,2013-11-10 01:26:00 -0800,2638,8035 +11761,9274.0,2013-11-13 00:29:47 -0800,2638,8037 +11762,6364.0,2013-11-08 21:54:14 -0800,2638,8034 +11763,9664.0,2013-11-11 23:03:37 -0800,2638,8035 +11764,3338.0000000000005,2013-11-06 17:22:16 -0800,2640,8041 +11765,6021.0,2013-11-11 02:13:29 -0800,2640,8041 +11766,4631.0,2013-11-08 03:13:33 -0800,2640,8041 +11767,3888.0000000000005,2013-11-11 21:14:35 -0800,2640,8041 +11768,9328.0,2013-11-09 09:38:57 -0800,2640,8041 +11769,9562.0,2013-11-11 21:03:07 -0800,2640,8041 +11770,3875.0,2013-11-11 16:47:40 -0800,2642,8045 +11771,5693.0,2013-11-11 01:13:42 -0800,2642,8045 +11772,9195.0,2013-11-08 04:40:34 -0800,2642,8044 +11773,1332.0,2013-11-11 11:50:27 -0800,2642,8044 +11774,4119.0,2013-11-09 09:22:42 -0800,2642,8045 +11775,1454.0,2013-11-07 10:43:26 -0800,2642,8044 +11776,4475.0,2013-11-12 08:59:56 -0800,2642,8043 +11777,1854.0,2013-11-12 09:41:30 -0800,2643,8047 +11778,3365.0,2013-11-09 00:17:50 -0800,2643,8049 +11779,742.0,2013-11-09 05:34:16 -0800,2643,8050 +11780,3122.0,2013-11-11 20:24:54 -0800,2644,8052 +11781,6550.0,2013-11-11 09:10:13 -0800,2644,8051 +11782,6513.0,2013-11-10 02:04:57 -0800,2644,8053 +11783,9422.0,2013-11-06 13:25:56 -0800,2644,8055 +11784,1667.0000000000002,2013-11-10 07:56:13 -0800,2645,8056 +11785,7075.0,2013-11-12 07:20:14 -0800,2645,8056 +11786,8843.0,2013-11-08 08:41:30 -0800,2645,8057 +11787,725.0,2013-11-12 05:12:34 -0800,2645,8057 +11788,5091.0,2013-11-11 13:25:35 -0800,2646,8060 +11789,6353.0,2013-11-07 20:33:02 -0800,2646,8059 +11790,6189.0,2013-11-10 11:03:59 -0800,2646,8058 +11791,3081.0,2013-11-12 21:57:07 -0800,2646,8060 +11792,2592.0,2013-11-10 05:21:28 -0800,2646,8058 +11793,231.99999999999997,2013-11-10 06:06:35 -0800,2646,8059 +11794,3385.0,2013-11-10 02:58:07 -0800,2647,8061 +11795,8030.0,2013-11-07 06:05:58 -0800,2647,8061 +11796,5540.0,2013-11-13 05:04:24 -0800,2647,8062 +11797,5566.0,2013-11-08 20:16:17 -0800,2647,8062 +11798,3695.0000000000005,2013-11-09 08:26:18 -0800,2647,8061 +11799,8039.0,2013-11-12 18:37:28 -0800,2647,8061 +11800,2767.0,2013-11-08 19:39:54 -0800,2648,8065 +11801,5945.0,2013-11-13 06:00:16 -0800,2648,8063 +11802,1710.0000000000002,2013-11-09 12:57:15 -0800,2648,8066 +11803,3831.0,2013-11-12 00:01:30 -0800,2648,8063 +11804,44.0,2013-11-07 22:43:21 -0800,2648,8065 +11805,2550.0,2013-11-11 13:37:28 -0800,2648,8065 +11806,9867.0,2013-11-09 19:05:28 -0800,2648,8066 +11807,6823.999999999999,2013-11-12 10:55:26 -0800,2648,8067 +11808,3250.0,2013-11-12 21:14:44 -0800,2648,8065 +11809,9148.0,2013-11-06 20:44:45 -0800,2649,8070 +11810,6543.000000000001,2013-11-10 20:45:58 -0800,2649,8070 +11811,32.0,2013-11-07 00:44:27 -0800,2649,8068 +11812,8314.0,2013-11-07 04:07:22 -0800,2649,8068 +11813,2464.0,2013-11-11 10:03:33 -0800,2649,8068 +11814,4237.0,2013-11-12 16:25:29 -0800,2649,8068 +11815,6553.0,2013-11-11 21:11:09 -0800,2649,8068 +11816,3159.0,2013-11-13 07:40:42 -0800,2650,8073 +11817,3954.0,2013-11-12 11:57:52 -0800,2650,8071 +11818,7392.0,2013-11-06 18:55:29 -0800,2650,8071 +11819,2446.0,2013-11-09 09:34:27 -0800,2650,8075 +11820,9544.0,2013-11-08 16:35:20 -0800,2650,8075 +11821,4665.0,2013-11-10 05:00:34 -0800,2650,8072 +11822,5260.0,2013-11-08 05:14:32 -0800,2650,8074 +11823,3842.0,2013-11-06 23:34:09 -0800,2651,8076 +11824,6634.0,2013-11-10 10:20:50 -0800,2651,8076 +11825,3219.0,2013-11-08 22:59:44 -0800,2651,8076 +11826,8664.0,2013-11-06 18:34:24 -0800,2652,8078 +11827,6918.000000000001,2013-11-12 09:21:48 -0800,2652,8078 +11828,2851.0,2013-11-10 10:34:05 -0800,2652,8077 +11829,3970.0000000000005,2013-11-08 03:29:36 -0800,2652,8078 +11830,8869.0,2013-11-11 07:26:37 -0800,2652,8078 +11831,6866.0,2013-11-11 14:59:00 -0800,2652,8077 +11832,5650.0,2013-11-11 06:49:11 -0800,2653,8080 +11833,4511.0,2013-11-09 12:08:15 -0800,2653,8079 +11834,7068.000000000001,2013-11-12 06:27:48 -0800,2654,8082 +11835,4195.0,2013-11-09 09:04:50 -0800,2654,8084 +11836,7481.0,2013-11-09 10:54:47 -0800,2654,8081 +11837,4556.0,2013-11-06 20:09:08 -0800,2654,8084 +11838,549.0,2013-11-12 10:47:42 -0800,2654,8082 +11839,1425.0,2013-11-09 20:14:10 -0800,2655,8085 +11840,5394.0,2013-11-06 13:47:03 -0800,2655,8086 +11841,2650.0,2013-11-11 17:14:17 -0800,2655,8086 +11842,5369.0,2013-11-07 15:05:07 -0800,2655,8086 +11843,1486.0,2013-11-07 13:39:24 -0800,2655,8086 +11844,8162.0,2013-11-09 08:18:18 -0800,2655,8086 +11845,1169.0,2013-11-12 14:31:55 -0800,2655,8086 +11846,2122.0,2013-11-09 00:45:24 -0800,2655,8085 +11847,8450.0,2013-11-07 16:01:46 -0800,2655,8086 +11848,5054.0,2013-11-07 02:14:41 -0800,2656,8087 +11849,5249.0,2013-11-08 16:17:59 -0800,2656,8087 +11850,2926.0,2013-11-09 17:53:15 -0800,2656,8089 +11851,248.0,2013-11-11 16:50:53 -0800,2656,8087 +11852,6045.0,2013-11-13 07:01:02 -0800,2656,8089 +11853,811.0,2013-11-09 21:15:42 -0800,2656,8087 +11854,118.0,2013-11-10 03:51:00 -0800,2656,8087 +11855,3996.0,2013-11-11 05:47:17 -0800,2657,8090 +11856,896.0000000000001,2013-11-07 08:36:40 -0800,2657,8091 +11857,6013.0,2013-11-08 11:40:10 -0800,2657,8091 +11858,1378.0,2013-11-07 08:18:57 -0800,2657,8090 +11859,8888.0,2013-11-08 03:35:43 -0800,2657,8091 +11860,2575.0,2013-11-07 22:39:50 -0800,2657,8091 +11861,1778.0,2013-11-11 22:50:09 -0800,2657,8090 +11862,1563.0,2013-11-08 02:44:02 -0800,2657,8091 +11863,4940.0,2013-11-07 09:52:58 -0800,2657,8091 +11864,3050.0,2013-11-10 08:45:20 -0800,2658,8092 +11865,772.0,2013-11-12 04:11:18 -0800,2658,8092 +11866,9578.0,2013-11-09 04:30:37 -0800,2658,8092 +11867,5797.0,2013-11-10 20:50:51 -0800,2658,8092 +11868,7145.999999999999,2013-11-09 20:58:32 -0800,2658,8092 +11869,4987.0,2013-11-11 15:37:28 -0800,2658,8092 +11870,8250.0,2013-11-12 00:07:41 -0800,2658,8092 +11871,222.00000000000003,2013-11-12 20:47:51 -0800,2658,8092 +11872,56.00000000000001,2013-11-10 07:48:56 -0800,2658,8092 +11873,1384.0,2013-11-09 12:42:01 -0800,2659,8093 +11874,4891.0,2013-11-12 21:44:04 -0800,2660,8097 +11875,1620.0,2013-11-12 02:08:38 -0800,2660,8097 +11876,9285.0,2013-11-10 19:52:52 -0800,2660,8098 +11877,5343.0,2013-11-10 02:41:11 -0800,2660,8097 +11878,6396.0,2013-11-10 04:24:29 -0800,2660,8099 +11879,9430.0,2013-11-08 12:27:10 -0800,2660,8096 +11880,7840.000000000001,2013-11-07 12:16:56 -0800,2660,8099 +11881,9290.0,2013-11-12 18:06:13 -0800,2661,8100 +11882,4932.0,2013-11-13 01:43:03 -0800,2661,8102 +11883,3697.0,2013-11-09 19:40:31 -0800,2662,8103 +11884,9268.0,2013-11-10 02:17:52 -0800,2662,8103 +11885,1227.0,2013-11-12 14:39:51 -0800,2663,8106 +11886,1360.0,2013-11-13 05:40:10 -0800,2663,8104 +11887,4480.0,2013-11-10 13:49:56 -0800,2663,8105 +11888,7328.0,2013-11-12 02:22:44 -0800,2665,8113 +11889,1392.0,2013-11-11 15:24:28 -0800,2666,8117 +11890,1469.0,2013-11-12 07:58:33 -0800,2666,8117 +11891,543.0,2013-11-07 10:58:23 -0800,2667,8118 +11892,3264.0,2013-11-08 17:59:35 -0800,2667,8120 +11893,5581.0,2013-11-07 07:40:49 -0800,2667,8118 +11894,3023.0,2013-11-10 09:07:24 -0800,2667,8119 +11895,7923.999999999999,2013-11-08 14:56:29 -0800,2667,8120 +11896,4064.0,2013-11-12 01:00:40 -0800,2667,8119 +11897,4112.0,2013-11-07 12:33:10 -0800,2668,8122 +11898,7089.0,2013-11-12 01:04:51 -0800,2669,8126 +11899,1836.0,2013-11-08 09:28:37 -0800,2669,8124 +11900,741.0,2013-11-13 07:13:59 -0800,2669,8125 +11901,6512.0,2013-11-06 14:18:59 -0800,2669,8126 +11902,6374.0,2013-11-08 12:38:53 -0800,2669,8124 +11903,9636.0,2013-11-13 03:11:06 -0800,2669,8124 +11904,275.0,2013-11-12 20:50:32 -0800,2669,8128 +11905,7934.0,2013-11-11 18:56:01 -0800,2670,8129 +11906,1426.0,2013-11-09 21:12:11 -0800,2670,8129 +11907,519.0,2013-11-06 23:56:08 -0800,2670,8129 +11908,7373.0,2013-11-09 15:30:51 -0800,2670,8129 +11909,56.99999999999999,2013-11-07 10:49:25 -0800,2670,8129 +11910,5930.0,2013-11-11 18:11:17 -0800,2670,8129 +11911,6323.0,2013-11-09 17:18:25 -0800,2670,8129 +11912,3684.0000000000005,2013-11-07 14:31:39 -0800,2670,8129 +11913,9894.0,2013-11-07 16:20:35 -0800,2670,8129 +11914,770.0,2013-11-12 16:35:35 -0800,2671,8130 +11915,942.0,2013-11-06 10:15:34 -0800,2671,8130 +11916,7937.0,2013-11-07 07:51:13 -0800,2671,8130 +11917,4470.0,2013-11-10 21:29:05 -0800,2672,8131 +11918,7875.0,2013-11-11 10:37:22 -0800,2672,8133 +11919,9718.0,2013-11-07 07:39:14 -0800,2672,8133 +11920,9777.0,2013-11-12 21:11:52 -0800,2672,8131 +11921,4035.0,2013-11-07 18:18:00 -0800,2672,8131 +11922,8279.0,2013-11-08 01:46:03 -0800,2672,8131 +11923,5582.0,2013-11-07 23:13:02 -0800,2672,8131 +11924,9500.0,2013-11-07 08:19:25 -0800,2672,8133 +11925,7247.0,2013-11-09 23:28:12 -0800,2673,8136 +11926,7243.000000000001,2013-11-07 21:01:27 -0800,2673,8136 +11927,1398.0,2013-11-06 20:31:05 -0800,2673,8136 +11928,1976.0000000000002,2013-11-06 19:52:58 -0800,2673,8136 +11929,5817.0,2013-11-07 20:36:43 -0800,2673,8136 +11930,3384.0000000000005,2013-11-10 07:01:13 -0800,2673,8136 +11931,4470.0,2013-11-10 14:36:17 -0800,2673,8135 +11932,6177.0,2013-11-10 13:33:05 -0800,2674,8139 +11933,3997.9999999999995,2013-11-08 08:55:40 -0800,2675,8140 +11934,6728.0,2013-11-10 14:10:14 -0800,2676,8144 +11935,8954.0,2013-11-06 08:37:48 -0800,2676,8144 +11936,7361.0,2013-11-08 15:51:28 -0800,2676,8141 +11937,7378.0,2013-11-12 08:41:09 -0800,2676,8141 +11938,2947.0,2013-11-06 21:45:29 -0800,2676,8144 +11939,2496.0,2013-11-09 12:40:39 -0800,2676,8142 +11940,1294.0,2013-11-08 04:28:50 -0800,2677,8146 +11941,413.99999999999994,2013-11-09 18:54:08 -0800,2677,8146 +11942,4310.0,2013-11-07 00:52:44 -0800,2677,8147 +11943,1584.0,2013-11-08 23:56:22 -0800,2677,8145 +11944,8685.0,2013-11-07 00:53:55 -0800,2677,8145 +11945,180.0,2013-11-13 04:07:42 -0800,2678,8150 +11946,8353.0,2013-11-13 01:54:30 -0800,2679,8153 +11947,6839.0,2013-11-08 13:22:10 -0800,2679,8153 +11948,6880.0,2013-11-12 01:20:36 -0800,2680,8157 +11949,2656.0,2013-11-11 11:11:53 -0800,2680,8159 +11950,7190.000000000001,2013-11-09 06:56:49 -0800,2680,8156 +11951,1721.0,2013-11-07 00:05:57 -0800,2680,8157 +11952,9419.0,2013-11-10 20:33:33 -0800,2680,8157 +11953,3794.0,2013-11-10 12:57:44 -0800,2680,8157 +11954,199.0,2013-11-13 07:47:58 -0800,2680,8158 +11955,2535.0,2013-11-10 20:06:28 -0800,2680,8159 +11956,4833.0,2013-11-11 15:22:21 -0800,2680,8158 +11957,8998.0,2013-11-11 18:35:08 -0800,2681,8161 +11958,4260.0,2013-11-07 12:36:17 -0800,2681,8161 +11959,2455.0,2013-11-08 19:55:09 -0800,2683,8168 +11960,3071.0,2013-11-07 00:32:21 -0800,2683,8169 +11961,3954.9999999999995,2013-11-09 10:50:58 -0800,2683,8167 +11962,1670.0,2013-11-10 01:18:52 -0800,2683,8169 +11963,2225.0,2013-11-11 19:04:43 -0800,2683,8166 +11964,3690.0,2013-11-08 06:32:45 -0800,2683,8167 +11965,3198.0,2013-11-12 19:19:25 -0800,2683,8166 +11966,419.00000000000006,2013-11-09 20:35:48 -0800,2683,8168 +11967,5050.0,2013-11-10 19:26:51 -0800,2683,8166 +11968,8031.0,2013-11-09 11:25:11 -0800,2684,8170 +11969,8660.0,2013-11-12 02:33:57 -0800,2684,8171 +11970,9264.0,2013-11-13 03:48:40 -0800,2684,8171 +11971,3219.0,2013-11-10 23:32:55 -0800,2684,8171 +11972,153.0,2013-11-13 06:41:44 -0800,2684,8170 +11973,1669.0000000000002,2013-11-06 22:57:35 -0800,2684,8170 +11974,4231.0,2013-11-07 12:52:04 -0800,2684,8170 +11975,4950.0,2013-11-06 13:32:09 -0800,2684,8170 +11976,6028.0,2013-11-12 16:03:57 -0800,2684,8170 +11977,7338.0,2013-11-08 10:17:41 -0800,2685,8174 +11978,3815.9999999999995,2013-11-10 12:01:17 -0800,2685,8173 +11979,2836.0,2013-11-12 10:47:19 -0800,2685,8173 +11980,8951.0,2013-11-06 20:30:41 -0800,2686,8178 +11981,7994.0,2013-11-13 03:26:16 -0800,2686,8177 +11982,7718.000000000001,2013-11-08 16:46:07 -0800,2686,8178 +11983,3000.0,2013-11-09 11:57:46 -0800,2686,8177 +11984,5200.0,2013-11-07 02:05:10 -0800,2686,8178 +11985,1816.0,2013-11-08 19:06:17 -0800,2686,8177 +11986,2362.0,2013-11-11 09:59:17 -0800,2687,8179 +11987,6113.0,2013-11-07 14:41:55 -0800,2687,8179 +11988,5419.0,2013-11-13 05:44:27 -0800,2687,8179 +11989,4751.0,2013-11-09 14:50:31 -0800,2687,8179 +11990,6291.0,2013-11-12 10:45:52 -0800,2687,8179 +11991,7440.000000000001,2013-11-07 06:41:43 -0800,2687,8179 +11992,7050.0,2013-11-09 06:09:13 -0800,2687,8179 +11993,5127.0,2013-11-13 04:40:49 -0800,2688,8182 +11994,222.00000000000003,2013-11-07 18:21:32 -0800,2688,8182 +11995,6321.0,2013-11-10 07:40:43 -0800,2688,8181 +11996,5139.0,2013-11-11 12:03:31 -0800,2688,8182 +11997,3184.0,2013-11-11 11:44:40 -0800,2688,8180 +11998,1572.0,2013-11-12 22:23:49 -0800,2688,8180 +11999,3793.0,2013-11-10 00:44:52 -0800,2689,8188 +12000,7773.999999999999,2013-11-10 22:35:57 -0800,2690,8193 +12001,8923.0,2013-11-12 02:03:31 -0800,2690,8192 diff --git a/support/real_vendors.csv b/support/real_vendors.csv new file mode 100644 index 00000000..20075ff9 --- /dev/null +++ b/support/real_vendors.csv @@ -0,0 +1,2690 @@ +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,Bernier Inc,1,12 +52,Dicki LLC,4,12 +53,"Grady, Runte and Hauck",9,12 +54,Bayer Inc,3,13 +55,Toy and Sons,4,13 +56,Dibbert Inc,10,13 +57,Parker-Thiel,4,13 +58,"Greenholt, Will and Grant",10,13 +59,Wolf and Sons,3,13 +60,Schimmel and Sons,2,13 +61,Ondricka-Wunsch,1,14 +62,"Hoeger, Hoeger and Grady",10,14 +63,Bosco-Schinner,6,14 +64,"Larson, Mosciski and Murazik",6,14 +65,Grady-Senger,4,14 +66,Reilly-Howell,8,14 +67,Farrell-Altenwerth,4,14 +68,"Schowalter, Runolfsson and Muller",1,14 +69,Emard-Streich,5,15 +70,Eichmann Group,8,16 +71,"Spinka, Russel and Smith",1,16 +72,Bartoletti-Parker,1,16 +73,Renner-Wolff,3,16 +74,Haag-Padberg,3,17 +75,"O'Reilly, Hirthe and Hayes",9,17 +76,Mante Group,6,17 +77,"Howe, Swaniawski and Hand",10,17 +78,"Howell, McCullough and Wisozk",10,17 +79,Gleichner-Hermann,3,17 +80,Boyle-Hessel,3,17 +81,Hirthe and Sons,3,17 +82,"Murazik, Stoltenberg and Pfannerstill",11,18 +83,Lindgren and Sons,9,18 +84,Spinka Inc,4,18 +85,"Satterfield, Reilly and Hudson",1,18 +86,Purdy-Kerluke,5,18 +87,Goyette Inc,1,18 +88,Kuvalis Inc,7,18 +89,"Kling, Dicki and Murphy",3,18 +90,"Hoeger, Schulist and Medhurst",8,18 +91,"Dickens, Lubowitz and Emard",8,18 +92,"Schumm, Schneider and Schuppe",4,19 +93,Farrell-Davis,5,19 +94,Strosin and Sons,1,19 +95,Gorczany and Sons,3,19 +96,"Ortiz, Beatty and Kulas",8,19 +97,Gerhold Inc,11,19 +98,"Mayer, Streich and Schmeler",11,19 +99,Bahringer-Zieme,8,19 +100,"Bernier, Moen and Torp",1,19 +101,"Moen, Thiel and Osinski",3,19 +102,Davis Group,10,20 +103,"Upton, Stanton and Hyatt",2,20 +104,Harris-Monahan,11,20 +105,"Cormier, Roberts and Volkman",6,20 +106,"Beahan, Stiedemann and Hills",11,20 +107,Stroman-Kihn,5,20 +108,Kunde-DuBuque,11,20 +109,Dickinson-D'Amore,5,21 +110,"Jacobson, Kohler and Bode",1,21 +111,Metz and Sons,8,21 +112,"Renner, Aufderhar and MacGyver",11,21 +113,"Schmitt, Brekke and Hoeger",7,21 +114,"Hammes, Greenholt and Wyman",1,21 +115,Parisian and Sons,4,21 +116,Schoen-Effertz,5,21 +117,Walker-O'Keefe,1,21 +118,"Swift, Waelchi and Kemmer",10,21 +119,"Kulas, King and Kohler",1,22 +120,Smith Group,8,23 +121,"Friesen, Schiller and Leuschke",5,23 +122,Macejkovic and Sons,6,23 +123,Donnelly Inc,9,23 +124,Langworth-Mitchell,3,23 +125,"Durgan, Heller and Greenfelder",8,23 +126,"Kshlerin, Nader and Windler",5,24 +127,"Bins, Rice and McClure",8,24 +128,Kozey Inc,6,24 +129,"Collier, Wolff and Crist",4,24 +130,Hilll Group,6,24 +131,"Bayer, Renner and Terry",9,24 +132,Nikolaus-Emmerich,10,24 +133,Wehner LLC,5,24 +134,"Lubowitz, Wolff and Doyle",4,24 +135,Mayer LLC,4,24 +136,Jacobson-Jacobi,6,25 +137,"Schaefer, Boehm and Kreiger",1,25 +138,Jacobson Inc,11,25 +139,Runolfsdottir-Powlowski,11,25 +140,Jones-Abshire,2,26 +141,"Marks, Beer and Monahan",4,26 +142,Feeney Group,8,26 +143,"Torphy, Koepp and Hintz",11,26 +144,"Mills, Kemmer and Mertz",11,26 +145,"Hills, Fisher and Brakus",9,26 +146,Collins-Stanton,11,26 +147,"Bailey, Davis and McClure",2,26 +148,"Cronin, Luettgen and Effertz",10,26 +149,Flatley-Cremin,7,27 +150,Fay-Marvin,2,27 +151,"Hermiston, Prosacco and Durgan",10,27 +152,Waelchi-Rodriguez,11,27 +153,Ortiz-Gutmann,6,28 +154,Rohan-Roob,10,28 +155,Pfannerstill Group,7,28 +156,Rutherford-Volkman,10,28 +157,Davis Inc,8,29 +158,"Greenfelder, Ebert and Wyman",2,29 +159,Ullrich LLC,10,29 +160,Nolan Inc,9,29 +161,"Franecki, Lueilwitz and Hessel",9,29 +162,"Donnelly, Bernier and Waelchi",4,29 +163,Gleichner and Sons,2,30 +164,Heathcote Group,9,31 +165,Larkin-Bergstrom,7,31 +166,Casper-Schuppe,11,31 +167,"Stanton, Strosin and Rogahn",8,32 +168,"Powlowski, Rosenbaum and Funk",7,32 +169,Schamberger Inc,3,32 +170,Terry-Moen,8,32 +171,Kutch Group,10,33 +172,Upton-Larkin,2,33 +173,Schroeder-Beahan,11,33 +174,Wintheiser Group,10,33 +175,Eichmann-Rodriguez,6,33 +176,Grady Group,5,33 +177,Gulgowski-Dietrich,6,33 +178,Nikolaus Inc,9,33 +179,"Koch, Purdy and Hamill",7,33 +180,Murphy-Howe,1,33 +181,Weissnat LLC,3,34 +182,"Funk, Medhurst and Abshire",10,34 +183,Abernathy-Towne,11,34 +184,Hilpert Inc,3,34 +185,Bartell-Bartoletti,6,34 +186,Osinski Inc,10,34 +187,Kuhn-Roob,7,34 +188,Kerluke Group,6,34 +189,"Osinski, Ryan and Johnston",4,34 +190,"Douglas, Lesch and Kuphal",1,35 +191,Osinski-Volkman,10,36 +192,"Legros, Hamill and Haag",10,36 +193,Von-Bartoletti,3,36 +194,McKenzie and Sons,2,36 +195,Sipes Group,4,37 +196,Rath-Muller,2,38 +197,Larson Inc,8,38 +198,Miller-Davis,6,38 +199,"Schaefer, Roob and Schumm",7,38 +200,Pollich-Towne,6,39 +201,Miller Group,10,39 +202,Kerluke LLC,6,39 +203,Kreiger-Crona,8,40 +204,Gerlach-Hodkiewicz,10,40 +205,"Tremblay, Rosenbaum and Gleason",3,40 +206,Donnelly-Mosciski,2,40 +207,"Jaskolski, Borer and Hyatt",2,40 +208,"Bailey, Konopelski and Jerde",4,41 +209,"Jast, D'Amore and Collier",5,41 +210,Rolfson-Vandervort,2,41 +211,Mertz Group,2,42 +212,Towne Group,8,42 +213,Kemmer Group,8,42 +214,"Bode, Gleason and Zieme",4,42 +215,O'Conner Inc,1,42 +216,Grant-Robel,5,42 +217,Frami and Sons,5,42 +218,"Bernier, Hermiston and Kuphal",6,42 +219,Gleason Group,7,42 +220,"Abshire, Orn and Torp",1,43 +221,Osinski-Schuster,7,43 +222,"Green, Goodwin and Kiehn",1,43 +223,Torp Group,11,43 +224,Labadie and Sons,6,43 +225,Renner Inc,1,43 +226,Hills-Swaniawski,9,43 +227,Rempel Group,3,44 +228,"Gerlach, Gaylord and Strosin",3,44 +229,Larkin-Friesen,6,45 +230,"Stanton, Emard and Metz",11,45 +231,Schaden-Jones,4,45 +232,"Goodwin, Sanford and Weber",10,45 +233,"Marquardt, Eichmann and Lang",7,45 +234,Wintheiser and Sons,10,45 +235,"Anderson, Reynolds and Bode",1,46 +236,Powlowski-Kemmer,10,46 +237,Klein Group,5,47 +238,West Inc,1,47 +239,"Keeling, Abernathy and DuBuque",1,47 +240,Buckridge-Schmitt,4,47 +241,"Kutch, Satterfield and Jacobson",7,47 +242,"Champlin, Halvorson and Medhurst",7,47 +243,Aufderhar-Paucek,9,48 +244,Zulauf Group,3,48 +245,Hyatt-Robel,5,48 +246,Lowe-Willms,5,48 +247,Mills-Beier,11,48 +248,Marvin LLC,4,48 +249,Torp-DuBuque,1,48 +250,Skiles Group,7,48 +251,Howe-Mertz,7,49 +252,Lubowitz Group,3,49 +253,Kuhlman and Sons,2,49 +254,Renner Inc,2,49 +255,Greenfelder LLC,7,49 +256,Grimes Inc,11,49 +257,Ritchie LLC,10,49 +258,Wuckert LLC,2,49 +259,Windler Inc,6,50 +260,Roberts LLC,9,50 +261,Greenfelder Inc,4,50 +262,Stanton and Sons,6,50 +263,"Thompson, Stracke and Connelly",2,50 +264,Ziemann-Emmerich,2,50 +265,Dach LLC,6,50 +266,"Walker, Wolff and Leuschke",2,50 +267,Gibson-Von,10,50 +268,"Ward, Hirthe and Johns",8,50 +269,Daniel-Gusikowski,5,51 +270,"Rice, Bartell and Shields",8,52 +271,"Konopelski, Block and Krajcik",9,52 +272,Hauck-Hammes,7,52 +273,"Johns, Pouros and Pouros",11,52 +274,"Kling, Rempel and Gerhold",2,52 +275,Beer-Skiles,8,52 +276,"Veum, Padberg and Berge",2,52 +277,"Waters, Daugherty and Walter",3,52 +278,Heathcote Group,2,52 +279,Strosin Group,8,53 +280,Marks Group,7,53 +281,Veum Inc,9,53 +282,Mohr-Funk,5,53 +283,Fay-Gerhold,3,53 +284,Gusikowski and Sons,8,53 +285,"Steuber, Larkin and Beer",3,53 +286,Leffler-Bernier,3,53 +287,Friesen-Schultz,11,54 +288,"Haley, Padberg and Rosenbaum",7,54 +289,"Klocko, Von and Cassin",1,54 +290,Senger-Gleichner,3,54 +291,Goodwin-Lueilwitz,1,54 +292,"Streich, Roob and Pfeffer",4,54 +293,Kerluke-Denesik,11,54 +294,Denesik and Sons,10,54 +295,Douglas LLC,1,55 +296,"Durgan, West and Muller",7,55 +297,Stamm and Sons,11,55 +298,Frami Group,2,55 +299,Reilly-Bernhard,11,55 +300,"Mayer, O'Kon and Cummerata",2,55 +301,Zulauf and Sons,4,56 +302,"Swaniawski, Donnelly and Watsica",7,56 +303,O'Keefe Group,2,56 +304,"Mante, Will and Lindgren",3,56 +305,Kuhlman-Spencer,10,56 +306,Rippin-Nader,3,56 +307,Mosciski-Casper,4,56 +308,Abbott Group,9,56 +309,Wuckert-Weimann,9,56 +310,"Durgan, D'Amore and Hilpert",9,56 +311,Hettinger Inc,8,57 +312,Williamson LLC,10,58 +313,Kuphal-Connelly,1,58 +314,"Cremin, Beahan and Lind",5,58 +315,"Heaney, Christiansen and Heaney",9,58 +316,Swift and Sons,6,58 +317,"Koelpin, Doyle and Wuckert",3,58 +318,Hane and Sons,10,58 +319,Volkman-Kuphal,6,58 +320,Price-Larson,1,58 +321,"Toy, Lueilwitz and Maggio",10,59 +322,"Kuvalis, Zemlak and Kunde",7,59 +323,"O'Hara, Beer and Larkin",5,59 +324,Marks-Stroman,4,59 +325,Hammes-Borer,7,59 +326,Green Inc,8,59 +327,"Denesik, Dach and Stamm",4,59 +328,"Kirlin, Hickle and Murray",8,60 +329,Rath Group,11,60 +330,Paucek-McCullough,6,60 +331,"Funk, Bayer and Walter",4,60 +332,Rogahn-Mosciski,10,60 +333,Fritsch-Cummings,7,60 +334,"Nolan, Rolfson and Hoeger",8,61 +335,Pfeffer LLC,5,61 +336,Gleichner LLC,1,62 +337,Sporer Inc,5,62 +338,Stiedemann-Hamill,1,62 +339,Sawayn-Bednar,3,62 +340,"Lesch, Emard and Schroeder",11,62 +341,Koelpin LLC,7,62 +342,Metz Group,8,62 +343,Johns and Sons,3,63 +344,Price Group,3,63 +345,Krajcik and Sons,8,63 +346,"Schaefer, Hudson and Bosco",10,63 +347,Nienow Group,5,63 +348,Denesik Inc,5,63 +349,"Hammes, Streich and Hoeger",2,63 +350,Leuschke-Kerluke,10,64 +351,"Koch, Sawayn and Moen",7,65 +352,Harris and Sons,1,66 +353,"Sawayn, Abernathy and Donnelly",2,66 +354,Hegmann-Jacobs,8,66 +355,Terry-Bergnaum,9,66 +356,"Rempel, Tromp and Lebsack",9,66 +357,Grady-Walker,9,66 +358,Strosin and Sons,2,66 +359,Collier Group,9,66 +360,"Von, Turner and Cummings",5,66 +361,Kuphal-Hammes,2,67 +362,Borer Group,7,67 +363,Fahey-Littel,2,67 +364,"Harber, Spinka and Larkin",9,67 +365,Schmeler Inc,10,67 +366,Goldner-Gerhold,1,67 +367,"Connelly, Hilll and Wolf",2,68 +368,"Abbott, Volkman and Bins",2,68 +369,"Witting, Collier and Feil",4,68 +370,Corkery and Sons,8,68 +371,O'Hara LLC,6,68 +372,Grady-Jakubowski,2,68 +373,"Becker, Hane and Conn",10,68 +374,Morar-Tromp,8,68 +375,Schaefer-Lehner,11,68 +376,Schaden Group,10,69 +377,"Kirlin, Dickens and Von",11,69 +378,Schmeler and Sons,3,69 +379,"Pagac, Langosh and Bogan",2,69 +380,Bernier-Schoen,9,69 +381,"Auer, Senger and Legros",9,69 +382,Schaefer Inc,11,69 +383,Ruecker and Sons,2,69 +384,Bins-Dickens,10,69 +385,Cronin-Feeney,9,69 +386,"Crooks, Cruickshank and Keeling",6,70 +387,Hackett Inc,6,70 +388,Gerlach-Kunde,10,70 +389,Fritsch-Hamill,3,70 +390,Grimes Group,4,70 +391,White-Steuber,3,71 +392,"Toy, Krajcik and Bashirian",7,71 +393,Upton and Sons,2,71 +394,Weimann and Sons,11,71 +395,"Champlin, Romaguera and Yost",2,72 +396,Herman and Sons,9,72 +397,"Reichert, Stracke and Block",1,72 +398,"Balistreri, Smith and Sawayn",8,72 +399,Hettinger Inc,3,72 +400,Howe LLC,8,73 +401,Oberbrunner-Feest,4,74 +402,Haley-Ortiz,1,75 +403,Kuhic LLC,11,75 +404,Considine-Hauck,8,75 +405,Hintz Group,7,76 +406,"Torphy, Hyatt and Greenholt",1,77 +407,"Schroeder, Jacobs and Nicolas",11,77 +408,Luettgen-Feest,5,77 +409,Christiansen and Sons,6,77 +410,"Klocko, Yost and Wunsch",8,78 +411,"Padberg, Block and Rodriguez",8,79 +412,"Davis, Gerhold and Heaney",5,79 +413,DuBuque Group,4,79 +414,Hintz and Sons,11,79 +415,Pouros-Effertz,9,79 +416,Carroll LLC,8,79 +417,MacGyver-Von,2,79 +418,"Lesch, Block and Zieme",10,79 +419,Streich LLC,9,79 +420,Goldner and Sons,11,80 +421,Abernathy-Kohler,4,80 +422,Hauck-Marquardt,7,81 +423,"McGlynn, Osinski and Morissette",10,81 +424,Hintz LLC,4,81 +425,"Stehr, Mante and Pouros",3,81 +426,O'Kon Inc,1,81 +427,Fay-Kris,7,81 +428,Zboncak LLC,7,81 +429,O'Conner-Turcotte,8,81 +430,Bins and Sons,6,81 +431,"Kutch, Parker and Sipes",7,82 +432,"Borer, Ernser and Spencer",4,82 +433,"Beatty, Cole and Dibbert",11,82 +434,McDermott-Durgan,7,82 +435,Kertzmann Inc,7,82 +436,Dickinson-Grant,2,82 +437,Cole Group,9,82 +438,Dibbert-Raynor,1,82 +439,"Quigley, Williamson and Nicolas",7,83 +440,Heathcote LLC,5,83 +441,Champlin-Gerhold,10,83 +442,"Beer, Wisoky and Boehm",3,83 +443,Bernier-Torp,3,83 +444,Rempel and Sons,3,83 +445,Streich-Yost,11,83 +446,"Schroeder, Stracke and Flatley",3,83 +447,Ledner and Sons,5,83 +448,"Walsh, O'Connell and Schmeler",5,83 +449,"Harris, Farrell and Heaney",7,84 +450,Schumm-Bogisich,3,84 +451,"Turcotte, Bayer and Labadie",5,84 +452,"Kris, Streich and Rohan",4,84 +453,Sauer-Haag,8,84 +454,Gerhold-Boyer,7,84 +455,"Bins, Jaskolski and Kutch",6,84 +456,Goldner Inc,3,85 +457,Ebert-Schaefer,7,85 +458,"Ward, Bayer and Lockman",10,85 +459,Luettgen-Koss,5,85 +460,Lynch Inc,5,85 +461,Sipes-Howell,9,86 +462,"Thiel, Carter and Heathcote",10,86 +463,Hegmann LLC,5,86 +464,Gutkowski Group,7,86 +465,Lebsack Inc,10,86 +466,Runte and Sons,4,86 +467,"Howe, Auer and Altenwerth",9,87 +468,Cassin Group,8,88 +469,Miller Inc,5,89 +470,Deckow Group,7,89 +471,Mohr-Yost,5,89 +472,"Dibbert, Jones and Schroeder",9,89 +473,Zulauf-Morissette,1,89 +474,Sawayn Inc,7,89 +475,Johnston Inc,6,89 +476,Mann-Stanton,3,90 +477,"Hamill, Gislason and Schowalter",5,90 +478,Rosenbaum-Jast,4,90 +479,Ullrich Group,3,90 +480,"Gutkowski, Kutch and Batz",7,90 +481,Kerluke LLC,9,90 +482,"Greenfelder, Schulist and Feest",4,90 +483,Wisoky Group,6,91 +484,Moen LLC,6,91 +485,Douglas LLC,3,91 +486,Harris Inc,7,91 +487,"Torphy, Baumbach and Kilback",9,91 +488,Keeling Group,1,91 +489,O'Connell Group,7,91 +490,Feest-Ledner,4,91 +491,Dickinson Group,7,91 +492,Mante-Olson,11,91 +493,Dickinson Inc,7,92 +494,"Lang, Jaskolski and Schuppe",2,92 +495,"Kub, Jenkins and Price",7,92 +496,"Cruickshank, Feeney and Emmerich",8,93 +497,Huels-Kunde,3,93 +498,"Breitenberg, Conroy and Lynch",10,93 +499,Feeney-Torp,10,93 +500,Hagenes-Hudson,5,93 +501,"Upton, DuBuque and Pfannerstill",8,93 +502,Murphy-Harvey,3,94 +503,"Weimann, Buckridge and Hilll",8,94 +504,Parker-Frami,11,94 +505,Howe LLC,1,95 +506,Tillman-Schaden,5,95 +507,Volkman and Sons,6,95 +508,Larkin-Bergnaum,11,95 +509,Volkman Inc,2,96 +510,"Parker, Weber and Grimes",2,97 +511,Parisian Group,4,97 +512,Nikolaus Inc,10,97 +513,Hintz-Blanda,5,97 +514,Robel-Shields,3,98 +515,Wunsch Inc,2,99 +516,"Welch, Murphy and Jast",8,99 +517,"Ernser, Becker and Rutherford",6,99 +518,Williamson-Doyle,9,99 +519,Schumm-Murphy,11,99 +520,Schiller-Ledner,5,100 +521,Volkman-Ziemann,4,100 +522,"Feil, Predovic and Welch",7,100 +523,Gusikowski-Hartmann,5,100 +524,Reichert and Sons,4,100 +525,Kunze Inc,5,100 +526,Reichel and Sons,3,101 +527,Cormier Group,7,101 +528,"Gutkowski, Kuhn and Rice",3,101 +529,"VonRueden, Lubowitz and Bins",11,102 +530,Marquardt and Sons,6,102 +531,Wuckert Inc,11,102 +532,Kerluke-Kerluke,9,102 +533,Runte-Powlowski,2,102 +534,Crona-Larkin,11,102 +535,Lehner-Leannon,5,102 +536,Jones-Dickinson,7,102 +537,Ratke-Schneider,3,103 +538,Parker-Ryan,1,103 +539,Bins-Lind,6,103 +540,Green-Swaniawski,3,103 +541,Friesen Inc,5,103 +542,Doyle and Sons,7,103 +543,Heidenreich-Wisozk,3,103 +544,Renner-Hessel,9,103 +545,Bergstrom Inc,4,104 +546,Cummings-Yost,11,104 +547,Parisian-Feil,7,104 +548,Erdman and Sons,10,105 +549,"Bergstrom, Rice and Swaniawski",2,105 +550,"Cole, Jones and Weber",2,105 +551,Dooley-Kulas,5,105 +552,Cormier-Conn,2,105 +553,Schaden-Schaefer,10,105 +554,"Harris, Barrows and O'Reilly",3,106 +555,Abshire and Sons,1,106 +556,Hoeger-Nicolas,10,106 +557,King Group,7,106 +558,Corwin-Will,3,106 +559,Feest-Schulist,10,106 +560,Fahey and Sons,11,106 +561,Marquardt LLC,8,106 +562,Borer Inc,11,106 +563,"Ferry, Reinger and Labadie",8,107 +564,Orn LLC,2,107 +565,Reichel Group,2,107 +566,Huels and Sons,5,107 +567,Schumm LLC,7,108 +568,Hoeger-O'Connell,9,108 +569,"Kilback, Hettinger and Kunze",10,108 +570,Hilpert-Roob,7,108 +571,Orn Inc,6,108 +572,Hammes-Welch,10,108 +573,Cassin-Lueilwitz,11,108 +574,Stokes and Sons,3,108 +575,"Batz, Kozey and Stanton",4,108 +576,Dibbert-Parisian,9,108 +577,Shanahan-Dach,9,109 +578,"Langosh, Marks and Stamm",3,109 +579,Hand-Weissnat,2,109 +580,Towne-Krajcik,3,109 +581,"Shanahan, Bogisich and DuBuque",5,109 +582,"Gleichner, Kutch and Lynch",1,109 +583,McCullough-Batz,11,109 +584,Huels LLC,6,109 +585,"Nikolaus, Ankunding and Lueilwitz",2,109 +586,Pagac Inc,4,109 +587,"Beier, Roob and Thiel",8,110 +588,Hyatt Inc,2,111 +589,Kovacek-Pfeffer,3,111 +590,"VonRueden, Jacobi and Bruen",10,112 +591,"Schiller, Roberts and Hudson",4,112 +592,Erdman-Lebsack,9,112 +593,Parker Group,8,112 +594,Carter-Streich,8,112 +595,Bashirian LLC,8,112 +596,Muller-Glover,9,112 +597,Labadie-Bergnaum,11,112 +598,Crist LLC,11,112 +599,Bernier Group,4,113 +600,"Konopelski, Rosenbaum and Schimmel",8,113 +601,"Koch, Strosin and Harber",2,113 +602,"Harris, Altenwerth and Romaguera",3,114 +603,Armstrong-Cassin,2,114 +604,"Walker, Erdman and Kiehn",3,114 +605,Ryan-Marquardt,1,115 +606,Green-Kuhlman,7,115 +607,Stamm Inc,6,115 +608,Pacocha-Kulas,2,116 +609,"Mante, Mayert and Graham",1,116 +610,"Schaden, Stark and Fahey",8,116 +611,Russel-Lowe,1,117 +612,Grady-Hirthe,10,117 +613,"Koch, Sanford and Walker",7,117 +614,Beahan and Sons,10,117 +615,Tremblay-Bergstrom,10,117 +616,"Kemmer, Aufderhar and Bailey",11,117 +617,Hamill-Fadel,9,117 +618,"O'Kon, Crist and Gottlieb",10,117 +619,"Bernhard, Walter and Effertz",11,117 +620,Quigley Group,1,117 +621,Metz and Sons,9,118 +622,Morar Group,6,118 +623,"Rempel, Hills and Schaefer",7,118 +624,"Wintheiser, Wyman and Fahey",10,118 +625,O'Reilly-Smith,9,118 +626,Bauch-Sawayn,4,118 +627,Farrell Inc,10,118 +628,Stark Inc,6,118 +629,Jast LLC,5,118 +630,"Lebsack, Botsford and Runte",5,119 +631,"Abbott, Vandervort and Zulauf",5,119 +632,"Dibbert, O'Reilly and Rowe",4,119 +633,Hills-Stokes,5,119 +634,Mayert Group,4,120 +635,Dicki-Gusikowski,7,120 +636,Kemmer-Corkery,8,120 +637,Windler-Crist,10,120 +638,"Predovic, Ebert and Gutmann",8,121 +639,Swaniawski-Kerluke,8,121 +640,Hegmann Inc,7,121 +641,McKenzie-Hegmann,11,121 +642,"Conn, Hickle and Hermann",9,121 +643,Zulauf Group,10,122 +644,Dare Group,9,122 +645,Bailey Group,9,122 +646,McLaughlin-Lind,9,122 +647,"Sauer, Barton and Huel",10,122 +648,"Rolfson, Schneider and Weissnat",9,122 +649,Becker-Ziemann,9,122 +650,Beer Group,3,122 +651,Fritsch-Emard,2,122 +652,D'Amore Inc,11,122 +653,Nolan Group,6,123 +654,"Runolfsson, Greenholt and Rutherford",1,123 +655,"Daugherty, Bogisich and Crist",8,123 +656,Spinka-Rowe,4,123 +657,Keebler-Kessler,7,123 +658,"Greenholt, Hickle and Kozey",10,123 +659,Baumbach and Sons,6,124 +660,"Roberts, Jast and Cremin",2,125 +661,Kilback Inc,9,125 +662,"Barrows, O'Reilly and Jacobi",9,125 +663,"Simonis, Fay and Abshire",5,125 +664,Fadel LLC,6,125 +665,Reichel Inc,5,125 +666,Johns-West,4,125 +667,Kuhlman and Sons,7,125 +668,Williamson-Bernhard,4,126 +669,"Morar, Armstrong and King",1,126 +670,Grady-Frami,5,127 +671,Beahan Group,10,127 +672,Ullrich-Turner,8,128 +673,Greenholt and Sons,1,128 +674,Mayer-Hammes,11,128 +675,"Weissnat, Jast and Lemke",7,128 +676,"Marquardt, Sipes and McDermott",3,128 +677,Johnson-Sauer,2,128 +678,"Schowalter, Schimmel and Nikolaus",11,129 +679,Kohler-Dooley,3,129 +680,Purdy-Jones,4,129 +681,"Kassulke, Ward and Konopelski",11,129 +682,"Dare, Hane and Okuneva",1,129 +683,"Kshlerin, Swaniawski and Kuhn",5,129 +684,"Streich, Oberbrunner and Greenholt",11,129 +685,"Littel, Dach and Haley",6,129 +686,Satterfield-Carter,6,129 +687,Hermann Inc,10,130 +688,"Bailey, Gislason and Boyle",2,130 +689,Little Inc,6,130 +690,Feeney and Sons,3,130 +691,"DuBuque, Murazik and Hermiston",11,131 +692,Ritchie Group,8,131 +693,Buckridge Inc,8,131 +694,Hackett Inc,2,131 +695,Barrows-Durgan,5,131 +696,"Erdman, Daugherty and Bechtelar",4,131 +697,"Pfannerstill, MacGyver and Hamill",10,131 +698,"Bernhard, Robel and Rodriguez",6,132 +699,Jakubowski LLC,6,132 +700,Von LLC,6,132 +701,Predovic Inc,11,133 +702,Monahan and Sons,10,133 +703,Eichmann-Funk,2,133 +704,Stoltenberg Inc,11,133 +705,"Langworth, Kovacek and Mertz",4,133 +706,"Harvey, Gislason and Corkery",5,133 +707,Bahringer Group,7,134 +708,Wilkinson-Smith,8,134 +709,"Nienow, Ledner and Romaguera",3,134 +710,"Fadel, Nicolas and Doyle",9,134 +711,Dickens and Sons,4,134 +712,DuBuque-Kihn,1,135 +713,Conroy-Schneider,4,135 +714,Jones Group,10,136 +715,"Smith, Koch and McKenzie",2,136 +716,Bradtke and Sons,10,136 +717,"Miller, Medhurst and Watsica",6,136 +718,"Cummings, Satterfield and Lehner",1,136 +719,"Walker, Batz and Moen",7,136 +720,Koss Group,6,136 +721,Jakubowski-Schmeler,5,136 +722,Lockman-Tromp,11,136 +723,"Heller, West and Bergnaum",7,137 +724,"Satterfield, McClure and Schmitt",10,137 +725,"Boehm, Kertzmann and Feest",9,137 +726,"Heidenreich, Roob and Bradtke",1,137 +727,Bartell-Deckow,4,137 +728,Walsh-Welch,10,137 +729,Lehner-Schmeler,5,137 +730,"VonRueden, Rosenbaum and Kihn",9,137 +731,Mann Inc,1,138 +732,Ritchie Inc,2,138 +733,Rogahn LLC,1,138 +734,Cummings-Volkman,11,138 +735,"Hodkiewicz, Hyatt and Hudson",10,138 +736,"Schulist, O'Keefe and Kerluke",1,138 +737,Block-Johnson,6,138 +738,"Schmeler, Doyle and Pouros",6,138 +739,"Sauer, Lindgren and Jenkins",8,138 +740,"Schultz, Reinger and Becker",2,139 +741,Cronin LLC,4,139 +742,"Beer, Heathcote and Leffler",1,139 +743,Ankunding LLC,5,139 +744,Lebsack Inc,1,139 +745,"Fritsch, Grant and Tromp",2,139 +746,Bednar-Donnelly,8,139 +747,Grimes Group,6,139 +748,Kihn-Larkin,8,139 +749,Dach Group,8,139 +750,"King, Murray and Willms",1,140 +751,"Hammes, Kulas and Reynolds",10,140 +752,Kling LLC,2,141 +753,VonRueden-Thompson,1,141 +754,"Cassin, Goyette and Reinger",6,141 +755,Yundt LLC,11,141 +756,"Wolff, King and Goldner",10,141 +757,"Hermann, Steuber and Hudson",7,141 +758,Beier-Bogisich,3,141 +759,Sanford-McClure,4,141 +760,Barrows-Reichert,6,141 +761,Anderson-Kozey,3,142 +762,"Swaniawski, Harvey and Weissnat",6,142 +763,"Jaskolski, Hagenes and Quitzon",2,142 +764,Douglas LLC,5,142 +765,"Auer, Hauck and Hermiston",6,143 +766,Heathcote LLC,10,143 +767,"Willms, Heaney and Kihn",9,143 +768,Bashirian LLC,1,143 +769,"McClure, Bergnaum and Bartell",1,143 +770,Upton Group,5,143 +771,Hane LLC,3,143 +772,Wintheiser-Hackett,1,143 +773,Crona-Gleason,8,143 +774,Wolf-Batz,10,144 +775,"Keeling, O'Kon and Feeney",6,144 +776,Graham-Botsford,7,144 +777,"Bayer, Champlin and Kerluke",9,144 +778,Towne-Mertz,1,144 +779,Sawayn Inc,4,144 +780,"Stehr, Renner and Wilderman",1,145 +781,Conroy-Mosciski,7,145 +782,Hudson-Kshlerin,2,145 +783,Raynor-Nikolaus,6,145 +784,"Hauck, Kuhlman and Grant",11,145 +785,Schneider-Roob,3,145 +786,"Moore, Boyer and Simonis",9,145 +787,Moen Inc,9,146 +788,Dare Group,5,146 +789,Carter-Schneider,10,146 +790,Stark Inc,6,146 +791,Kirlin LLC,4,146 +792,Ernser Inc,5,146 +793,Schiller Group,8,146 +794,Crist Group,10,146 +795,Kertzmann and Sons,2,146 +796,"Roob, Hegmann and Brown",3,147 +797,Kertzmann Group,8,147 +798,Marquardt Inc,2,147 +799,Durgan Inc,1,147 +800,Friesen and Sons,2,147 +801,Crona-Von,3,147 +802,Hackett Group,4,147 +803,Maggio-Kassulke,9,148 +804,Smitham LLC,7,148 +805,Jast-O'Conner,7,149 +806,"Kessler, Mann and Balistreri",5,149 +807,Bergnaum Inc,11,150 +808,"Mohr, Simonis and Ondricka",4,150 +809,Morissette-Streich,9,150 +810,Aufderhar LLC,2,150 +811,"Bode, Reynolds and Ritchie",11,150 +812,"Stamm, Osinski and Bernhard",9,150 +813,Schowalter LLC,7,150 +814,Kuvalis Inc,3,150 +815,Rolfson-Mertz,4,150 +816,Schneider-Abbott,7,150 +817,Brakus-Willms,6,151 +818,Connelly Group,4,151 +819,Graham Inc,9,151 +820,Collier Inc,8,152 +821,Hackett-Osinski,7,152 +822,Bosco and Sons,7,152 +823,"Rohan, Barrows and Marvin",4,152 +824,Lang-Zulauf,7,152 +825,Klocko-O'Reilly,6,153 +826,Eichmann-Homenick,1,153 +827,Gutmann Group,6,153 +828,"Mills, Roberts and Corwin",3,153 +829,Padberg Group,8,154 +830,Kuhlman-Collins,7,154 +831,Moen-Strosin,9,154 +832,"Kutch, O'Reilly and Moen",3,154 +833,O'Connell Inc,2,154 +834,Schuppe LLC,4,154 +835,Murray Inc,9,154 +836,Becker-Kirlin,5,154 +837,Hilll-Terry,9,154 +838,Keebler-Kuphal,10,155 +839,"Rohan, Glover and Swaniawski",8,155 +840,Wehner Inc,2,155 +841,Hoppe LLC,5,155 +842,"Blanda, Reichel and West",10,155 +843,Medhurst and Sons,3,155 +844,Mills-Treutel,9,155 +845,Murphy Inc,5,155 +846,Okuneva-Tromp,2,155 +847,"Huel, Kihn and Farrell",4,156 +848,Johnston LLC,6,156 +849,Greenholt Group,6,156 +850,"Ziemann, O'Conner and Harber",1,157 +851,O'Keefe-Mayert,11,158 +852,Rempel Inc,1,159 +853,Walker LLC,1,159 +854,Rice LLC,2,159 +855,Mertz Inc,11,159 +856,Stamm Inc,5,159 +857,Homenick-Schoen,11,160 +858,"Crona, Jacobi and Streich",8,160 +859,Hintz LLC,11,160 +860,Jaskolski Inc,4,160 +861,"Veum, Waelchi and Fay",11,160 +862,Doyle Inc,3,160 +863,Stiedemann-Kuhic,1,160 +864,"Hackett, West and Goyette",6,160 +865,Satterfield-Von,5,160 +866,Turcotte-Auer,10,161 +867,Murazik-Schinner,5,161 +868,Mayert Inc,5,161 +869,Hyatt Group,8,161 +870,"Larson, McGlynn and Anderson",7,161 +871,"Abernathy, Lowe and Jaskolski",10,161 +872,Feil LLC,4,162 +873,"Rau, Strosin and Kling",2,162 +874,"Adams, Bashirian and Bartell",9,162 +875,Hane-Kilback,4,162 +876,Padberg and Sons,7,162 +877,"Yundt, Wilderman and Casper",11,163 +878,"Tremblay, Bergstrom and Zemlak",3,163 +879,Blanda-Hintz,1,163 +880,Cormier Group,3,163 +881,Schmitt Group,6,163 +882,"Hyatt, Blanda and Davis",3,163 +883,Bergnaum-Beier,2,164 +884,Bauch Inc,1,164 +885,"Dooley, Dickens and Nader",1,164 +886,"Lang, Johnston and Barrows",7,164 +887,Schimmel-Nader,6,164 +888,Hilpert-Langworth,8,165 +889,"Schulist, Goldner and Wilderman",2,165 +890,Dooley-Spinka,8,165 +891,Wisozk-Frami,8,166 +892,Crist-Dach,4,166 +893,Gleichner Inc,3,166 +894,"Cassin, Kemmer and Boyle",7,166 +895,Rosenbaum Inc,11,166 +896,Bode LLC,5,166 +897,"Bradtke, Howell and Lindgren",3,166 +898,Larson and Sons,6,166 +899,Cummings Group,1,167 +900,Keebler-Conroy,9,168 +901,"Streich, Altenwerth and Brown",10,168 +902,"Torphy, O'Hara and Daniel",2,168 +903,Douglas-Miller,8,168 +904,"Johns, Cummings and Hudson",9,168 +905,Skiles-Stoltenberg,7,169 +906,Stehr-Nienow,11,169 +907,Graham-Beer,3,169 +908,Schinner-Cummings,4,169 +909,VonRueden Inc,8,169 +910,"Muller, Jast and Hayes",3,169 +911,Becker-Kassulke,3,169 +912,"Cormier, Walter and Zulauf",10,169 +913,Eichmann LLC,11,170 +914,Wyman-Stamm,4,170 +915,Howell-Harvey,3,170 +916,"Schneider, Zieme and Rippin",9,170 +917,Heaney and Sons,10,170 +918,Brown Inc,10,170 +919,"King, Rohan and Bode",6,170 +920,Toy-Nitzsche,3,170 +921,McKenzie Inc,4,170 +922,Harvey and Sons,2,170 +923,"Hand, Boyer and Wunsch",7,171 +924,Hoeger-Schoen,5,171 +925,Graham-Bergnaum,2,171 +926,Douglas Group,10,171 +927,"Bradtke, Schowalter and O'Hara",10,171 +928,Ritchie-Feil,8,172 +929,Bosco Inc,3,173 +930,"Balistreri, Lind and Osinski",4,173 +931,Turner-Waelchi,7,173 +932,"Wyman, Wilderman and Terry",1,173 +933,Farrell-Bayer,6,173 +934,Kautzer Group,2,173 +935,Hills LLC,11,173 +936,Reinger-Price,10,173 +937,"Bosco, Schmeler and Schultz",3,173 +938,Sipes Group,5,174 +939,"Sawayn, Morissette and Bartoletti",11,174 +940,"Kulas, Ruecker and Bogisich",5,174 +941,"Kuhn, Schimmel and Ebert",11,174 +942,Kulas Inc,2,174 +943,Hudson-Wunsch,9,174 +944,"Spencer, Ondricka and Romaguera",6,174 +945,"Orn, Gusikowski and Reilly",7,174 +946,Abbott Inc,8,174 +947,Green-Daniel,4,175 +948,"Stiedemann, Miller and Hahn",2,175 +949,"Swaniawski, Jaskolski and Ullrich",1,175 +950,Ward-Marquardt,9,175 +951,Blanda and Sons,3,175 +952,Bosco LLC,5,175 +953,"Becker, Boyle and Langworth",7,176 +954,"Waelchi, Daniel and O'Hara",2,176 +955,McCullough Group,10,176 +956,Hoppe-Mayert,7,176 +957,Murazik LLC,7,176 +958,"Pagac, White and O'Kon",5,176 +959,Stoltenberg Group,7,176 +960,Larson-Dach,4,176 +961,Hintz Inc,4,176 +962,"Prosacco, Streich and Howe",1,177 +963,Bradtke Inc,7,177 +964,Hermiston Group,10,177 +965,"Stokes, Pollich and Klocko",11,177 +966,"Schuster, Marquardt and D'Amore",5,177 +967,Grant Inc,8,177 +968,"Heller, Reinger and Hartmann",1,177 +969,MacGyver-Wyman,7,177 +970,"Marvin, Haag and Little",11,177 +971,"Wunsch, Runte and Langosh",2,178 +972,Kiehn Inc,8,178 +973,Flatley Group,7,178 +974,Maggio LLC,6,178 +975,Lebsack-Hayes,11,178 +976,"Johns, Hessel and Kunze",7,178 +977,Gorczany Group,6,178 +978,Dickinson-Rohan,9,178 +979,Stanton LLC,10,179 +980,"Ruecker, Lubowitz and D'Amore",4,179 +981,Hermann-Hackett,10,179 +982,Sipes-Hegmann,5,179 +983,Homenick LLC,7,179 +984,Hauck-Sipes,4,179 +985,Gerlach-Ritchie,10,179 +986,Schowalter-D'Amore,7,179 +987,Lind-Raynor,6,180 +988,Stracke-Mitchell,5,180 +989,Schamberger LLC,3,180 +990,"Hoppe, Langosh and Wiza",5,180 +991,"Moore, Ferry and Auer",8,181 +992,"Morar, Schmitt and Feil",1,181 +993,Kiehn-Hartmann,4,181 +994,Braun-Prohaska,3,181 +995,Mohr LLC,7,181 +996,Nitzsche Group,11,181 +997,Littel Inc,11,181 +998,Buckridge-Kunde,10,182 +999,"Goldner, Fadel and Berge",1,182 +1000,Hahn-Steuber,3,183 +1001,Batz LLC,10,183 +1002,Jakubowski-McDermott,3,183 +1003,"Emard, Armstrong and Kreiger",11,184 +1004,Nienow-Gleason,8,184 +1005,"Runolfsson, Littel and Paucek",10,184 +1006,Hackett-Doyle,6,184 +1007,Treutel LLC,4,185 +1008,Waelchi and Sons,6,185 +1009,Strosin and Sons,9,185 +1010,Auer LLC,11,185 +1011,"Harvey, Kovacek and Yundt",5,185 +1012,Bode Group,6,185 +1013,"Toy, Thompson and Williamson",2,185 +1014,Brown-Rippin,3,185 +1015,Bartoletti-Grimes,11,185 +1016,Spinka and Sons,4,186 +1017,Aufderhar-Kozey,11,186 +1018,Williamson-Smitham,9,186 +1019,Larkin-Koch,8,187 +1020,"Douglas, Feeney and Von",11,187 +1021,Kunde Group,9,187 +1022,Glover-Schuster,3,187 +1023,Dickinson Group,10,187 +1024,"Tremblay, Monahan and O'Hara",3,188 +1025,Effertz-Howell,9,188 +1026,"Auer, Weimann and Konopelski",4,188 +1027,"Klocko, Hagenes and Wiegand",2,188 +1028,Robel Group,4,188 +1029,"Gorczany, Rodriguez and Harris",5,189 +1030,Williamson-Roob,9,189 +1031,"Ruecker, McKenzie and Bayer",6,189 +1032,"Ziemann, Stehr and Hessel",11,189 +1033,Stokes LLC,6,189 +1034,"Paucek, Rempel and Considine",3,189 +1035,Collier Group,3,189 +1036,Altenwerth-Beer,8,190 +1037,Prosacco Inc,9,191 +1038,Leffler Inc,11,191 +1039,Gleichner-Nolan,6,191 +1040,"Lindgren, Stark and Wintheiser",5,191 +1041,Gottlieb and Sons,4,192 +1042,"Trantow, Deckow and O'Keefe",4,192 +1043,"Morissette, King and Raynor",10,192 +1044,"Jacobi, Towne and Veum",9,192 +1045,"Heaney, Huels and Block",1,192 +1046,Jerde Group,7,192 +1047,Barton-Yundt,2,192 +1048,"Wisozk, VonRueden and Schmeler",8,192 +1049,Crist Inc,6,193 +1050,Bernhard Group,11,193 +1051,Collier Group,6,193 +1052,Torp-Terry,8,193 +1053,Raynor and Sons,1,193 +1054,Denesik-Hahn,9,193 +1055,Kulas-Lang,4,193 +1056,Runolfsson-Langworth,1,193 +1057,"Crist, Connelly and Walsh",9,193 +1058,Fadel-Becker,8,194 +1059,Hartmann Group,5,194 +1060,Wiegand-Effertz,8,194 +1061,"Fay, Weimann and Quigley",8,194 +1062,"Jast, Schowalter and Christiansen",4,194 +1063,"Christiansen, Anderson and Hoppe",3,194 +1064,Raynor and Sons,2,195 +1065,Prosacco Inc,11,195 +1066,Stracke Group,6,195 +1067,Schuster LLC,1,195 +1068,"Flatley, Kovacek and Willms",3,195 +1069,Turner-Fritsch,2,195 +1070,Legros LLC,6,195 +1071,Lockman-Osinski,9,195 +1072,Hegmann Group,6,195 +1073,Barton-Beatty,2,196 +1074,Zboncak and Sons,10,196 +1075,"Shanahan, Hane and Bailey",3,196 +1076,Wyman-Russel,5,196 +1077,"Runolfsdottir, Welch and Ratke",3,196 +1078,"Hane, Lockman and Russel",7,197 +1079,"Donnelly, Rodriguez and Schumm",8,198 +1080,"Schamberger, Grady and O'Connell",7,198 +1081,Blanda Inc,5,198 +1082,"Wehner, Swift and Carroll",10,198 +1083,Kassulke-Kirlin,9,198 +1084,"Cronin, Schimmel and Reichert",10,198 +1085,Satterfield Group,3,198 +1086,Beier and Sons,4,199 +1087,"Mills, Lind and Klein",4,200 +1088,Wyman Group,1,200 +1089,Mertz Inc,2,200 +1090,"Effertz, Zulauf and Volkman",5,200 +1091,"Prosacco, Brown and Bailey",11,200 +1092,Huels-VonRueden,3,201 +1093,"Rogahn, Bauch and Bailey",3,201 +1094,Huel-Kozey,7,201 +1095,Herman LLC,9,201 +1096,Jacobson and Sons,2,201 +1097,"Okuneva, Lang and Gleichner",4,202 +1098,Abernathy Inc,4,202 +1099,Koss LLC,8,202 +1100,Halvorson Group,11,202 +1101,"Wuckert, Kilback and Dickinson",2,202 +1102,Runte-Block,4,202 +1103,Metz LLC,9,202 +1104,"Leffler, Hettinger and Hudson",1,202 +1105,"Lowe, Mann and Collins",5,202 +1106,"Ondricka, Ebert and Schulist",7,202 +1107,"Rosenbaum, Rempel and Mitchell",10,203 +1108,Schuster and Sons,7,203 +1109,Marvin Inc,7,203 +1110,Ziemann and Sons,11,203 +1111,Mueller Group,8,203 +1112,Kling Inc,4,203 +1113,Gulgowski and Sons,11,203 +1114,"Monahan, Reinger and Ankunding",4,203 +1115,Kulas-Douglas,6,204 +1116,Kutch-Maggio,10,204 +1117,Boyer Group,8,205 +1118,Kihn and Sons,9,205 +1119,Jacobson LLC,6,205 +1120,Walker-Corwin,10,205 +1121,Casper Inc,4,205 +1122,"Marvin, Veum and Conn",4,205 +1123,Thompson and Sons,2,205 +1124,Keeling-Legros,5,205 +1125,"Rau, Altenwerth and Towne",2,205 +1126,"Turner, Schimmel and Graham",8,205 +1127,Morissette Inc,7,206 +1128,"Shields, Fahey and Schmeler",7,206 +1129,"Schmitt, D'Amore and Kemmer",8,206 +1130,Yundt LLC,1,206 +1131,Berge-Rath,6,206 +1132,Von LLC,11,206 +1133,Prohaska and Sons,7,207 +1134,Crona Group,3,208 +1135,Waters LLC,8,208 +1136,Rolfson-Nitzsche,8,209 +1137,"Zieme, Johnson and McGlynn",9,209 +1138,Nader and Sons,3,209 +1139,Lynch-O'Conner,3,209 +1140,Yundt Group,9,209 +1141,Beatty LLC,11,210 +1142,"Schimmel, Parisian and Daugherty",10,210 +1143,Prosacco and Sons,2,210 +1144,"Quigley, Koepp and Gislason",1,210 +1145,Langworth-Bins,11,210 +1146,"Runolfsson, Braun and Koelpin",8,210 +1147,"Casper, Mosciski and Emmerich",7,210 +1148,Zboncak-Keebler,8,210 +1149,"Nienow, Metz and Gutkowski",11,211 +1150,"Kunze, Mueller and Collier",10,211 +1151,"Cremin, Crooks and Murazik",9,211 +1152,Bernhard-O'Keefe,8,212 +1153,Sporer and Sons,7,212 +1154,Stoltenberg-McClure,6,212 +1155,"Marquardt, Pacocha and Koch",2,212 +1156,Pouros and Sons,6,212 +1157,Littel and Sons,11,213 +1158,Hahn and Sons,6,213 +1159,Reichert LLC,6,213 +1160,"Maggio, Spencer and Bergstrom",9,213 +1161,Wolf LLC,4,213 +1162,"Luettgen, Tromp and Grady",3,213 +1163,"Cassin, Kunze and Graham",11,214 +1164,"Stoltenberg, Hyatt and Weber",2,214 +1165,Bergnaum-Effertz,1,214 +1166,"Hodkiewicz, Stracke and Leffler",9,214 +1167,"Hilll, Schaefer and Yost",4,214 +1168,Littel and Sons,7,214 +1169,O'Hara-Rau,3,214 +1170,"Ratke, Wuckert and Windler",6,215 +1171,Russel Inc,3,215 +1172,"Herman, Hoeger and Rosenbaum",6,215 +1173,"Turcotte, Hickle and Lynch",4,215 +1174,Conroy LLC,2,216 +1175,Schroeder-Dietrich,1,216 +1176,Hills and Sons,9,216 +1177,Kovacek-Kihn,7,216 +1178,Reilly-Abbott,8,216 +1179,Cruickshank Inc,7,217 +1180,"Yost, Casper and Koelpin",11,217 +1181,"Vandervort, Wolf and Kunde",10,217 +1182,Haag and Sons,4,217 +1183,"Bauch, Littel and Quigley",10,218 +1184,Orn Group,9,219 +1185,Lindgren-Jones,9,219 +1186,"Kihn, Bogisich and Kutch",1,219 +1187,Windler-Kiehn,7,219 +1188,Macejkovic-Kiehn,7,219 +1189,"Kerluke, Graham and Klein",5,219 +1190,Nader-Moen,6,219 +1191,Schoen Group,11,219 +1192,Hansen Group,6,219 +1193,Upton LLC,7,220 +1194,Aufderhar LLC,6,220 +1195,Reilly-Kohler,11,220 +1196,Leffler-Cremin,1,221 +1197,Eichmann Inc,11,221 +1198,Blick LLC,11,221 +1199,Koepp Group,4,221 +1200,Farrell-Runolfsdottir,8,221 +1201,Gutmann-Mueller,9,221 +1202,Franecki-Dooley,10,222 +1203,Bradtke-Lueilwitz,2,222 +1204,"Orn, Moore and Lowe",5,222 +1205,Sawayn and Sons,2,222 +1206,"Zieme, Connelly and Carroll",10,222 +1207,Kshlerin and Sons,8,222 +1208,Konopelski Group,3,222 +1209,Kozey LLC,6,223 +1210,Hansen-Rau,3,223 +1211,Torp and Sons,8,223 +1212,Mosciski LLC,11,223 +1213,Rodriguez-Rempel,1,224 +1214,Tillman-Ortiz,11,224 +1215,Beier-Jenkins,1,224 +1216,Renner-Ebert,7,224 +1217,Lemke Inc,10,225 +1218,Monahan Inc,7,225 +1219,"Olson, Schuster and Simonis",2,225 +1220,Corwin-Walsh,6,225 +1221,"Spencer, Kuhic and Kulas",3,225 +1222,Veum-Bailey,2,225 +1223,Daugherty LLC,4,225 +1224,Zemlak-Ritchie,7,225 +1225,"Brakus, Cummerata and Wilkinson",8,225 +1226,"Ruecker, Harris and Weber",4,226 +1227,"Strosin, Emmerich and Bogan",1,226 +1228,"Ruecker, Ryan and Bauch",3,226 +1229,Corkery-Hickle,2,226 +1230,Runolfsdottir-Mitchell,7,226 +1231,Pacocha Group,10,226 +1232,"Lindgren, Stanton and Lehner",7,226 +1233,Weber-Nolan,4,226 +1234,Mann and Sons,8,226 +1235,Bergstrom Group,5,227 +1236,Larson Group,4,227 +1237,Jacobson LLC,11,227 +1238,Kris Inc,10,228 +1239,Gerlach LLC,2,228 +1240,Krajcik-Kulas,2,228 +1241,Satterfield Inc,11,229 +1242,Jerde Inc,2,229 +1243,Dicki-Hills,4,229 +1244,Schiller-Wolf,6,229 +1245,"Dibbert, Wolff and Carroll",1,229 +1246,Keebler-Lindgren,3,229 +1247,Nitzsche-Rolfson,1,229 +1248,Hills-Krajcik,4,229 +1249,Orn-Connelly,1,229 +1250,"Stamm, DuBuque and Mraz",8,229 +1251,Witting LLC,9,230 +1252,Hackett Inc,5,230 +1253,"Stracke, Stroman and Blanda",11,230 +1254,Larson-Yost,5,230 +1255,"Zieme, Kuvalis and Spinka",1,231 +1256,"Hackett, McLaughlin and Kassulke",8,231 +1257,"Ratke, Walter and Oberbrunner",10,231 +1258,"Hammes, Huels and Crooks",1,231 +1259,"Harber, Predovic and Murphy",11,231 +1260,"Jenkins, Lesch and Rowe",2,231 +1261,Powlowski Inc,2,231 +1262,"Hermann, Little and Kilback",5,231 +1263,"Beier, Walsh and Ankunding",1,232 +1264,Yundt Inc,5,232 +1265,Hettinger Group,9,232 +1266,Spinka and Sons,6,232 +1267,"Mann, O'Conner and Gleason",1,233 +1268,Lakin-Ondricka,5,233 +1269,Jones-Schoen,3,233 +1270,Hoppe-Hahn,8,233 +1271,Johnston-Cole,3,233 +1272,Kuphal-Mante,5,233 +1273,Morar-Quigley,4,233 +1274,"Cormier, Douglas and Lind",7,233 +1275,Rodriguez LLC,7,234 +1276,Gusikowski-Grimes,3,234 +1277,Stracke LLC,5,234 +1278,Stroman-Willms,2,234 +1279,Spinka-Hahn,3,234 +1280,Jenkins and Sons,2,234 +1281,Becker and Sons,1,234 +1282,Swaniawski-McDermott,11,234 +1283,Walsh LLC,6,234 +1284,Schimmel Group,1,235 +1285,"Rohan, Smith and Christiansen",7,235 +1286,Batz-Brekke,9,235 +1287,Fay-Larkin,7,235 +1288,Kemmer-Reichert,9,235 +1289,McKenzie-Steuber,11,236 +1290,"Wuckert, Barrows and Hayes",5,236 +1291,Streich-Witting,8,236 +1292,"Gerlach, Conroy and Hills",6,237 +1293,"Kreiger, Klocko and Powlowski",8,237 +1294,"Shanahan, Shanahan and Donnelly",11,237 +1295,"Collins, Smith and Stracke",2,237 +1296,Hand Inc,10,237 +1297,Robel-Jenkins,5,237 +1298,"Hickle, Hoppe and Sawayn",7,237 +1299,"Muller, Goldner and Stoltenberg",10,237 +1300,Kihn LLC,5,238 +1301,"Feeney, Heller and Collier",9,238 +1302,"Gottlieb, Lang and Torphy",10,238 +1303,"Padberg, Cronin and Lebsack",3,238 +1304,Hansen LLC,1,238 +1305,Steuber-Hahn,6,239 +1306,"Homenick, Christiansen and Jast",8,239 +1307,"Schmitt, Roberts and Flatley",3,239 +1308,Reynolds-Johns,6,239 +1309,Collins-Emard,8,239 +1310,Russel-West,2,239 +1311,Jaskolski Group,1,239 +1312,Rau-Schulist,3,239 +1313,MacGyver and Sons,1,239 +1314,Larson-Hermiston,9,240 +1315,Mertz-Frami,1,241 +1316,"Watsica, Rolfson and Satterfield",1,241 +1317,Russel and Sons,7,241 +1318,"Shanahan, Weber and Schmidt",5,241 +1319,Morissette-Romaguera,1,241 +1320,Klein-Auer,6,241 +1321,"Prosacco, Leannon and Jakubowski",7,241 +1322,Abshire Inc,11,241 +1323,"Dickens, Steuber and Blanda",1,241 +1324,West-Lind,10,241 +1325,Heaney-Stoltenberg,3,242 +1326,"Considine, Fahey and Hegmann",9,242 +1327,Boyer-Stracke,7,242 +1328,Grant-Little,8,242 +1329,Hansen LLC,4,242 +1330,"Kreiger, Barrows and Homenick",2,242 +1331,Casper Inc,10,242 +1332,Abshire-Kohler,4,242 +1333,Cartwright-Morar,5,242 +1334,Runolfsdottir Inc,2,242 +1335,Kunde-Reichert,9,243 +1336,Rice-Runolfsson,5,243 +1337,Barton-Boehm,5,243 +1338,"Rohan, Spencer and Torp",5,244 +1339,Kautzer LLC,6,244 +1340,Flatley Inc,11,244 +1341,Grant-Hintz,7,244 +1342,Torp Group,7,244 +1343,McLaughlin LLC,7,245 +1344,Leffler-Zboncak,10,245 +1345,"Muller, Rice and Cole",7,245 +1346,Renner-Crist,1,245 +1347,Botsford-Larkin,8,245 +1348,"Sawayn, Reichel and Stiedemann",5,245 +1349,Koss-Mraz,4,245 +1350,"Aufderhar, Thiel and Sipes",8,246 +1351,Mohr-Daugherty,2,246 +1352,"O'Keefe, Stoltenberg and Ernser",5,246 +1353,"McDermott, Gutmann and Roberts",11,247 +1354,"Schiller, Champlin and Feest",9,247 +1355,Orn-Keeling,9,247 +1356,Dare Group,9,248 +1357,"Gutmann, Toy and Ziemann",1,249 +1358,Satterfield and Sons,5,249 +1359,Walter LLC,9,250 +1360,Corkery-Bogan,8,250 +1361,"Marquardt, Kunde and Kling",2,250 +1362,"Labadie, Marks and Bechtelar",10,250 +1363,Hirthe-Yost,8,250 +1364,"Anderson, Trantow and Howell",9,250 +1365,Kuhlman Inc,2,250 +1366,Runolfsson Inc,10,251 +1367,Gutkowski-Bernhard,2,252 +1368,"Shields, Stracke and Kris",11,253 +1369,"Champlin, Kautzer and Cummerata",10,253 +1370,Hettinger-Rolfson,7,253 +1371,Hane-Trantow,2,253 +1372,Mayer-Hagenes,6,253 +1373,Rohan and Sons,2,253 +1374,"McGlynn, Purdy and Lindgren",5,253 +1375,Brakus-Homenick,5,253 +1376,Crona and Sons,9,253 +1377,Hartmann and Sons,5,253 +1378,"Willms, Baumbach and Runolfsson",7,254 +1379,Franecki Inc,11,254 +1380,"Prosacco, Erdman and Gorczany",6,254 +1381,"Harris, Shanahan and Bailey",4,254 +1382,Ebert-Kirlin,4,255 +1383,"Senger, Runolfsson and Stokes",5,255 +1384,Veum Group,7,255 +1385,Leannon LLC,2,256 +1386,"Conroy, Wisozk and Ziemann",9,256 +1387,"Dietrich, Jones and Reichert",3,256 +1388,Wisoky-Price,6,256 +1389,"Reinger, Buckridge and Carter",1,256 +1390,Ferry Inc,5,256 +1391,"Hettinger, Medhurst and Rempel",2,256 +1392,Nicolas LLC,7,256 +1393,Altenwerth and Sons,11,256 +1394,Buckridge-Wilderman,2,256 +1395,Collier Group,8,257 +1396,Paucek-Howell,10,257 +1397,White Group,8,257 +1398,Kuhn and Sons,10,257 +1399,"Marks, Rutherford and Smitham",4,257 +1400,"Skiles, Okuneva and Thiel",10,258 +1401,Mueller-Von,9,259 +1402,Dooley-Mosciski,9,259 +1403,Kihn and Sons,5,260 +1404,Parisian Inc,6,260 +1405,Spencer-Leffler,7,260 +1406,Goyette LLC,10,260 +1407,Langworth-Breitenberg,8,260 +1408,Wyman Group,11,260 +1409,Cartwright Inc,1,261 +1410,Stehr-Murphy,5,261 +1411,Johns LLC,9,262 +1412,Kutch Group,7,262 +1413,"Bradtke, Hoeger and Schmeler",5,262 +1414,Halvorson-Schmitt,3,262 +1415,"Murazik, Aufderhar and Bode",3,262 +1416,Daugherty and Sons,4,262 +1417,Smith Inc,11,262 +1418,Nikolaus Inc,8,262 +1419,Simonis-Ferry,11,262 +1420,"Nienow, Runolfsson and Satterfield",2,263 +1421,"Leannon, Rempel and Gislason",8,263 +1422,"Block, Hayes and Pollich",1,263 +1423,"Treutel, Bruen and Blick",6,263 +1424,"Ferry, Kuphal and Schmidt",11,263 +1425,Bosco and Sons,4,263 +1426,"Dibbert, Kutch and Kling",10,263 +1427,"Bernhard, Murphy and Kshlerin",5,263 +1428,Sipes Group,5,264 +1429,Spinka-Cassin,3,264 +1430,Heidenreich and Sons,3,264 +1431,"Sporer, Hackett and Larson",3,264 +1432,Moen LLC,8,264 +1433,"Lesch, Pfannerstill and Pollich",1,264 +1434,Treutel Inc,2,264 +1435,Ferry-Klein,2,265 +1436,"Morar, Ritchie and Kohler",9,265 +1437,Beatty-Haag,3,265 +1438,Abbott and Sons,9,265 +1439,Jakubowski-Marks,7,265 +1440,Fahey Group,7,265 +1441,"Homenick, Ryan and Corwin",9,265 +1442,Bernhard and Sons,3,265 +1443,Harvey-Bode,2,266 +1444,Hansen LLC,1,267 +1445,Stoltenberg Inc,6,267 +1446,"Schimmel, Beer and Medhurst",1,267 +1447,Durgan-Crist,8,267 +1448,Legros-Pagac,5,267 +1449,Wiegand-McGlynn,2,267 +1450,Robel LLC,1,267 +1451,Gleichner Group,5,267 +1452,Tremblay and Sons,4,268 +1453,Will and Sons,2,268 +1454,Littel Inc,3,268 +1455,"Bogisich, Wilkinson and Rau",10,269 +1456,Kozey LLC,10,269 +1457,Mayert Group,11,269 +1458,"Pfannerstill, Skiles and Schowalter",7,269 +1459,Bednar LLC,10,269 +1460,Lindgren-Leuschke,7,269 +1461,Mann Group,4,269 +1462,Rosenbaum and Sons,2,269 +1463,Schmidt LLC,11,270 +1464,"Homenick, Grant and Schulist",7,270 +1465,"Gleason, Goodwin and Buckridge",9,270 +1466,Larson-Goldner,4,270 +1467,Conn LLC,5,270 +1468,Stanton-Braun,11,270 +1469,Trantow Inc,8,271 +1470,Quitzon LLC,8,271 +1471,"Hilll, Kris and Moen",5,271 +1472,"Nikolaus, Schmeler and Haley",6,271 +1473,Boehm Group,9,272 +1474,Hagenes and Sons,5,272 +1475,Waelchi LLC,5,272 +1476,"Effertz, Fay and Schinner",5,273 +1477,"Rodriguez, Johnston and Krajcik",6,273 +1478,Kuphal Inc,4,273 +1479,"Gislason, Grant and Greenholt",11,273 +1480,Simonis Group,1,273 +1481,"Lehner, Kunde and Schiller",1,273 +1482,Bins-Marks,1,273 +1483,Trantow Group,10,274 +1484,Conroy LLC,11,274 +1485,Huel LLC,3,274 +1486,Bernier Group,1,274 +1487,"Koch, Dooley and Bednar",4,275 +1488,"Stiedemann, Beatty and Krajcik",4,275 +1489,Schroeder-Tromp,8,275 +1490,"MacGyver, Nienow and Brakus",8,275 +1491,Lebsack-Bahringer,7,275 +1492,"Conroy, Lubowitz and Herman",7,275 +1493,"Kling, Konopelski and Pouros",5,275 +1494,Schulist Inc,7,276 +1495,"Murray, Reichert and Kiehn",7,277 +1496,Heathcote-Ullrich,3,277 +1497,Shanahan LLC,4,277 +1498,Green-DuBuque,3,277 +1499,"Schumm, Goyette and Cronin",9,277 +1500,Ondricka-Powlowski,11,278 +1501,Rau Inc,3,278 +1502,"Brekke, Friesen and Schneider",9,278 +1503,Rippin Group,3,278 +1504,"Goldner, Jacobi and Daugherty",6,278 +1505,"Blanda, Lesch and Paucek",3,278 +1506,Murray-Schaden,8,278 +1507,"Rogahn, Adams and Satterfield",1,279 +1508,Roob-Satterfield,7,279 +1509,Rutherford-Harber,9,279 +1510,McLaughlin-Wolf,3,279 +1511,Weissnat-Witting,8,279 +1512,Howell-Klocko,9,279 +1513,Leffler and Sons,5,279 +1514,Kuvalis-Schultz,8,279 +1515,Borer Inc,7,279 +1516,"Haley, King and Thiel",2,280 +1517,Haag-McClure,5,281 +1518,Kris LLC,5,281 +1519,Ullrich Inc,11,281 +1520,Gutmann-Runolfsson,5,281 +1521,Little Group,9,281 +1522,Keeling-Ernser,10,281 +1523,"Hilpert, Casper and Nolan",11,281 +1524,Cole Group,7,281 +1525,Nitzsche-Bergnaum,2,282 +1526,Larkin-Rogahn,7,282 +1527,"Hauck, Rice and Buckridge",3,282 +1528,Abernathy-Kuvalis,3,282 +1529,Gerlach-Kovacek,10,282 +1530,Durgan Inc,11,282 +1531,"Kuhlman, Moore and Von",7,282 +1532,Upton and Sons,2,282 +1533,Labadie-Green,6,283 +1534,Keebler Inc,6,283 +1535,Harris-Ullrich,3,283 +1536,Kohler-Champlin,2,283 +1537,"Feeney, Boyer and Turcotte",3,283 +1538,"Sporer, Haag and Reynolds",3,283 +1539,Hudson-Hermiston,11,283 +1540,Hilll and Sons,11,283 +1541,"Hand, Johns and Rosenbaum",3,283 +1542,Wolff Inc,6,283 +1543,Russel Inc,2,284 +1544,Quitzon-Hamill,9,284 +1545,Daniel-Kuphal,5,285 +1546,"Beer, McDermott and Douglas",3,286 +1547,Trantow-Wisoky,11,286 +1548,"Flatley, O'Keefe and Medhurst",1,286 +1549,Marquardt and Sons,10,287 +1550,Zulauf LLC,4,287 +1551,Cartwright-Conroy,1,287 +1552,"Kuphal, Hettinger and Fritsch",6,287 +1553,"Rodriguez, Doyle and Towne",5,288 +1554,Rice LLC,3,288 +1555,Mitchell-Becker,3,289 +1556,Anderson LLC,8,289 +1557,Auer-Breitenberg,1,289 +1558,"Ernser, Mayer and Nienow",1,289 +1559,"Eichmann, Dicki and Torphy",8,289 +1560,Larkin-Stracke,4,289 +1561,"Rempel, Larson and Strosin",5,290 +1562,"Jacobson, Veum and Keebler",3,290 +1563,"Ondricka, Larson and Schamberger",2,290 +1564,Cronin-Ritchie,9,290 +1565,Von Inc,7,290 +1566,"Turner, Wisoky and Bogan",4,291 +1567,"Howell, Witting and Bergstrom",10,291 +1568,"Conroy, Ernser and Johnson",11,291 +1569,"MacGyver, Ruecker and Johns",2,292 +1570,Wunsch Inc,6,293 +1571,"Kutch, Schuster and Turcotte",11,293 +1572,"Collins, Runte and D'Amore",5,294 +1573,Jacobson-McClure,2,294 +1574,Koss LLC,3,294 +1575,Lakin-Erdman,3,294 +1576,Rodriguez-Schaefer,2,294 +1577,Ferry-Harvey,1,294 +1578,"Macejkovic, Kerluke and Abernathy",5,295 +1579,"Weber, Murray and Stark",9,295 +1580,Sanford Inc,10,295 +1581,Rosenbaum-Lueilwitz,7,295 +1582,Pollich LLC,11,295 +1583,"Wunsch, Wintheiser and Fahey",2,296 +1584,Quitzon-Jacobi,3,296 +1585,Lind-O'Reilly,5,296 +1586,Grimes and Sons,3,297 +1587,"Rodriguez, Schmidt and Bogan",3,297 +1588,"Langworth, Olson and Mosciski",7,297 +1589,Langosh-Cummings,4,297 +1590,McGlynn-Sporer,4,297 +1591,Kovacek and Sons,11,297 +1592,Emard LLC,3,297 +1593,Kshlerin-Rutherford,9,297 +1594,"Rogahn, Doyle and Rath",5,298 +1595,Carroll LLC,8,298 +1596,Pfannerstill Inc,6,298 +1597,Bode-Luettgen,9,298 +1598,"Hyatt, Paucek and Sauer",10,299 +1599,VonRueden-Dooley,2,299 +1600,"Wiza, Douglas and Nolan",6,299 +1601,"Shanahan, Kirlin and Torphy",9,299 +1602,Bode Inc,1,299 +1603,Wiza-Kuhlman,1,299 +1604,Gibson Group,11,300 +1605,Ebert-Huels,4,301 +1606,Schoen-Kozey,2,302 +1607,Stokes and Sons,8,302 +1608,Walker and Sons,9,302 +1609,"Macejkovic, Kertzmann and Marks",6,302 +1610,Dicki Inc,8,302 +1611,Zemlak-Jacobs,1,302 +1612,Bergnaum-Ebert,2,302 +1613,Williamson-Corkery,10,302 +1614,Harber-Kulas,10,302 +1615,Reilly-Raynor,9,302 +1616,DuBuque Group,5,303 +1617,"Lemke, Metz and Welch",10,303 +1618,Muller and Sons,8,303 +1619,Becker and Sons,7,303 +1620,"Rath, Zieme and Greenfelder",11,303 +1621,"Collins, Gerhold and Wisozk",11,304 +1622,Nitzsche-Russel,7,304 +1623,Crist Group,10,305 +1624,Bartell-Raynor,1,305 +1625,Boyle Group,10,305 +1626,Prohaska-Mertz,11,305 +1627,Daugherty-Wisozk,5,305 +1628,Larkin-Schulist,7,306 +1629,Runte-Mueller,10,306 +1630,Tillman and Sons,4,306 +1631,Barton Inc,2,306 +1632,Jones and Sons,2,306 +1633,Fahey-Hoeger,8,307 +1634,Jakubowski-Roob,7,307 +1635,"Upton, Ortiz and Torp",7,307 +1636,Corkery Inc,9,308 +1637,"Goodwin, Kulas and Johns",9,308 +1638,Hudson-Wilkinson,11,308 +1639,Reynolds-Funk,7,308 +1640,"Metz, Kiehn and Kerluke",5,308 +1641,Turner Group,8,308 +1642,Turner and Sons,1,308 +1643,"O'Hara, Hermiston and Bauch",11,309 +1644,Robel-Kautzer,3,309 +1645,Hoppe and Sons,8,309 +1646,Goodwin and Sons,3,309 +1647,"Medhurst, Gibson and Rau",4,309 +1648,Crona-Hammes,1,309 +1649,Cummerata LLC,7,309 +1650,"O'Reilly, Schmitt and Dare",7,309 +1651,Upton-Altenwerth,1,310 +1652,"Roberts, Torp and Hackett",6,310 +1653,"Aufderhar, Carter and Klocko",9,310 +1654,Rice LLC,7,310 +1655,Batz LLC,4,311 +1656,Jakubowski-Abbott,10,311 +1657,Collier Inc,5,311 +1658,Bosco-Rippin,3,311 +1659,"Lockman, Gleason and Hettinger",2,311 +1660,Schultz and Sons,10,311 +1661,Weimann-Langosh,3,311 +1662,Steuber-Schuppe,2,311 +1663,Ernser-O'Hara,6,311 +1664,"Will, Gottlieb and Wuckert",5,311 +1665,Bernhard-Ritchie,11,312 +1666,Haag-Hahn,2,312 +1667,Wolff and Sons,5,312 +1668,"Bartoletti, Rohan and Kemmer",10,312 +1669,"White, Bechtelar and Osinski",9,313 +1670,Waters-Bashirian,1,313 +1671,Ruecker LLC,5,314 +1672,Gusikowski-Lowe,8,315 +1673,"Renner, Lang and Heathcote",1,315 +1674,O'Keefe-Toy,1,315 +1675,"Feeney, Padberg and Lehner",6,315 +1676,Stokes-Doyle,8,315 +1677,Reichert Inc,1,315 +1678,Emmerich Inc,10,315 +1679,Gutmann-Hahn,6,315 +1680,Zulauf Inc,9,315 +1681,Bernhard Group,8,316 +1682,Sawayn Inc,8,316 +1683,Fisher Inc,7,316 +1684,"Considine, Hane and Hintz",3,316 +1685,Cassin-Goldner,9,317 +1686,"Homenick, Klein and Kozey",11,317 +1687,Rogahn Inc,9,317 +1688,Willms-Dibbert,9,317 +1689,"Pouros, Roob and Bailey",4,317 +1690,Veum-Wiegand,8,317 +1691,Rice-Legros,6,317 +1692,"Lakin, Corwin and Luettgen",6,317 +1693,Little Group,7,317 +1694,Gislason-Murazik,3,317 +1695,"Waters, Friesen and Ledner",11,318 +1696,"Champlin, Lebsack and Welch",5,318 +1697,Kutch-Littel,3,318 +1698,Nolan-Weber,4,319 +1699,Stoltenberg-Upton,11,319 +1700,"McClure, McClure and Dare",9,320 +1701,Becker Inc,4,320 +1702,Kutch-Collins,7,320 +1703,Ernser-Heathcote,6,320 +1704,"Hilll, Sporer and Jacobi",6,320 +1705,"Leannon, Hand and Wilderman",8,320 +1706,"Lesch, Wyman and DuBuque",5,321 +1707,"Stehr, Wiza and Mann",5,321 +1708,Hartmann Inc,8,321 +1709,Jaskolski-Stark,2,321 +1710,"Hoeger, Dietrich and Cartwright",2,322 +1711,Rutherford-Brekke,2,322 +1712,Lockman-Bayer,11,322 +1713,Lang Group,9,322 +1714,"Hoeger, Haag and Mertz",7,322 +1715,"Metz, Lesch and Christiansen",2,322 +1716,"Jacobs, Goldner and Zboncak",5,323 +1717,Mitchell LLC,1,323 +1718,"Willms, Cassin and Turcotte",10,323 +1719,Gibson and Sons,4,323 +1720,Langworth Inc,2,323 +1721,"Kemmer, Blick and Kulas",8,323 +1722,Orn and Sons,3,323 +1723,"Herzog, Pollich and Vandervort",3,323 +1724,Yundt-Dietrich,11,323 +1725,"Wisozk, Walsh and Bashirian",8,323 +1726,"Vandervort, Bradtke and Fadel",9,324 +1727,"Borer, Schaden and Gorczany",3,324 +1728,"D'Amore, Krajcik and Buckridge",11,324 +1729,Kohler Group,5,324 +1730,Fadel and Sons,8,324 +1731,Friesen-Greenfelder,8,324 +1732,"Zboncak, Ebert and Okuneva",1,324 +1733,"Greenholt, Reichert and Blanda",4,324 +1734,"Koch, Schuster and Veum",3,324 +1735,Jacobs-Effertz,2,325 +1736,Gibson Inc,7,325 +1737,Thiel and Sons,2,325 +1738,"Terry, Rohan and Heaney",7,325 +1739,"Hahn, McGlynn and Hintz",1,325 +1740,Cruickshank Inc,2,326 +1741,Hessel-Hyatt,9,326 +1742,Weimann-Murray,5,326 +1743,Littel Inc,11,326 +1744,O'Keefe-Schmitt,6,326 +1745,Bernier and Sons,7,326 +1746,Rolfson-Parker,3,326 +1747,"Haag, Goodwin and Toy",10,327 +1748,Nitzsche-Torp,11,327 +1749,Kulas-Schimmel,4,328 +1750,Fadel-Spinka,10,328 +1751,Parisian LLC,7,328 +1752,"Lowe, Kshlerin and Blick",4,328 +1753,"Zulauf, Bernier and O'Conner",1,328 +1754,Hammes LLC,6,328 +1755,"Murphy, Oberbrunner and Beer",8,328 +1756,Sipes-Paucek,5,329 +1757,Prosacco LLC,10,329 +1758,Schultz LLC,4,330 +1759,"Pouros, Hermiston and Huel",11,330 +1760,Leuschke and Sons,11,330 +1761,"McLaughlin, Hagenes and Emmerich",4,330 +1762,"Jast, Wisozk and Olson",5,330 +1763,Ullrich-Leffler,2,331 +1764,Pagac-Mraz,7,331 +1765,"Dickens, Welch and Schaden",10,331 +1766,Weber-VonRueden,5,331 +1767,"Reinger, Quitzon and Gorczany",3,331 +1768,"Bartoletti, Casper and Dach",11,331 +1769,Jacobs Inc,9,332 +1770,Satterfield and Sons,8,332 +1771,Predovic LLC,3,332 +1772,Roob Inc,6,332 +1773,"Koss, Feest and Klein",10,332 +1774,"Kunde, Hoeger and Connelly",11,332 +1775,"Littel, Emard and Stroman",11,332 +1776,Mayer Group,8,333 +1777,Dickens-Glover,10,333 +1778,Hermiston-Herman,1,333 +1779,Stiedemann LLC,10,333 +1780,"Huels, Smith and Ferry",9,333 +1781,"Abshire, Schaden and Purdy",9,334 +1782,Bins Group,5,334 +1783,"Ledner, Johnson and Lakin",7,334 +1784,"Raynor, Bode and Muller",11,334 +1785,Carter Group,6,334 +1786,Douglas-Jenkins,11,334 +1787,Keeling-Pfannerstill,11,334 +1788,Abshire LLC,5,335 +1789,Hayes Inc,3,335 +1790,Lynch Inc,10,335 +1791,Kling Group,6,335 +1792,Leannon LLC,10,335 +1793,Berge and Sons,7,335 +1794,"Gaylord, Rau and Harvey",1,335 +1795,"Hudson, Orn and Haag",7,336 +1796,Schultz Inc,8,337 +1797,"Rogahn, Kreiger and Padberg",8,337 +1798,"Spencer, Leffler and Will",2,337 +1799,Ferry Group,8,337 +1800,"Beatty, Stroman and Spinka",8,337 +1801,"Beahan, Paucek and Bogisich",10,337 +1802,"Kovacek, Torphy and Barton",10,338 +1803,Rau-Block,2,338 +1804,Kuhlman LLC,10,338 +1805,Legros-Quitzon,6,338 +1806,West Inc,9,338 +1807,Kessler-Koss,2,339 +1808,Murray-Padberg,4,339 +1809,Wuckert-Cummerata,1,339 +1810,Prohaska Inc,9,339 +1811,"Johns, Lesch and Grant",4,339 +1812,Batz LLC,6,339 +1813,Schimmel Group,2,339 +1814,Ondricka LLC,10,339 +1815,Altenwerth Inc,10,339 +1816,Kozey-Keebler,8,339 +1817,Reynolds-Steuber,2,340 +1818,Konopelski-D'Amore,5,340 +1819,"Considine, Sporer and Kuhic",10,341 +1820,Monahan Inc,8,341 +1821,Ullrich-Pagac,2,341 +1822,Walker-Harris,10,341 +1823,"Koss, Graham and Jacobs",9,342 +1824,Spinka-Goldner,6,342 +1825,"DuBuque, Wehner and Herzog",3,342 +1826,Klein Group,7,342 +1827,Weber-Feil,4,342 +1828,Pollich LLC,8,342 +1829,Brown-Hansen,5,342 +1830,Nitzsche-Feest,7,342 +1831,Toy-Kris,11,343 +1832,Cruickshank Group,6,343 +1833,Harris-Raynor,10,343 +1834,"Howell, Sanford and Jerde",11,344 +1835,Prohaska and Sons,4,345 +1836,"Hickle, Turcotte and MacGyver",1,345 +1837,"Armstrong, Murray and Walsh",1,345 +1838,Donnelly-Denesik,2,345 +1839,Ferry-Hayes,7,345 +1840,Lang Group,10,345 +1841,"Abernathy, Rohan and Hamill",7,345 +1842,Kohler and Sons,4,345 +1843,Terry Group,4,345 +1844,Sporer-Stark,11,345 +1845,Kiehn-Prohaska,3,346 +1846,Powlowski Group,4,347 +1847,"Raynor, Mitchell and Satterfield",11,347 +1848,"Wolf, Mills and Pacocha",11,347 +1849,Douglas LLC,9,347 +1850,Howe Group,8,348 +1851,Stroman-Ratke,9,348 +1852,Ziemann Inc,9,348 +1853,"Reinger, Ankunding and Schaefer",11,348 +1854,"Hahn, Krajcik and Kovacek",5,348 +1855,Kohler-Waters,4,348 +1856,"Lynch, Carroll and Dickens",4,348 +1857,"Littel, Boyle and Labadie",2,348 +1858,Sporer Inc,2,348 +1859,Eichmann and Sons,3,348 +1860,Swaniawski Inc,10,349 +1861,Mann and Sons,3,349 +1862,"Breitenberg, Lemke and Witting",6,350 +1863,Durgan Group,9,350 +1864,"Schulist, Fisher and Jones",3,350 +1865,Romaguera-Koss,11,350 +1866,Stoltenberg Group,5,351 +1867,"Bosco, Balistreri and Cummerata",5,351 +1868,"O'Hara, Cole and Bradtke",4,351 +1869,Glover LLC,1,351 +1870,"Schultz, Walter and Rice",2,351 +1871,Mills and Sons,10,351 +1872,"Kassulke, Thompson and Reinger",11,351 +1873,Thiel-Friesen,8,351 +1874,Kilback Inc,9,352 +1875,Erdman Inc,10,352 +1876,"Hansen, Morissette and Renner",2,352 +1877,Mayert and Sons,10,352 +1878,Ullrich and Sons,10,352 +1879,Grant-Cruickshank,7,352 +1880,"Heller, Ledner and Schaden",2,352 +1881,Beatty-Kunde,10,352 +1882,Bradtke LLC,1,353 +1883,Rempel-Braun,10,354 +1884,Moen-Wolf,6,354 +1885,Runte-Fisher,7,355 +1886,Spencer Group,3,355 +1887,"Batz, Ward and Torp",4,355 +1888,"Reichert, Hermann and Kiehn",5,355 +1889,"Schinner, Heaney and Medhurst",9,356 +1890,Frami and Sons,11,356 +1891,McKenzie-Fisher,7,357 +1892,Stanton-Tromp,6,357 +1893,"Tremblay, Casper and Heidenreich",8,357 +1894,"Beatty, Russel and Barton",3,358 +1895,Toy and Sons,5,358 +1896,Hermiston-O'Hara,2,358 +1897,Deckow-McDermott,10,359 +1898,"Cormier, Conn and McDermott",2,359 +1899,Effertz-Stroman,8,359 +1900,Reynolds Group,11,359 +1901,Grimes Group,11,359 +1902,Moore Group,5,360 +1903,Barton LLC,11,360 +1904,"Hyatt, Gottlieb and Koss",7,360 +1905,"Conn, Wilderman and Daniel",9,360 +1906,Pacocha-Miller,8,360 +1907,"Kirlin, Abernathy and Mills",11,361 +1908,Smith Inc,7,361 +1909,Spencer and Sons,4,361 +1910,"Keeling, Franecki and Kshlerin",9,362 +1911,O'Keefe-Hauck,6,362 +1912,Koss Group,1,362 +1913,"Carter, Carroll and Jacobson",11,362 +1914,Haley Inc,1,362 +1915,Schuppe-Parisian,9,362 +1916,Nicolas and Sons,9,363 +1917,"Herzog, Murazik and Willms",11,363 +1918,Barrows-Greenfelder,11,364 +1919,Bogisich-Goldner,3,365 +1920,"Wehner, Donnelly and Berge",5,365 +1921,"Prosacco, Schmidt and Sanford",10,365 +1922,Borer LLC,1,365 +1923,Streich LLC,1,365 +1924,Gusikowski LLC,10,365 +1925,Dietrich and Sons,5,365 +1926,O'Reilly Inc,1,366 +1927,"Jacobson, Ortiz and Smith",4,366 +1928,"Schroeder, Kutch and Dibbert",10,366 +1929,"Adams, Haley and Funk",2,366 +1930,"Kuhic, Emard and Heathcote",5,366 +1931,Gerlach Group,7,366 +1932,Wiegand-Gottlieb,11,366 +1933,"Simonis, Boyle and Nienow",9,366 +1934,Weimann-Hudson,6,367 +1935,"Koepp, Nader and Conroy",5,367 +1936,Kovacek-Mann,3,367 +1937,"Windler, Russel and Davis",8,367 +1938,Koch and Sons,7,367 +1939,"Aufderhar, McLaughlin and Mraz",4,368 +1940,Brown Group,3,368 +1941,"Schoen, Olson and Crooks",8,369 +1942,Hintz-Emmerich,2,369 +1943,Smith Group,10,369 +1944,Hirthe LLC,1,369 +1945,Nitzsche-Parisian,9,369 +1946,Lebsack-Zemlak,7,369 +1947,O'Reilly-Cummerata,11,369 +1948,Auer LLC,5,370 +1949,Greenfelder-Weber,1,370 +1950,Tromp Group,2,370 +1951,"Blanda, Stiedemann and Blick",8,370 +1952,Koch and Sons,1,370 +1953,"Beahan, Macejkovic and Fadel",11,370 +1954,Hartmann LLC,9,370 +1955,Hoppe Inc,2,370 +1956,Farrell Group,7,370 +1957,Grady-Abbott,7,370 +1958,"Shanahan, Funk and Strosin",4,371 +1959,Boyle-Crooks,4,371 +1960,"Kozey, Davis and Brown",1,371 +1961,Kuhn Group,7,371 +1962,Blick-Dibbert,11,371 +1963,"Leuschke, Skiles and Kuvalis",7,371 +1964,"Gorczany, Schaefer and Kutch",11,371 +1965,Lynch LLC,6,372 +1966,Ferry-Ward,8,373 +1967,Kreiger and Sons,10,373 +1968,Stamm-Zulauf,4,373 +1969,Walker-Berge,1,373 +1970,Monahan-Rau,7,373 +1971,Hermann Group,11,373 +1972,Lubowitz-Berge,1,373 +1973,Hodkiewicz-Hane,11,374 +1974,Yost LLC,2,374 +1975,"Fritsch, Littel and Kautzer",8,374 +1976,Willms-Runolfsson,8,374 +1977,Wiegand and Sons,11,374 +1978,Romaguera Inc,5,374 +1979,Walker Inc,8,374 +1980,Berge Group,8,374 +1981,"Legros, Maggio and Haley",4,374 +1982,"Davis, Franecki and Robel",9,375 +1983,Bernhard-Schimmel,11,375 +1984,Gibson and Sons,10,376 +1985,Stark and Sons,11,376 +1986,Lehner Inc,7,376 +1987,Hettinger-West,11,376 +1988,"Dickens, Wilkinson and Runolfsson",4,376 +1989,"Berge, Turner and Senger",11,376 +1990,"Kerluke, Quitzon and Willms",4,377 +1991,Weimann LLC,9,377 +1992,"Boyle, Romaguera and Farrell",9,377 +1993,Rau Group,5,377 +1994,"Donnelly, Weissnat and Crona",1,377 +1995,Vandervort-Graham,4,377 +1996,Stehr-McDermott,7,378 +1997,"Frami, Dicki and Jakubowski",7,378 +1998,"Corwin, Gleason and Durgan",4,378 +1999,Stark and Sons,7,378 +2000,"Schoen, Turner and Carroll",5,378 +2001,Runte Inc,11,378 +2002,"Price, Pouros and Hahn",1,378 +2003,"Gottlieb, Russel and Howell",10,379 +2004,Murray-Denesik,3,379 +2005,Williamson-Buckridge,11,379 +2006,Bergnaum-Wintheiser,6,379 +2007,Hilpert LLC,3,379 +2008,Weissnat LLC,9,379 +2009,Smitham-O'Connell,4,380 +2010,"Glover, Lehner and Collier",3,380 +2011,Boyle Inc,11,380 +2012,"Bartoletti, Hermiston and Lang",1,380 +2013,Bogisich-O'Conner,11,380 +2014,Mante Inc,1,381 +2015,"King, Wilkinson and Strosin",5,382 +2016,Rowe-Collins,7,382 +2017,"Ortiz, Ritchie and Bode",2,382 +2018,Cremin-Pfeffer,1,382 +2019,"Bruen, Carroll and Will",8,382 +2020,"Maggio, Gerhold and Corwin",5,383 +2021,McKenzie-Carroll,2,383 +2022,Satterfield and Sons,7,384 +2023,"Dickens, Brakus and Donnelly",5,384 +2024,Donnelly Group,5,384 +2025,Jakubowski-Dibbert,10,384 +2026,Spinka-Schaden,6,385 +2027,"Haley, Oberbrunner and Murray",1,385 +2028,"Sauer, Kirlin and Lindgren",4,385 +2029,Blick-Feest,9,385 +2030,Bahringer-O'Kon,5,385 +2031,Kohler-Wuckert,1,385 +2032,"Tillman, Stehr and Watsica",4,385 +2033,Ryan-Walter,7,385 +2034,"Gerhold, Considine and Kohler",4,386 +2035,McClure-Botsford,6,387 +2036,Howell-Lubowitz,11,387 +2037,"Upton, Greenfelder and Olson",8,387 +2038,Quigley Group,9,387 +2039,Stamm Group,5,387 +2040,Cormier and Sons,4,387 +2041,"Kulas, Blick and Casper",10,387 +2042,Osinski Group,1,387 +2043,Champlin Inc,10,388 +2044,McClure-Kuhic,1,388 +2045,Pfannerstill-Funk,10,389 +2046,"Goyette, Connelly and Pacocha",3,390 +2047,Reichert Group,6,390 +2048,Stroman and Sons,11,390 +2049,Armstrong Inc,5,390 +2050,"Corwin, Moore and McLaughlin",10,390 +2051,Collins LLC,9,390 +2052,Stokes and Sons,9,390 +2053,"Lueilwitz, Senger and Rau",10,390 +2054,"Schroeder, Huel and Langosh",6,391 +2055,"Vandervort, Cormier and Hettinger",2,391 +2056,Kertzmann and Sons,4,391 +2057,Crona-Schamberger,2,392 +2058,Steuber Group,10,393 +2059,"Lind, Hauck and Gerhold",3,394 +2060,Parker Inc,9,395 +2061,"Gusikowski, McKenzie and Toy",2,395 +2062,Goodwin Group,2,395 +2063,"Ratke, Ullrich and O'Conner",10,395 +2064,"Rogahn, Gerlach and Mosciski",9,395 +2065,"Littel, Pagac and Rosenbaum",4,395 +2066,"Rempel, Prosacco and Jaskolski",9,395 +2067,McKenzie LLC,8,395 +2068,Predovic Inc,6,395 +2069,Kihn LLC,2,396 +2070,Harvey-Dach,1,396 +2071,Miller LLC,11,396 +2072,Runolfsson Inc,8,396 +2073,"Greenholt, McClure and Effertz",3,396 +2074,Mertz Group,2,397 +2075,"Williamson, Gutkowski and Rohan",1,397 +2076,Cassin-Senger,1,397 +2077,"Turcotte, Gleichner and O'Keefe",4,397 +2078,VonRueden LLC,8,397 +2079,"Reynolds, Schaden and Beier",9,397 +2080,"Moore, Morissette and Konopelski",3,398 +2081,Wehner and Sons,2,398 +2082,Jerde-Skiles,6,398 +2083,Gottlieb-Howell,8,398 +2084,Bauch-Ondricka,10,398 +2085,Lind Group,2,398 +2086,"Murphy, Littel and Tillman",7,398 +2087,Buckridge and Sons,6,398 +2088,Spinka Inc,6,398 +2089,Crooks-Breitenberg,6,398 +2090,Brakus-Terry,4,399 +2091,Buckridge Inc,6,399 +2092,Moore-Cruickshank,11,399 +2093,Aufderhar-Larkin,5,399 +2094,Marvin Inc,7,399 +2095,Kunze-Hessel,9,399 +2096,"Hilpert, Sanford and Ritchie",8,399 +2097,McLaughlin-Metz,1,400 +2098,Wehner LLC,5,400 +2099,"Rowe, Jacobson and Zieme",2,400 +2100,Kling LLC,6,400 +2101,Hyatt LLC,10,400 +2102,"Harris, Bernier and Rosenbaum",1,400 +2103,Bartell Inc,8,400 +2104,Crooks Group,6,400 +2105,"Schmidt, Schmitt and McClure",10,400 +2106,Beahan LLC,6,400 +2107,Hilll Group,4,401 +2108,"Kub, Robel and Paucek",6,401 +2109,Zulauf-Hackett,8,401 +2110,Kuhlman Group,11,401 +2111,Gutkowski-Prohaska,9,402 +2112,Swaniawski and Sons,2,402 +2113,Labadie and Sons,4,402 +2114,"Pfeffer, Kuphal and Spinka",2,402 +2115,Macejkovic LLC,4,402 +2116,Dare-Shanahan,5,402 +2117,"Anderson, Rau and Strosin",1,402 +2118,"Kuhlman, Gleichner and Stokes",4,402 +2119,McDermott Inc,6,402 +2120,Hudson-Aufderhar,10,402 +2121,"Pacocha, Rippin and Kreiger",3,403 +2122,"Zulauf, Beatty and Donnelly",9,403 +2123,Kunde LLC,4,403 +2124,Hahn Inc,11,403 +2125,"Kozey, Ziemann and Yost",3,403 +2126,Rempel-Kuphal,3,403 +2127,"Beier, O'Reilly and Considine",6,403 +2128,Goodwin-Miller,8,403 +2129,Morar-Mosciski,4,404 +2130,Hoppe LLC,11,405 +2131,Kling-Huels,3,405 +2132,"Greenfelder, Rice and McGlynn",7,405 +2133,Streich-Will,10,405 +2134,"Runte, Beer and Brown",2,405 +2135,Block-Turcotte,3,405 +2136,"Homenick, Auer and Ward",5,405 +2137,Kirlin LLC,11,405 +2138,"Kozey, Rolfson and Upton",4,406 +2139,"Kutch, Altenwerth and Goyette",9,406 +2140,Konopelski and Sons,1,406 +2141,Collins-McGlynn,2,406 +2142,Turner-Wilderman,3,407 +2143,"Lowe, Kerluke and Ullrich",8,408 +2144,"Koelpin, Kautzer and Prohaska",2,408 +2145,"Terry, Jakubowski and Quitzon",5,408 +2146,"Hansen, Cole and Bogan",7,408 +2147,Bins and Sons,2,408 +2148,Stoltenberg-Abernathy,10,408 +2149,Stokes LLC,1,408 +2150,"Gusikowski, Rogahn and Weimann",2,408 +2151,Kuhic-Batz,7,408 +2152,Hirthe-Dare,5,409 +2153,Hamill-Strosin,4,409 +2154,"Trantow, Cummings and Wyman",1,410 +2155,Hauck Inc,5,410 +2156,"Rath, Gottlieb and Harvey",8,410 +2157,"Mraz, Schaefer and Hauck",3,410 +2158,Shanahan-Beatty,6,410 +2159,Parker-Hartmann,8,411 +2160,Leffler Group,6,411 +2161,O'Hara Group,10,411 +2162,Strosin-Roberts,11,411 +2163,D'Amore-Beer,10,411 +2164,Hintz-Cartwright,9,411 +2165,Lesch-White,10,411 +2166,"Feeney, Rau and Wisoky",10,411 +2167,Fay-Windler,7,412 +2168,"Toy, Connelly and Quigley",10,412 +2169,Nitzsche LLC,11,412 +2170,Schneider Group,7,412 +2171,Schneider Group,8,412 +2172,"Ernser, Kuhic and Willms",5,412 +2173,"Langworth, Glover and Gaylord",11,413 +2174,"Sipes, Schmidt and Jaskolski",9,413 +2175,Mills Inc,10,413 +2176,Stracke and Sons,3,413 +2177,Schowalter-Doyle,3,413 +2178,"Schaden, Sanford and Langosh",9,413 +2179,"Langworth, Greenholt and Johnston",11,413 +2180,"Fadel, Goldner and Abernathy",11,413 +2181,Bradtke-Nader,2,413 +2182,West and Sons,8,413 +2183,Beahan Inc,6,414 +2184,Lindgren Inc,10,414 +2185,"Hegmann, Weimann and O'Reilly",6,415 +2186,"Terry, Larkin and Jerde",8,415 +2187,Brown-Jast,2,415 +2188,Herzog Group,10,415 +2189,Lind Group,10,415 +2190,Boyle-Collier,8,415 +2191,Hammes Inc,2,415 +2192,"Ruecker, Rolfson and Willms",6,415 +2193,Spencer LLC,3,415 +2194,Kilback-Weimann,7,415 +2195,Swaniawski LLC,2,416 +2196,Casper-Bergnaum,3,416 +2197,Greenholt Group,8,416 +2198,Parisian LLC,2,416 +2199,"Keebler, Muller and Kling",11,416 +2200,"Hand, Greenfelder and Schoen",1,416 +2201,Hane-Schiller,9,416 +2202,"Hodkiewicz, Baumbach and Kovacek",8,417 +2203,"Paucek, McDermott and Doyle",1,417 +2204,Wintheiser Group,11,417 +2205,Maggio and Sons,8,417 +2206,Gleason-Daniel,11,417 +2207,Walsh-Nitzsche,3,418 +2208,"Champlin, Will and Gutmann",7,419 +2209,Stehr Group,9,420 +2210,Rowe Group,6,420 +2211,"Schimmel, Ullrich and Lebsack",8,420 +2212,Hand-Konopelski,7,420 +2213,Glover-Ward,6,420 +2214,"Barton, Ziemann and Koss",10,420 +2215,"Witting, Hansen and Harvey",9,420 +2216,Jacobson and Sons,5,420 +2217,"Turner, Keeling and Hills",10,421 +2218,Wisoky Group,3,421 +2219,"Corwin, Crona and Anderson",10,421 +2220,"Hodkiewicz, Kunze and Ortiz",8,421 +2221,Zulauf Inc,5,421 +2222,Haag-Goyette,9,421 +2223,Schmeler-West,6,421 +2224,"Crona, Ziemann and Ullrich",6,421 +2225,Rosenbaum and Sons,2,421 +2226,"Marquardt, Tromp and Bartoletti",4,422 +2227,Torp Inc,3,422 +2228,Ritchie Group,6,422 +2229,Zieme and Sons,6,423 +2230,Bartoletti-Erdman,7,423 +2231,"Carter, Ward and Davis",2,423 +2232,Trantow and Sons,10,423 +2233,"Kunze, Hickle and Lebsack",9,423 +2234,Bradtke Group,2,423 +2235,Upton-O'Hara,2,423 +2236,"Huel, Leuschke and Feeney",5,423 +2237,"Huel, Rippin and Roberts",9,423 +2238,Tremblay-Reichert,11,423 +2239,"Bogisich, Wilkinson and Hills",8,424 +2240,O'Hara-Schmitt,9,424 +2241,Hyatt Group,9,424 +2242,Nicolas and Sons,7,424 +2243,Swaniawski-Ziemann,1,424 +2244,Pfeffer Group,8,424 +2245,Hessel-Kuhn,3,424 +2246,"Erdman, Smitham and Runte",2,425 +2247,Littel-Predovic,9,425 +2248,Thompson Group,11,425 +2249,Jacobson Group,5,425 +2250,Klocko-Schroeder,3,425 +2251,Kautzer and Sons,10,425 +2252,Ebert LLC,10,426 +2253,Moen Group,7,426 +2254,Funk and Sons,10,426 +2255,"Kris, Gusikowski and Yost",7,426 +2256,Ratke Inc,9,426 +2257,Gutkowski-Shields,3,426 +2258,Hamill-D'Amore,3,426 +2259,Weber Group,6,426 +2260,"Boehm, Mills and Marquardt",4,427 +2261,"Langosh, Beer and Wiza",8,428 +2262,Wolff and Sons,3,428 +2263,Emmerich Group,10,428 +2264,Gaylord-Botsford,11,428 +2265,Stracke Group,11,428 +2266,Schaefer and Sons,10,428 +2267,Boyle-Dooley,3,428 +2268,"Homenick, Quigley and Fadel",10,428 +2269,"Runolfsson, Abbott and Medhurst",5,428 +2270,McCullough-Hauck,9,429 +2271,"Wisozk, Harvey and Stiedemann",11,429 +2272,Hansen and Sons,5,430 +2273,"Shields, Waters and Terry",2,430 +2274,Lebsack-Reichel,1,430 +2275,Anderson-Jacobson,3,431 +2276,Armstrong Inc,8,431 +2277,"Boehm, Lynch and Wolf",5,431 +2278,Murphy Group,10,431 +2279,Moore-Huel,10,431 +2280,"Kerluke, Kertzmann and Hodkiewicz",3,431 +2281,"Windler, Feeney and Von",1,431 +2282,Rogahn-Vandervort,1,431 +2283,Roob LLC,11,431 +2284,Rempel Group,5,432 +2285,Bins-Pollich,11,432 +2286,"Runte, Effertz and Denesik",3,432 +2287,Reinger-Bergnaum,8,432 +2288,Stoltenberg-Ebert,4,432 +2289,"Kub, Walker and Smitham",4,433 +2290,Runolfsdottir-Wilderman,7,433 +2291,Rohan Group,10,433 +2292,Orn Inc,6,433 +2293,Flatley-Blanda,5,433 +2294,Bartell-Howe,5,433 +2295,Hagenes Group,1,434 +2296,Luettgen and Sons,9,434 +2297,Boyer LLC,6,434 +2298,Ward Inc,1,435 +2299,Kirlin Inc,8,435 +2300,Bashirian-Von,11,435 +2301,Bauch Inc,4,435 +2302,"Ankunding, Weber and Satterfield",2,435 +2303,Nolan-Hayes,4,435 +2304,Bernier-Schaden,6,435 +2305,Wiza Group,1,435 +2306,Franecki LLC,11,435 +2307,Pagac Inc,2,435 +2308,"Bartoletti, Koss and Dietrich",2,436 +2309,"Kling, O'Hara and Predovic",6,437 +2310,Dach-Toy,1,437 +2311,Turcotte-Jenkins,5,437 +2312,Batz-Kerluke,2,437 +2313,Botsford-Monahan,10,437 +2314,"Abshire, Conroy and Murazik",3,437 +2315,Hayes Group,10,437 +2316,Langosh-Nienow,8,437 +2317,Pfannerstill Inc,8,437 +2318,"Schinner, Medhurst and Batz",5,438 +2319,DuBuque-Treutel,8,438 +2320,"Kihn, Donnelly and Boyer",6,438 +2321,Schumm-Lesch,6,438 +2322,Bergnaum LLC,6,438 +2323,"Feil, Gislason and Christiansen",5,438 +2324,Becker-Veum,5,439 +2325,"Schneider, Gutkowski and Morar",5,439 +2326,Barrows-Sanford,8,439 +2327,Waters-Hudson,8,439 +2328,Bins-Murray,5,439 +2329,Hand Inc,6,439 +2330,Rempel-Mills,10,439 +2331,"Hartmann, Braun and Wilkinson",5,439 +2332,"Emard, Tromp and Dicki",11,439 +2333,Wiegand LLC,10,440 +2334,Herman LLC,2,440 +2335,Wilkinson and Sons,3,440 +2336,"O'Conner, Weissnat and Kris",3,441 +2337,"Simonis, Bahringer and Hahn",6,441 +2338,"Gleichner, Nolan and Green",3,441 +2339,"Dicki, Bahringer and O'Reilly",2,441 +2340,Ullrich LLC,2,441 +2341,"Mohr, Wolff and Terry",9,441 +2342,Wehner Inc,2,442 +2343,"Eichmann, Rippin and Mayert",7,442 +2344,Hermann-Klocko,2,443 +2345,Tromp Inc,5,443 +2346,Keebler LLC,4,443 +2347,"Kohler, Larkin and Predovic",5,443 +2348,Gibson-Schulist,6,443 +2349,Orn Group,4,444 +2350,Lang LLC,10,444 +2351,Cummerata-White,10,444 +2352,Terry-Borer,2,444 +2353,Olson Inc,6,444 +2354,Streich-Halvorson,8,444 +2355,Kutch Group,10,444 +2356,"Hoppe, Jacobs and Kuhn",6,445 +2357,"Homenick, Pacocha and Kassulke",9,445 +2358,Wiza LLC,7,445 +2359,Funk-Dooley,11,445 +2360,Boehm and Sons,5,445 +2361,Vandervort LLC,3,445 +2362,Becker Group,9,445 +2363,Conroy-Brekke,8,445 +2364,Rempel-Reinger,7,446 +2365,"Huel, Swift and King",7,447 +2366,MacGyver-Koelpin,7,447 +2367,Wintheiser-Klocko,6,447 +2368,Okuneva LLC,8,447 +2369,Kemmer-Zieme,2,447 +2370,Koelpin-Ritchie,8,447 +2371,"Donnelly, Ruecker and Lakin",9,447 +2372,"Hermiston, Leannon and Greenholt",1,447 +2373,Heidenreich-Armstrong,8,447 +2374,"Osinski, Ankunding and Kirlin",6,447 +2375,Haag Group,1,448 +2376,"Mraz, Greenfelder and Fritsch",3,448 +2377,Corwin and Sons,11,448 +2378,O'Conner-Breitenberg,5,448 +2379,"Haley, Glover and Considine",10,448 +2380,Adams LLC,2,448 +2381,"Turcotte, Friesen and Kovacek",5,448 +2382,"Smith, Hand and Nicolas",11,448 +2383,Waters LLC,10,449 +2384,"Lynch, Ryan and Heller",3,449 +2385,Mertz LLC,1,449 +2386,"Robel, Stroman and Batz",8,449 +2387,Buckridge Inc,11,449 +2388,Dibbert Group,5,449 +2389,Schaden Inc,2,449 +2390,"Hauck, Flatley and Wilkinson",3,450 +2391,Hauck-Miller,2,450 +2392,Gorczany-Wuckert,6,450 +2393,Gusikowski Inc,4,450 +2394,"Sauer, Walker and Bayer",10,450 +2395,Legros-Morar,2,451 +2396,Monahan-Ortiz,4,451 +2397,Will Inc,2,452 +2398,Ratke-Goldner,8,452 +2399,Pollich Inc,9,452 +2400,"Anderson, Gaylord and Larson",8,452 +2401,Thompson Inc,8,452 +2402,Zulauf-Gorczany,1,453 +2403,Bernier and Sons,3,453 +2404,Will-Leannon,9,453 +2405,Morar-Heidenreich,8,453 +2406,"Jerde, Kemmer and Abbott",9,453 +2407,Anderson-Bradtke,4,453 +2408,Fahey and Sons,6,453 +2409,"Greenfelder, Bergstrom and Buckridge",11,453 +2410,"Rice, Rutherford and Cartwright",3,453 +2411,Goyette-Legros,11,454 +2412,"Waters, Kuhlman and McDermott",9,454 +2413,"Larson, Beatty and Leannon",11,454 +2414,Littel-Ruecker,2,454 +2415,Heidenreich-Streich,6,454 +2416,Reichel-Mayer,2,454 +2417,Kunze LLC,6,454 +2418,Zboncak Inc,5,454 +2419,Jenkins-Gibson,3,454 +2420,Runolfsdottir-Hackett,2,454 +2421,Mitchell Group,4,455 +2422,"Gleichner, Denesik and Mitchell",10,455 +2423,"Kuhlman, Keebler and McCullough",3,455 +2424,Larson-Crist,3,455 +2425,Glover and Sons,2,455 +2426,Becker-Thompson,2,455 +2427,Mertz-Roob,3,456 +2428,O'Reilly-Kshlerin,8,456 +2429,Morissette-Reinger,6,456 +2430,Kassulke-Hackett,8,456 +2431,Veum-Streich,10,456 +2432,Littel-Wiegand,9,456 +2433,"Cartwright, Medhurst and Gusikowski",8,456 +2434,Sauer-Mohr,11,456 +2435,Schinner Inc,2,457 +2436,"Muller, Hansen and Lakin",8,457 +2437,Schuster-Christiansen,9,457 +2438,Little Inc,9,457 +2439,Kilback-Kutch,2,457 +2440,Krajcik Group,8,457 +2441,Macejkovic Inc,6,457 +2442,"Pollich, Pfannerstill and Weissnat",1,457 +2443,Mayer LLC,5,457 +2444,"Grant, Robel and McLaughlin",1,457 +2445,"Quitzon, Roberts and Volkman",8,458 +2446,"Pollich, Leffler and Tremblay",6,458 +2447,Wehner-Grimes,9,458 +2448,Hilll and Sons,6,458 +2449,"Ziemann, Grimes and Rosenbaum",8,458 +2450,Hackett Group,2,458 +2451,Rippin-O'Connell,7,458 +2452,Purdy-Kris,9,458 +2453,"Wilkinson, Lemke and Kessler",2,458 +2454,Thiel and Sons,6,459 +2455,Satterfield-Parisian,3,459 +2456,"Treutel, Zulauf and Robel",2,459 +2457,Grimes Inc,8,459 +2458,Harris Group,5,459 +2459,Johnston-Kreiger,4,460 +2460,"Hodkiewicz, Murphy and Beatty",2,461 +2461,Blanda Inc,3,461 +2462,Schmitt LLC,1,461 +2463,Reichert-Bauch,3,461 +2464,"Lakin, Volkman and Mayert",5,461 +2465,Kihn-Witting,6,462 +2466,Larson Inc,6,462 +2467,Douglas-Gusikowski,5,462 +2468,Tillman-Schowalter,11,462 +2469,"Wilderman, Veum and Gleichner",3,462 +2470,Ankunding-Aufderhar,3,462 +2471,Altenwerth Inc,9,462 +2472,Strosin-Nolan,8,462 +2473,Wiza-Mayert,3,463 +2474,"Hills, Pfeffer and Crona",1,463 +2475,"Predovic, MacGyver and West",1,463 +2476,Rutherford Group,2,464 +2477,Dare-Crist,6,464 +2478,"Aufderhar, VonRueden and Hamill",3,464 +2479,Nikolaus-Sporer,6,464 +2480,Nader-Armstrong,11,464 +2481,"Marvin, Little and Hilll",9,464 +2482,Vandervort Group,2,465 +2483,"McLaughlin, Spencer and Stehr",6,465 +2484,Miller Inc,1,465 +2485,"Fritsch, Stark and Gulgowski",7,465 +2486,"Senger, Miller and Spencer",5,465 +2487,Hintz Group,7,465 +2488,"Franecki, Fay and Ortiz",3,466 +2489,Schinner-Rempel,6,466 +2490,Sanford-Huels,6,466 +2491,"Wehner, Hansen and Hirthe",4,466 +2492,Borer-Weber,5,466 +2493,Crooks Inc,9,466 +2494,Orn Inc,4,466 +2495,Lesch LLC,8,466 +2496,Reinger Group,5,467 +2497,Thompson and Sons,5,467 +2498,Nolan Inc,7,467 +2499,Walter-MacGyver,11,467 +2500,Cartwright Inc,4,467 +2501,Bashirian-Lang,7,468 +2502,Green Group,1,468 +2503,Rogahn and Sons,3,468 +2504,"Kovacek, Willms and Heidenreich",4,468 +2505,Wehner-Homenick,11,468 +2506,Abshire-Kiehn,6,468 +2507,Weimann Inc,8,468 +2508,"Simonis, Leffler and Barrows",9,468 +2509,Jast-Rice,4,469 +2510,Turner-Bergstrom,7,469 +2511,"Keeling, Ratke and Muller",5,469 +2512,Reichert Group,1,469 +2513,Corkery and Sons,11,469 +2514,Smitham-Beatty,7,469 +2515,Rodriguez and Sons,11,470 +2516,Okuneva-Stiedemann,3,470 +2517,Hackett Inc,2,470 +2518,Lang-Gerlach,3,470 +2519,Ward Inc,5,470 +2520,Corwin and Sons,9,470 +2521,"Daugherty, Hermann and Carter",2,470 +2522,"Champlin, Bahringer and O'Kon",4,470 +2523,Bergstrom Inc,3,470 +2524,Orn Inc,9,471 +2525,Quigley-Lang,2,471 +2526,"Corkery, Will and Conn",8,472 +2527,"Thompson, Bogisich and Daniel",3,472 +2528,"Aufderhar, Bergnaum and Anderson",1,472 +2529,"Wisoky, Donnelly and Larkin",2,473 +2530,Stamm-Casper,7,473 +2531,Weimann LLC,5,473 +2532,Kerluke-Glover,1,473 +2533,Murphy and Sons,9,473 +2534,"Veum, Fisher and Jacobson",10,473 +2535,Mayert-Heidenreich,6,473 +2536,Zulauf Inc,2,473 +2537,"Rippin, Dooley and Bayer",11,473 +2538,Konopelski-Effertz,2,473 +2539,"Reynolds, Lowe and Kuhic",2,474 +2540,"Runolfsdottir, Armstrong and Hane",7,474 +2541,Sawayn and Sons,9,474 +2542,Botsford and Sons,3,474 +2543,"Raynor, Jones and Parker",3,474 +2544,Spencer LLC,7,474 +2545,Bahringer-Hirthe,10,474 +2546,Dare Group,6,475 +2547,Koss and Sons,2,475 +2548,Altenwerth Group,9,475 +2549,Prohaska-Doyle,2,475 +2550,"Gusikowski, Bergstrom and Weimann",7,475 +2551,"Ankunding, Kuhn and Grady",6,475 +2552,"Gulgowski, Berge and Ruecker",4,475 +2553,Koss Group,2,475 +2554,Will-Fahey,10,475 +2555,Greenfelder Group,1,476 +2556,Aufderhar Group,3,476 +2557,"Yost, Greenholt and Casper",8,476 +2558,"Ledner, Smith and Huel",1,476 +2559,"Hamill, Rutherford and McClure",6,476 +2560,"Ward, Wilkinson and Hackett",9,477 +2561,"Cummings, Orn and Roberts",11,477 +2562,"Mann, Abernathy and Bechtelar",9,477 +2563,Gorczany LLC,10,477 +2564,Weimann Inc,10,477 +2565,Weber-Murphy,9,477 +2566,Rolfson-Towne,3,477 +2567,Schmeler-Erdman,5,477 +2568,Gibson Group,7,478 +2569,White LLC,3,478 +2570,"Mueller, Turner and Gerlach",10,478 +2571,"Hessel, Bergnaum and Kuhlman",6,478 +2572,"Mayert, Hayes and Heidenreich",6,478 +2573,Prohaska Inc,8,478 +2574,"Predovic, Koch and Cole",3,478 +2575,"D'Amore, Wunsch and Kerluke",3,478 +2576,Ankunding Group,7,478 +2577,Hermann Group,1,478 +2578,Schaden Group,9,479 +2579,Schinner LLC,8,480 +2580,"Cronin, Orn and Spencer",1,480 +2581,"Kris, Beatty and Bernhard",10,480 +2582,Conroy and Sons,10,480 +2583,Towne-Bosco,7,480 +2584,"Stroman, Ruecker and Ankunding",8,480 +2585,Kessler-Howell,4,480 +2586,"Homenick, Stroman and Klocko",7,480 +2587,Kub Inc,9,480 +2588,Fisher-Haley,11,481 +2589,"Pouros, Lynch and Aufderhar",8,482 +2590,Swaniawski-Schmeler,11,482 +2591,Ziemann-Ullrich,9,482 +2592,Crooks-Waters,5,482 +2593,Stark and Sons,5,482 +2594,Bins and Sons,5,482 +2595,"Senger, Graham and Corkery",11,482 +2596,"Conroy, Kshlerin and Leuschke",11,482 +2597,Haag-Rice,6,482 +2598,"Toy, Walter and Feest",11,482 +2599,Mills and Sons,10,483 +2600,"Huels, Parker and Gutkowski",6,483 +2601,Langworth Group,1,483 +2602,"Jacobs, Kihn and Bartoletti",7,483 +2603,Goyette Inc,1,483 +2604,Williamson and Sons,7,483 +2605,Gibson and Sons,5,483 +2606,Kub Inc,6,483 +2607,"Okuneva, Ernser and Kuhlman",5,483 +2608,Funk and Sons,8,484 +2609,Daniel and Sons,3,484 +2610,"Jast, Witting and Flatley",3,484 +2611,"Harris, Wolff and Bergstrom",5,484 +2612,"Hagenes, Erdman and D'Amore",4,485 +2613,Farrell LLC,8,485 +2614,Wehner-Rosenbaum,4,485 +2615,White-Harvey,6,485 +2616,Borer-Quigley,8,485 +2617,Hane-Stark,3,485 +2618,Sipes Inc,11,485 +2619,"Nicolas, Cruickshank and Treutel",3,485 +2620,"Windler, Eichmann and Bosco",10,485 +2621,Price LLC,1,486 +2622,"Trantow, Miller and Yundt",5,487 +2623,Moen-Graham,5,487 +2624,"McDermott, Green and Mertz",2,487 +2625,Will Inc,3,487 +2626,"Gleason, Batz and Lubowitz",11,487 +2627,"Christiansen, Franecki and Spencer",6,488 +2628,"Cassin, Windler and Wilderman",6,488 +2629,"MacGyver, Cole and Treutel",2,488 +2630,Little-Dicki,2,488 +2631,Reichel LLC,4,488 +2632,Runolfsdottir Inc,2,488 +2633,Cormier and Sons,3,488 +2634,Casper Inc,8,488 +2635,Dibbert-Waters,2,488 +2636,Cassin-Wiza,4,488 +2637,"Bailey, Breitenberg and Fay",6,489 +2638,MacGyver-Morar,3,489 +2639,Sporer-Sipes,4,489 +2640,Kuhlman LLC,2,489 +2641,Thiel-Gusikowski,6,490 +2642,Bosco-Bradtke,8,490 +2643,"Crooks, Kemmer and Green",4,490 +2644,Rath Group,6,490 +2645,Schoen and Sons,2,491 +2646,Heidenreich Inc,10,491 +2647,"Cruickshank, Hudson and Haag",4,492 +2648,"Lindgren, Feest and Gaylord",2,492 +2649,Jacobs-Schuppe,9,492 +2650,Bins and Sons,2,492 +2651,Kihn Group,1,492 +2652,"Grady, Wyman and Bechtelar",5,492 +2653,"Simonis, McDermott and Balistreri",1,492 +2654,Luettgen-Pouros,8,492 +2655,Glover-Hills,11,493 +2656,Langosh and Sons,10,493 +2657,Goyette-Mitchell,4,493 +2658,Becker Inc,10,493 +2659,"Kuhn, Reynolds and McGlynn",2,494 +2660,"Crona, Yundt and Turcotte",4,494 +2661,Daniel-O'Keefe,2,494 +2662,Oberbrunner Inc,7,495 +2663,Kunze and Sons,5,495 +2664,"Dickinson, Brakus and Heathcote",8,495 +2665,Morissette Group,3,495 +2666,Lemke-Bernhard,4,495 +2667,Renner LLC,11,496 +2668,"King, Kessler and Zboncak",11,496 +2669,Toy LLC,5,496 +2670,"Veum, Berge and Cruickshank",9,496 +2671,Ondricka Group,4,496 +2672,Herzog LLC,8,497 +2673,Lind-Wehner,5,497 +2674,Kautzer LLC,7,497 +2675,"Kozey, Kuhn and Koepp",10,497 +2676,Cruickshank Group,4,498 +2677,Koepp-Haley,8,498 +2678,Koelpin LLC,11,499 +2679,Collins-Oberbrunner,4,499 +2680,"Leannon, Mohr and Nicolas",1,499 +2681,Erdman-Blanda,4,500 +2682,"Quigley, Nienow and Lang",1,500 +2683,Wiza-Mills,4,500 +2684,Bahringer Group,10,500 +2685,Rolfson-Willms,5,500 +2686,Friesen-Ullrich,9,500 +2687,Pacocha Group,5,500 +2688,Hauck-Jaskolski,8,500 +2689,Durgan-Moen,1,500 +2690,Mann-Lueilwitz,4,500 diff --git a/support/sales.csv b/support/sales.csv index f038d94c..4ab78547 100644 --- a/support/sales.csv +++ b/support/sales.csv @@ -933,11866 +933,3 @@ 933,482,2013-11-11 13:50:01 -0800,203,641 934,969,2013-11-12 23:25:12 -0800,203,641 935,6567,2013-11-09 13:30:56 -0800,203,641 -936,8980,2013-11-12 16:18:08 -0800,203,641 -937,8078,2013-11-06 10:36:16 -0800,203,641 -938,7120,2013-11-08 12:25:11 -0800,204,644 -939,4281,2013-11-11 03:31:55 -0800,205,646 -940,7981,2013-11-10 17:39:34 -0800,205,646 -941,1145,2013-11-12 00:32:28 -0800,205,646 -942,9738,2013-11-07 02:28:08 -0800,205,646 -943,2935,2013-11-08 11:25:28 -0800,205,646 -944,7823,2013-11-11 14:35:23 -0800,205,646 -945,8428,2013-11-12 03:22:10 -0800,205,646 -946,5215,2013-11-06 20:06:45 -0800,205,646 -947,2210,2013-11-13 03:41:20 -0800,207,650 -948,8238,2013-11-07 10:38:04 -0800,207,651 -949,2729,2013-11-09 11:27:19 -0800,207,652 -950,3590,2013-11-09 18:03:17 -0800,207,650 -951,3667,2013-11-12 10:52:17 -0800,207,652 -952,8550,2013-11-10 01:02:52 -0800,207,650 -953,828,2013-11-10 04:49:28 -0800,207,653 -954,5767,2013-11-09 04:12:18 -0800,207,652 -955,6431,2013-11-09 01:46:05 -0800,207,653 -956,1593,2013-11-10 07:25:48 -0800,208,654 -957,7381,2013-11-07 13:05:14 -0800,208,656 -958,3411,2013-11-09 02:17:44 -0800,209,662 -959,3634,2013-11-07 15:29:32 -0800,209,660 -960,3148,2013-11-11 21:35:33 -0800,209,662 -961,4150,2013-11-09 06:47:06 -0800,209,662 -962,8028,2013-11-09 13:25:41 -0800,209,660 -963,491,2013-11-08 14:19:49 -0800,209,661 -964,5914,2013-11-12 16:47:13 -0800,209,660 -965,661,2013-11-13 03:42:26 -0800,210,664 -966,6070,2013-11-12 05:58:20 -0800,210,664 -967,1355,2013-11-08 21:28:50 -0800,210,664 -968,6350,2013-11-11 16:50:32 -0800,210,664 -969,2681,2013-11-06 21:29:46 -0800,210,664 -970,6912,2013-11-11 22:26:18 -0800,211,665 -971,8790,2013-11-10 16:05:19 -0800,211,665 -972,3472,2013-11-12 12:03:00 -0800,211,665 -973,3096,2013-11-06 16:01:35 -0800,211,666 -974,2030,2013-11-11 13:37:15 -0800,211,665 -975,9332,2013-11-10 04:01:05 -0800,211,666 -976,4521,2013-11-12 14:56:28 -0800,211,666 -977,5874,2013-11-13 05:24:55 -0800,211,666 -978,4926,2013-11-06 23:55:08 -0800,211,665 -979,7765,2013-11-08 10:34:46 -0800,212,668 -980,4721,2013-11-09 09:34:40 -0800,212,670 -981,9640,2013-11-07 16:15:25 -0800,212,667 -982,574,2013-11-07 04:38:46 -0800,212,668 -983,5393,2013-11-12 19:46:08 -0800,212,668 -984,5670,2013-11-10 04:07:51 -0800,212,670 -985,5376,2013-11-06 21:29:44 -0800,212,667 -986,1948,2013-11-10 12:12:36 -0800,212,669 -987,4914,2013-11-11 08:20:41 -0800,212,669 -988,4614,2013-11-10 11:43:12 -0800,213,671 -989,3239,2013-11-07 21:26:08 -0800,214,674 -990,5318,2013-11-12 01:46:58 -0800,214,673 -991,5034,2013-11-12 05:18:35 -0800,214,673 -992,2154,2013-11-07 04:43:40 -0800,214,674 -993,6645,2013-11-11 12:00:00 -0800,214,673 -994,9820,2013-11-12 00:57:38 -0800,214,672 -995,514,2013-11-11 04:20:13 -0800,214,674 -996,9290,2013-11-13 02:39:08 -0800,214,674 -997,9173,2013-11-08 02:11:16 -0800,215,677 -998,6525,2013-11-10 12:25:09 -0800,215,676 -999,5315,2013-11-13 08:07:15 -0800,215,675 -1000,7025,2013-11-07 05:12:25 -0800,215,675 -1001,5657,2013-11-09 12:56:20 -0800,215,677 -1002,8599,2013-11-09 12:45:58 -0800,215,677 -1003,1269,2013-11-09 01:04:43 -0800,216,682 -1004,7439,2013-11-06 14:54:45 -0800,216,680 -1005,4276,2013-11-09 10:26:37 -0800,216,678 -1006,2231,2013-11-09 14:32:53 -0800,216,681 -1007,4300,2013-11-11 21:35:39 -0800,216,680 -1008,6014,2013-11-11 17:30:04 -0800,216,681 -1009,2317,2013-11-06 12:45:58 -0800,216,679 -1010,24,2013-11-10 12:28:36 -0800,216,681 -1011,9240,2013-11-11 00:59:51 -0800,217,683 -1012,4218,2013-11-06 14:19:29 -0800,217,683 -1013,2659,2013-11-13 05:45:25 -0800,217,683 -1014,3268,2013-11-12 17:17:43 -0800,217,683 -1015,2445,2013-11-09 08:34:00 -0800,217,683 -1016,9880,2013-11-09 06:19:13 -0800,217,683 -1017,5869,2013-11-12 22:26:40 -0800,217,683 -1018,3290,2013-11-08 08:00:16 -0800,217,683 -1019,6734,2013-11-10 06:03:17 -0800,217,683 -1020,3317,2013-11-11 19:17:47 -0800,219,689 -1021,7700,2013-11-06 18:55:33 -0800,219,690 -1022,6813,2013-11-12 16:52:21 -0800,220,694 -1023,6841,2013-11-10 02:57:23 -0800,220,694 -1024,6880,2013-11-11 06:53:31 -0800,220,694 -1025,8011,2013-11-06 13:35:13 -0800,221,699 -1026,834,2013-11-13 02:08:07 -0800,221,698 -1027,7023,2013-11-11 22:55:41 -0800,221,695 -1028,4847,2013-11-13 07:50:38 -0800,221,695 -1029,2944,2013-11-13 08:12:50 -0800,222,701 -1030,3878,2013-11-11 16:32:44 -0800,222,703 -1031,5836,2013-11-12 23:26:39 -0800,222,701 -1032,3147,2013-11-13 03:17:10 -0800,223,705 -1033,7019,2013-11-13 00:41:20 -0800,224,707 -1034,9233,2013-11-11 07:25:54 -0800,225,713 -1035,1365,2013-11-12 09:12:32 -0800,226,714 -1036,9054,2013-11-12 23:00:35 -0800,226,714 -1037,9872,2013-11-07 05:40:33 -0800,227,715 -1038,3170,2013-11-07 15:04:27 -0800,227,715 -1039,4587,2013-11-06 19:55:02 -0800,227,715 -1040,1192,2013-11-12 04:42:32 -0800,227,715 -1041,9470,2013-11-11 11:50:11 -0800,228,716 -1042,7220,2013-11-08 04:22:36 -0800,228,716 -1043,7264,2013-11-08 05:02:16 -0800,228,716 -1044,7270,2013-11-07 15:12:20 -0800,228,716 -1045,6619,2013-11-11 11:01:55 -0800,229,719 -1046,2948,2013-11-07 16:01:15 -0800,229,719 -1047,376,2013-11-07 07:45:05 -0800,229,718 -1048,4890,2013-11-07 21:21:11 -0800,229,721 -1049,6217,2013-11-09 23:47:22 -0800,229,720 -1050,5651,2013-11-07 22:08:37 -0800,229,717 -1051,6888,2013-11-08 01:42:54 -0800,229,717 -1052,560,2013-11-10 07:05:39 -0800,229,718 -1053,1259,2013-11-11 14:12:25 -0800,229,720 -1054,9660,2013-11-07 19:19:22 -0800,230,723 -1055,8897,2013-11-13 07:09:20 -0800,230,722 -1056,5517,2013-11-10 10:30:17 -0800,230,724 -1057,6709,2013-11-12 02:25:21 -0800,231,729 -1058,8484,2013-11-08 04:47:52 -0800,231,727 -1059,3852,2013-11-07 04:18:51 -0800,231,725 -1060,7690,2013-11-11 05:18:40 -0800,231,728 -1061,9172,2013-11-06 18:33:16 -0800,231,727 -1062,2370,2013-11-07 00:08:09 -0800,231,729 -1063,2469,2013-11-07 12:40:07 -0800,232,730 -1064,6652,2013-11-10 01:59:53 -0800,232,730 -1065,1275,2013-11-10 18:55:18 -0800,233,733 -1066,1541,2013-11-10 09:47:47 -0800,233,736 -1067,4478,2013-11-11 04:44:27 -0800,233,736 -1068,2570,2013-11-10 01:17:50 -0800,234,737 -1069,3393,2013-11-08 14:43:32 -0800,234,737 -1070,6217,2013-11-10 18:26:49 -0800,235,739 -1071,2827,2013-11-08 14:07:12 -0800,235,739 -1072,5298,2013-11-09 00:03:39 -0800,235,739 -1073,3810,2013-11-10 21:11:10 -0800,235,738 -1074,7737,2013-11-08 22:27:27 -0800,235,739 -1075,4124,2013-11-10 16:43:11 -0800,235,739 -1076,9880,2013-11-07 09:46:20 -0800,235,738 -1077,983,2013-11-12 09:55:32 -0800,235,739 -1078,4275,2013-11-09 09:19:30 -0800,236,740 -1079,649,2013-11-11 16:04:12 -0800,236,740 -1080,6956,2013-11-07 08:58:43 -0800,236,740 -1081,6345,2013-11-11 14:12:16 -0800,236,740 -1082,2364,2013-11-08 05:09:15 -0800,236,740 -1083,4955,2013-11-13 08:19:05 -0800,237,745 -1084,7997,2013-11-06 21:00:10 -0800,237,742 -1085,4823,2013-11-09 22:00:29 -0800,237,741 -1086,2475,2013-11-11 05:46:33 -0800,239,750 -1087,8083,2013-11-11 17:06:21 -0800,239,750 -1088,8668,2013-11-08 22:27:12 -0800,239,750 -1089,6043,2013-11-10 14:57:22 -0800,239,750 -1090,8175,2013-11-09 23:53:55 -0800,239,750 -1091,4268,2013-11-08 10:10:24 -0800,239,750 -1092,6933,2013-11-12 12:17:25 -0800,239,750 -1093,880,2013-11-07 16:46:56 -0800,239,750 -1094,873,2013-11-09 17:14:15 -0800,239,750 -1095,9113,2013-11-10 08:55:25 -0800,240,751 -1096,1761,2013-11-06 18:15:13 -0800,240,755 -1097,5024,2013-11-13 08:02:07 -0800,240,754 -1098,8168,2013-11-10 17:30:09 -0800,241,757 -1099,1335,2013-11-06 13:50:34 -0800,241,759 -1100,6994,2013-11-10 17:36:04 -0800,241,760 -1101,8388,2013-11-10 13:44:46 -0800,241,758 -1102,6142,2013-11-07 21:03:53 -0800,241,758 -1103,3760,2013-11-10 22:12:10 -0800,241,759 -1104,265,2013-11-07 02:03:40 -0800,241,756 -1105,540,2013-11-08 07:42:13 -0800,241,756 -1106,3570,2013-11-07 05:23:08 -0800,241,760 -1107,2831,2013-11-09 15:05:51 -0800,242,762 -1108,3646,2013-11-08 09:47:58 -0800,242,763 -1109,4929,2013-11-12 05:38:19 -0800,242,763 -1110,610,2013-11-06 21:17:25 -0800,243,768 -1111,7430,2013-11-13 07:28:26 -0800,244,769 -1112,4115,2013-11-13 00:03:32 -0800,244,772 -1113,7278,2013-11-11 02:15:20 -0800,244,769 -1114,8479,2013-11-11 04:44:17 -0800,244,770 -1115,2925,2013-11-12 18:20:43 -0800,244,770 -1116,5999,2013-11-08 11:31:12 -0800,244,770 -1117,3876,2013-11-07 15:21:53 -0800,245,774 -1118,3956,2013-11-07 02:14:17 -0800,245,776 -1119,7943,2013-11-08 10:27:24 -0800,245,773 -1120,5665,2013-11-10 13:09:57 -0800,245,776 -1121,2180,2013-11-11 09:03:30 -0800,245,774 -1122,3538,2013-11-07 11:04:03 -0800,245,773 -1123,328,2013-11-10 12:10:40 -0800,245,773 -1124,3686,2013-11-10 23:50:29 -0800,246,778 -1125,1997,2013-11-06 16:40:56 -0800,246,778 -1126,7266,2013-11-08 13:08:26 -0800,246,777 -1127,2222,2013-11-08 20:22:16 -0800,247,780 -1128,1726,2013-11-13 07:16:41 -0800,247,781 -1129,7252,2013-11-08 18:11:59 -0800,247,780 -1130,6783,2013-11-06 11:32:09 -0800,248,784 -1131,796,2013-11-11 08:38:07 -0800,248,785 -1132,1839,2013-11-10 18:49:37 -0800,249,789 -1133,639,2013-11-08 06:34:30 -0800,249,787 -1134,1811,2013-11-08 15:45:50 -0800,249,787 -1135,3722,2013-11-07 21:16:06 -0800,250,790 -1136,2834,2013-11-10 17:28:16 -0800,251,795 -1137,4760,2013-11-07 14:51:41 -0800,251,794 -1138,4651,2013-11-10 00:06:16 -0800,251,795 -1139,2010,2013-11-12 00:05:00 -0800,251,797 -1140,8572,2013-11-08 13:40:18 -0800,251,794 -1141,3927,2013-11-10 15:28:42 -0800,251,796 -1142,8990,2013-11-06 23:36:43 -0800,251,797 -1143,4729,2013-11-13 00:17:15 -0800,252,800 -1144,2617,2013-11-11 18:48:13 -0800,252,799 -1145,4610,2013-11-13 05:32:12 -0800,252,799 -1146,8991,2013-11-07 23:51:08 -0800,252,800 -1147,3295,2013-11-10 23:16:51 -0800,252,799 -1148,4365,2013-11-08 05:55:31 -0800,252,800 -1149,7231,2013-11-11 17:54:41 -0800,252,800 -1150,8642,2013-11-08 05:23:32 -0800,253,802 -1151,6264,2013-11-08 02:52:06 -0800,253,801 -1152,813,2013-11-11 02:13:18 -0800,253,802 -1153,1349,2013-11-09 03:30:19 -0800,253,801 -1154,152,2013-11-09 07:47:23 -0800,253,802 -1155,948,2013-11-12 09:29:26 -0800,253,801 -1156,3753,2013-11-09 23:13:38 -0800,254,803 -1157,2210,2013-11-09 22:35:09 -0800,254,805 -1158,3797,2013-11-06 21:41:02 -0800,254,806 -1159,2619,2013-11-06 22:04:37 -0800,254,803 -1160,5491,2013-11-10 03:47:28 -0800,256,808 -1161,9844,2013-11-08 15:37:54 -0800,256,808 -1162,1878,2013-11-10 06:47:21 -0800,256,808 -1163,1165,2013-11-07 16:35:26 -0800,256,809 -1164,1110,2013-11-08 02:23:45 -0800,256,808 -1165,2580,2013-11-08 05:30:05 -0800,256,808 -1166,2946,2013-11-07 03:38:26 -0800,256,808 -1167,1985,2013-11-12 09:51:12 -0800,256,809 -1168,2453,2013-11-09 06:32:15 -0800,256,809 -1169,2123,2013-11-08 21:20:02 -0800,257,812 -1170,1848,2013-11-12 05:13:45 -0800,257,812 -1171,3722,2013-11-07 02:03:26 -0800,257,812 -1172,9127,2013-11-11 00:46:36 -0800,257,811 -1173,9776,2013-11-07 00:30:00 -0800,257,811 -1174,1520,2013-11-09 23:42:43 -0800,258,813 -1175,9141,2013-11-11 04:56:18 -0800,258,813 -1176,2477,2013-11-13 07:38:36 -0800,258,813 -1177,7809,2013-11-07 08:23:06 -0800,259,816 -1178,1685,2013-11-12 13:58:27 -0800,259,815 -1179,2319,2013-11-11 21:58:17 -0800,259,815 -1180,2028,2013-11-07 17:45:59 -0800,259,814 -1181,5244,2013-11-08 10:12:05 -0800,259,815 -1182,7048,2013-11-08 05:43:03 -0800,259,815 -1183,6922,2013-11-06 19:44:23 -0800,260,818 -1184,8461,2013-11-12 19:17:28 -0800,261,821 -1185,6298,2013-11-07 01:11:01 -0800,261,819 -1186,8754,2013-11-09 11:34:15 -0800,261,819 -1187,1477,2013-11-10 00:30:37 -0800,261,821 -1188,3936,2013-11-08 00:11:17 -0800,262,824 -1189,1143,2013-11-09 02:10:13 -0800,262,823 -1190,9731,2013-11-10 12:17:25 -0800,262,824 -1191,4754,2013-11-11 09:21:49 -0800,262,822 -1192,3434,2013-11-06 15:24:48 -0800,262,823 -1193,2916,2013-11-07 19:26:04 -0800,262,825 -1194,7923,2013-11-10 00:21:02 -0800,262,822 -1195,3927,2013-11-08 01:27:58 -0800,262,823 -1196,4924,2013-11-10 20:41:37 -0800,262,824 -1197,7538,2013-11-07 16:41:36 -0800,263,826 -1198,1732,2013-11-08 07:11:32 -0800,263,826 -1199,941,2013-11-12 09:39:31 -0800,263,829 -1200,8486,2013-11-11 10:42:15 -0800,263,827 -1201,2020,2013-11-07 07:10:01 -0800,263,826 -1202,3879,2013-11-11 01:11:01 -0800,263,829 -1203,56,2013-11-11 11:58:03 -0800,263,828 -1204,8712,2013-11-11 10:40:28 -0800,263,827 -1205,1850,2013-11-12 14:13:54 -0800,263,826 -1206,7765,2013-11-13 00:19:13 -0800,264,831 -1207,742,2013-11-07 08:07:52 -0800,264,831 -1208,6766,2013-11-11 06:57:07 -0800,264,831 -1209,9450,2013-11-09 21:04:23 -0800,264,830 -1210,8327,2013-11-06 12:13:20 -0800,264,831 -1211,7553,2013-11-09 03:36:54 -0800,265,833 -1212,3332,2013-11-11 10:03:00 -0800,265,835 -1213,8965,2013-11-11 18:23:37 -0800,267,837 -1214,7444,2013-11-07 13:12:51 -0800,268,839 -1215,7548,2013-11-12 10:05:33 -0800,268,838 -1216,2459,2013-11-09 06:54:19 -0800,268,839 -1217,8285,2013-11-08 03:24:08 -0800,269,844 -1218,66,2013-11-13 07:52:53 -0800,269,844 -1219,4690,2013-11-09 21:35:23 -0800,269,845 -1220,9350,2013-11-11 11:48:00 -0800,269,845 -1221,2027,2013-11-07 17:46:56 -0800,269,844 -1222,4032,2013-11-10 00:14:42 -0800,269,843 -1223,4935,2013-11-06 08:52:59 -0800,270,847 -1224,8993,2013-11-10 03:29:09 -0800,270,847 -1225,4350,2013-11-09 19:10:25 -0800,270,847 -1226,6055,2013-11-07 08:35:58 -0800,270,847 -1227,6192,2013-11-13 00:18:27 -0800,270,847 -1228,8690,2013-11-07 08:58:03 -0800,271,849 -1229,5128,2013-11-10 09:22:40 -0800,271,851 -1230,3531,2013-11-11 13:19:41 -0800,271,851 -1231,4277,2013-11-10 11:32:13 -0800,271,849 -1232,4726,2013-11-07 08:45:23 -0800,271,851 -1233,1449,2013-11-08 14:26:43 -0800,271,851 -1234,5031,2013-11-11 03:06:10 -0800,272,853 -1235,9800,2013-11-10 18:03:55 -0800,272,853 -1236,3892,2013-11-11 16:01:45 -0800,272,853 -1237,5240,2013-11-11 12:28:52 -0800,272,853 -1238,9571,2013-11-06 10:50:10 -0800,273,854 -1239,8062,2013-11-13 01:04:08 -0800,273,854 -1240,7418,2013-11-09 23:41:36 -0800,273,854 -1241,5144,2013-11-10 16:58:59 -0800,273,854 -1242,6285,2013-11-11 16:10:26 -0800,273,854 -1243,5277,2013-11-09 01:29:04 -0800,273,854 -1244,8122,2013-11-11 10:12:53 -0800,273,854 -1245,1325,2013-11-06 17:35:24 -0800,273,854 -1246,2421,2013-11-11 10:51:40 -0800,273,854 -1247,8623,2013-11-10 16:38:10 -0800,274,858 -1248,9530,2013-11-09 06:25:29 -0800,274,858 -1249,9483,2013-11-11 00:00:20 -0800,274,856 -1250,215,2013-11-08 15:28:46 -0800,274,859 -1251,5228,2013-11-12 09:31:40 -0800,274,856 -1252,9117,2013-11-10 06:27:14 -0800,274,857 -1253,8460,2013-11-07 06:57:42 -0800,274,858 -1254,5342,2013-11-08 19:30:26 -0800,274,857 -1255,2210,2013-11-10 05:43:58 -0800,275,860 -1256,6956,2013-11-10 15:05:42 -0800,275,862 -1257,3613,2013-11-07 04:02:04 -0800,275,863 -1258,6993,2013-11-07 20:25:58 -0800,275,862 -1259,1978,2013-11-08 19:50:47 -0800,275,861 -1260,3372,2013-11-08 01:07:39 -0800,275,863 -1261,2178,2013-11-13 01:53:25 -0800,276,864 -1262,8652,2013-11-10 09:30:29 -0800,276,864 -1263,2827,2013-11-12 21:04:57 -0800,276,868 -1264,7870,2013-11-12 03:34:38 -0800,276,864 -1265,9220,2013-11-10 07:06:40 -0800,277,869 -1266,1050,2013-11-08 21:58:03 -0800,277,869 -1267,8651,2013-11-06 23:50:07 -0800,277,870 -1268,6494,2013-11-07 09:47:07 -0800,277,869 -1269,848,2013-11-08 17:56:36 -0800,277,870 -1270,5491,2013-11-10 14:13:14 -0800,277,869 -1271,3750,2013-11-11 11:02:47 -0800,278,871 -1272,2684,2013-11-12 19:11:32 -0800,278,871 -1273,8829,2013-11-12 13:15:24 -0800,278,871 -1274,8466,2013-11-12 13:35:02 -0800,279,872 -1275,8330,2013-11-07 00:25:15 -0800,280,878 -1276,9432,2013-11-12 09:17:35 -0800,280,877 -1277,8050,2013-11-08 03:59:04 -0800,280,877 -1278,50,2013-11-08 22:35:43 -0800,280,878 -1279,6178,2013-11-06 21:53:16 -0800,280,878 -1280,2744,2013-11-08 21:59:47 -0800,280,879 -1281,482,2013-11-11 21:50:41 -0800,280,878 -1282,720,2013-11-10 09:37:00 -0800,280,879 -1283,2138,2013-11-10 08:23:56 -0800,283,889 -1284,1960,2013-11-10 02:21:22 -0800,283,887 -1285,7059,2013-11-07 09:59:52 -0800,283,889 -1286,8451,2013-11-09 16:26:31 -0800,283,890 -1287,7693,2013-11-07 14:11:41 -0800,283,888 -1288,1675,2013-11-12 23:20:14 -0800,283,889 -1289,1464,2013-11-08 08:42:16 -0800,283,887 -1290,1160,2013-11-08 10:31:29 -0800,284,891 -1291,1694,2013-11-09 06:11:39 -0800,284,891 -1292,2559,2013-11-07 21:52:11 -0800,284,892 -1293,4512,2013-11-12 18:21:16 -0800,284,891 -1294,6690,2013-11-07 03:26:57 -0800,285,893 -1295,6548,2013-11-07 10:17:55 -0800,285,894 -1296,3985,2013-11-13 01:12:51 -0800,286,899 -1297,4058,2013-11-07 14:13:54 -0800,286,899 -1298,5435,2013-11-06 15:08:26 -0800,286,895 -1299,4910,2013-11-12 18:19:15 -0800,287,901 -1300,582,2013-11-10 04:27:54 -0800,287,903 -1301,8816,2013-11-09 17:24:56 -0800,287,902 -1302,3443,2013-11-11 00:10:31 -0800,287,903 -1303,3550,2013-11-08 09:46:06 -0800,287,902 -1304,6755,2013-11-08 17:53:43 -0800,287,901 -1305,7245,2013-11-12 17:25:25 -0800,288,904 -1306,9537,2013-11-12 04:23:45 -0800,289,906 -1307,8550,2013-11-12 05:21:14 -0800,289,905 -1308,7847,2013-11-12 16:07:48 -0800,289,906 -1309,5992,2013-11-10 20:37:14 -0800,289,906 -1310,1019,2013-11-12 21:41:45 -0800,289,906 -1311,8187,2013-11-12 13:07:40 -0800,290,909 -1312,3626,2013-11-09 06:16:38 -0800,290,910 -1313,370,2013-11-06 14:16:15 -0800,290,908 -1314,1964,2013-11-10 23:18:10 -0800,290,908 -1315,5258,2013-11-11 01:58:37 -0800,290,911 -1316,2593,2013-11-07 12:00:56 -0800,290,909 -1317,4962,2013-11-10 12:58:13 -0800,290,908 -1318,3137,2013-11-07 23:15:11 -0800,290,908 -1319,3318,2013-11-09 20:07:22 -0800,290,909 -1320,5091,2013-11-08 02:20:26 -0800,291,912 -1321,7751,2013-11-06 10:33:18 -0800,291,912 -1322,6099,2013-11-08 18:45:37 -0800,292,914 -1323,1082,2013-11-11 13:58:19 -0800,292,914 -1324,4675,2013-11-11 12:32:21 -0800,292,914 -1325,3249,2013-11-12 22:40:08 -0800,292,914 -1326,1591,2013-11-06 17:31:07 -0800,292,914 -1327,121,2013-11-09 07:01:28 -0800,292,914 -1328,3340,2013-11-12 04:35:17 -0800,294,921 -1329,8890,2013-11-11 01:50:57 -0800,294,919 -1330,8971,2013-11-12 14:08:23 -0800,294,921 -1331,5643,2013-11-11 05:54:36 -0800,294,921 -1332,1973,2013-11-07 14:16:10 -0800,294,921 -1333,9630,2013-11-08 19:32:46 -0800,294,920 -1334,5999,2013-11-13 08:13:34 -0800,295,922 -1335,4918,2013-11-07 09:12:03 -0800,295,922 -1336,5585,2013-11-07 05:38:13 -0800,296,926 -1337,5080,2013-11-08 20:27:41 -0800,296,927 -1338,8979,2013-11-10 13:55:29 -0800,296,925 -1339,4686,2013-11-12 02:28:40 -0800,296,926 -1340,3536,2013-11-10 00:35:42 -0800,296,927 -1341,8739,2013-11-13 02:42:32 -0800,297,928 -1342,1156,2013-11-07 13:32:22 -0800,297,928 -1343,1618,2013-11-10 13:02:11 -0800,297,928 -1344,3354,2013-11-06 10:50:22 -0800,299,936 -1345,1957,2013-11-09 15:33:14 -0800,299,937 -1346,9746,2013-11-06 14:48:38 -0800,300,938 -1347,5147,2013-11-12 07:20:12 -0800,300,938 -1348,7548,2013-11-06 16:45:47 -0800,300,938 -1349,2659,2013-11-10 08:31:46 -0800,300,938 -1350,6875,2013-11-12 04:32:16 -0800,300,938 -1351,8233,2013-11-11 10:53:36 -0800,300,938 -1352,8489,2013-11-09 11:23:07 -0800,301,942 -1353,8876,2013-11-10 15:12:42 -0800,302,943 -1354,4054,2013-11-07 23:02:05 -0800,302,943 -1355,6550,2013-11-10 11:54:39 -0800,302,943 -1356,9850,2013-11-12 17:37:16 -0800,302,943 -1357,8652,2013-11-09 21:59:28 -0800,302,943 -1358,6848,2013-11-12 00:53:39 -0800,303,946 -1359,665,2013-11-10 19:25:03 -0800,303,946 -1360,5087,2013-11-12 07:56:20 -0800,303,946 -1361,2974,2013-11-08 03:26:46 -0800,304,949 -1362,9127,2013-11-12 08:20:57 -0800,304,947 -1363,340,2013-11-07 08:26:42 -0800,304,948 -1364,59,2013-11-07 08:01:53 -0800,304,949 -1365,918,2013-11-11 00:14:05 -0800,304,948 -1366,2924,2013-11-13 04:48:51 -0800,304,949 -1367,3646,2013-11-09 19:14:01 -0800,304,949 -1368,3040,2013-11-12 21:50:23 -0800,305,950 -1369,9223,2013-11-09 20:14:12 -0800,305,951 -1370,1343,2013-11-10 07:34:30 -0800,305,951 -1371,7570,2013-11-11 20:53:16 -0800,305,950 -1372,816,2013-11-11 13:47:23 -0800,305,951 -1373,2048,2013-11-10 03:05:25 -0800,305,951 -1374,6929,2013-11-11 23:43:17 -0800,305,950 -1375,1680,2013-11-11 15:15:53 -0800,305,951 -1376,4131,2013-11-11 14:45:18 -0800,305,951 -1377,6877,2013-11-09 17:03:16 -0800,306,952 -1378,2220,2013-11-11 00:31:22 -0800,306,952 -1379,3268,2013-11-08 11:44:30 -0800,307,955 -1380,4590,2013-11-11 23:08:17 -0800,308,958 -1381,3710,2013-11-08 00:41:07 -0800,308,958 -1382,3290,2013-11-08 07:29:47 -0800,308,959 -1383,2874,2013-11-09 23:34:34 -0800,308,956 -1384,9360,2013-11-07 15:31:23 -0800,309,960 -1385,9238,2013-11-10 18:46:48 -0800,309,960 -1386,1557,2013-11-07 11:35:24 -0800,309,960 -1387,5510,2013-11-07 04:41:07 -0800,309,960 -1388,7623,2013-11-09 14:14:15 -0800,309,960 -1389,885,2013-11-11 10:14:31 -0800,309,960 -1390,2662,2013-11-08 19:32:07 -0800,309,960 -1391,3135,2013-11-09 10:05:33 -0800,309,960 -1392,7430,2013-11-11 11:55:23 -0800,310,961 -1393,143,2013-11-09 21:59:07 -0800,311,965 -1394,2088,2013-11-11 17:09:16 -0800,311,964 -1395,2352,2013-11-09 07:04:03 -0800,311,964 -1396,5471,2013-11-08 12:44:41 -0800,312,967 -1397,4599,2013-11-10 23:16:54 -0800,312,966 -1398,7641,2013-11-07 07:32:00 -0800,312,967 -1399,7853,2013-11-10 08:32:48 -0800,312,966 -1400,1342,2013-11-10 01:45:08 -0800,312,968 -1401,1081,2013-11-09 23:31:20 -0800,312,966 -1402,7920,2013-11-08 09:07:55 -0800,312,967 -1403,4350,2013-11-12 23:23:58 -0800,312,966 -1404,817,2013-11-09 12:30:44 -0800,312,968 -1405,7822,2013-11-09 13:56:28 -0800,313,971 -1406,7455,2013-11-08 17:00:42 -0800,313,970 -1407,8553,2013-11-08 19:53:40 -0800,313,969 -1408,3188,2013-11-06 22:07:10 -0800,314,973 -1409,1014,2013-11-11 21:07:45 -0800,314,974 -1410,5092,2013-11-07 18:05:43 -0800,314,976 -1411,7798,2013-11-12 21:32:50 -0800,314,975 -1412,5370,2013-11-12 19:46:33 -0800,314,973 -1413,1028,2013-11-08 01:40:01 -0800,314,975 -1414,3619,2013-11-08 01:10:15 -0800,314,973 -1415,3635,2013-11-12 17:31:36 -0800,315,977 -1416,4327,2013-11-10 16:53:32 -0800,315,977 -1417,2636,2013-11-08 21:20:11 -0800,315,978 -1418,4337,2013-11-08 07:24:53 -0800,316,980 -1419,8950,2013-11-09 00:59:38 -0800,316,980 -1420,6116,2013-11-11 05:22:47 -0800,316,979 -1421,8650,2013-11-11 18:44:05 -0800,316,980 -1422,5892,2013-11-11 00:20:11 -0800,316,981 -1423,3990,2013-11-07 19:51:01 -0800,316,980 -1424,4926,2013-11-06 08:56:31 -0800,317,983 -1425,2118,2013-11-08 09:40:14 -0800,317,983 -1426,9426,2013-11-08 06:09:33 -0800,317,982 -1427,8415,2013-11-11 19:13:58 -0800,318,986 -1428,539,2013-11-09 17:03:21 -0800,318,986 -1429,1283,2013-11-12 01:17:43 -0800,318,986 -1430,927,2013-11-10 14:16:43 -0800,319,990 -1431,5377,2013-11-07 04:32:57 -0800,319,989 -1432,6777,2013-11-07 07:41:36 -0800,319,989 -1433,3433,2013-11-11 20:20:15 -0800,319,988 -1434,3215,2013-11-12 09:26:52 -0800,320,991 -1435,3011,2013-11-08 18:07:11 -0800,321,993 -1436,8246,2013-11-12 19:13:10 -0800,321,994 -1437,4360,2013-11-08 20:54:59 -0800,321,994 -1438,2988,2013-11-10 00:01:04 -0800,322,997 -1439,8865,2013-11-11 16:27:05 -0800,322,996 -1440,461,2013-11-11 12:10:47 -0800,323,1001 -1441,9727,2013-11-11 03:07:09 -0800,324,1003 -1442,8430,2013-11-08 05:53:32 -0800,324,1002 -1443,1341,2013-11-06 22:33:05 -0800,324,1002 -1444,4676,2013-11-06 22:37:28 -0800,325,1005 -1445,2341,2013-11-09 22:26:01 -0800,325,1005 -1446,669,2013-11-07 08:10:46 -0800,325,1006 -1447,8036,2013-11-09 19:58:14 -0800,325,1006 -1448,4685,2013-11-08 04:25:25 -0800,325,1008 -1449,2679,2013-11-07 08:19:18 -0800,326,1010 -1450,2010,2013-11-12 04:19:33 -0800,327,1015 -1451,0,2013-11-08 04:50:03 -0800,327,1014 -1452,6361,2013-11-07 02:42:33 -0800,327,1016 -1453,7754,2013-11-07 07:27:22 -0800,327,1016 -1454,5156,2013-11-07 23:27:28 -0800,327,1013 -1455,6645,2013-11-10 14:55:15 -0800,327,1016 -1456,9858,2013-11-11 20:37:06 -0800,327,1017 -1457,1312,2013-11-07 17:04:30 -0800,328,1018 -1458,4214,2013-11-08 13:43:27 -0800,328,1018 -1459,3636,2013-11-10 19:21:08 -0800,328,1018 -1460,655,2013-11-11 03:00:03 -0800,328,1018 -1461,2939,2013-11-07 20:40:20 -0800,328,1018 -1462,8659,2013-11-07 17:33:29 -0800,329,1019 -1463,7284,2013-11-07 13:25:06 -0800,330,1020 -1464,2420,2013-11-09 20:41:14 -0800,331,1023 -1465,3870,2013-11-07 14:39:02 -0800,331,1023 -1466,4547,2013-11-08 06:20:19 -0800,331,1023 -1467,131,2013-11-08 02:53:56 -0800,331,1023 -1468,4826,2013-11-07 01:20:46 -0800,332,1024 -1469,1821,2013-11-11 01:01:08 -0800,332,1024 -1470,549,2013-11-08 15:28:46 -0800,332,1025 -1471,8184,2013-11-11 16:06:56 -0800,332,1024 -1472,4852,2013-11-08 11:49:56 -0800,332,1024 -1473,9266,2013-11-07 16:21:14 -0800,332,1024 -1474,8298,2013-11-11 00:22:50 -0800,332,1025 -1475,3840,2013-11-10 12:19:12 -0800,332,1024 -1476,2737,2013-11-11 19:11:41 -0800,332,1025 -1477,6881,2013-11-07 22:57:51 -0800,333,1030 -1478,4760,2013-11-11 14:40:26 -0800,333,1027 -1479,3052,2013-11-10 11:21:05 -0800,334,1031 -1480,4418,2013-11-09 20:08:34 -0800,334,1032 -1481,1689,2013-11-12 23:58:59 -0800,334,1032 -1482,6117,2013-11-10 09:38:27 -0800,334,1032 -1483,7297,2013-11-09 10:31:45 -0800,334,1033 -1484,1411,2013-11-07 09:43:29 -0800,334,1032 -1485,3847,2013-11-10 14:22:27 -0800,335,1035 -1486,311,2013-11-08 17:38:40 -0800,335,1034 -1487,3036,2013-11-11 14:41:07 -0800,335,1035 -1488,7952,2013-11-10 02:35:32 -0800,336,1038 -1489,788,2013-11-08 21:49:48 -0800,336,1036 -1490,458,2013-11-09 04:59:53 -0800,337,1041 -1491,6675,2013-11-09 11:55:35 -0800,337,1041 -1492,5846,2013-11-09 21:32:22 -0800,338,1042 -1493,4175,2013-11-10 03:50:28 -0800,338,1042 -1494,9777,2013-11-10 08:24:38 -0800,338,1042 -1495,2621,2013-11-07 01:04:12 -0800,338,1042 -1496,9830,2013-11-07 14:38:25 -0800,338,1042 -1497,681,2013-11-12 11:12:02 -0800,338,1042 -1498,534,2013-11-07 22:43:55 -0800,338,1042 -1499,3938,2013-11-11 22:51:54 -0800,339,1043 -1500,9325,2013-11-12 14:39:49 -0800,339,1043 -1501,9478,2013-11-13 04:14:09 -0800,339,1043 -1502,2546,2013-11-11 00:24:09 -0800,339,1043 -1503,4998,2013-11-09 07:28:00 -0800,339,1043 -1504,8822,2013-11-13 02:09:10 -0800,339,1043 -1505,2559,2013-11-10 17:16:59 -0800,339,1043 -1506,5187,2013-11-10 09:43:34 -0800,339,1043 -1507,315,2013-11-07 23:41:20 -0800,340,1044 -1508,1719,2013-11-08 20:27:45 -0800,340,1044 -1509,9156,2013-11-12 06:25:06 -0800,340,1044 -1510,8398,2013-11-12 17:03:27 -0800,340,1044 -1511,5722,2013-11-08 10:31:01 -0800,340,1044 -1512,2554,2013-11-11 01:01:41 -0800,340,1044 -1513,6359,2013-11-07 08:11:21 -0800,340,1044 -1514,8616,2013-11-08 18:03:15 -0800,341,1046 -1515,5868,2013-11-12 01:31:55 -0800,341,1047 -1516,8023,2013-11-11 17:21:25 -0800,341,1046 -1517,1028,2013-11-06 15:11:40 -0800,341,1045 -1518,7692,2013-11-09 10:18:21 -0800,341,1046 -1519,5511,2013-11-11 09:55:25 -0800,342,1048 -1520,7443,2013-11-07 06:26:58 -0800,342,1048 -1521,9861,2013-11-11 20:17:36 -0800,342,1048 -1522,7027,2013-11-06 15:56:31 -0800,342,1048 -1523,7520,2013-11-12 00:07:27 -0800,342,1048 -1524,5387,2013-11-10 15:37:18 -0800,342,1048 -1525,1613,2013-11-10 00:19:41 -0800,342,1048 -1526,2360,2013-11-07 14:00:49 -0800,342,1048 -1527,4517,2013-11-13 06:57:25 -0800,343,1053 -1528,1689,2013-11-10 04:28:49 -0800,343,1049 -1529,6184,2013-11-13 01:17:46 -0800,343,1052 -1530,8672,2013-11-07 22:51:03 -0800,343,1050 -1531,9850,2013-11-08 16:33:43 -0800,343,1051 -1532,8828,2013-11-10 13:51:22 -0800,344,1054 -1533,8040,2013-11-09 18:37:15 -0800,344,1054 -1534,1573,2013-11-11 05:52:49 -0800,345,1058 -1535,9440,2013-11-08 15:21:36 -0800,345,1060 -1536,1330,2013-11-07 14:38:16 -0800,345,1060 -1537,2829,2013-11-13 05:12:30 -0800,345,1059 -1538,1330,2013-11-10 18:42:47 -0800,345,1061 -1539,9812,2013-11-07 13:40:53 -0800,345,1060 -1540,7047,2013-11-13 05:11:14 -0800,345,1058 -1541,4157,2013-11-07 08:23:12 -0800,346,1062 -1542,3090,2013-11-12 16:04:11 -0800,346,1062 -1543,5445,2013-11-07 17:34:50 -0800,346,1062 -1544,8757,2013-11-10 12:17:32 -0800,346,1063 -1545,1797,2013-11-08 18:43:23 -0800,347,1064 -1546,5528,2013-11-10 18:54:37 -0800,347,1064 -1547,836,2013-11-08 19:59:40 -0800,347,1065 -1548,4750,2013-11-08 14:01:11 -0800,347,1065 -1549,9769,2013-11-10 07:45:36 -0800,347,1066 -1550,2061,2013-11-07 20:02:43 -0800,347,1064 -1551,4286,2013-11-09 21:38:36 -0800,347,1065 -1552,9480,2013-11-12 12:36:22 -0800,348,1067 -1553,4099,2013-11-07 13:05:08 -0800,348,1069 -1554,9192,2013-11-07 17:44:41 -0800,348,1067 -1555,7184,2013-11-08 06:07:11 -0800,348,1067 -1556,6219,2013-11-08 19:02:24 -0800,348,1068 -1557,6321,2013-11-10 06:46:36 -0800,348,1067 -1558,4052,2013-11-07 08:12:46 -0800,349,1071 -1559,1842,2013-11-09 04:56:01 -0800,349,1072 -1560,4046,2013-11-06 16:13:02 -0800,349,1072 -1561,8671,2013-11-09 12:58:29 -0800,349,1071 -1562,3645,2013-11-08 22:11:12 -0800,349,1072 -1563,8156,2013-11-12 22:22:16 -0800,349,1071 -1564,6970,2013-11-11 14:13:44 -0800,349,1072 -1565,1244,2013-11-10 02:21:02 -0800,349,1071 -1566,4876,2013-11-11 03:23:11 -0800,349,1072 -1567,9879,2013-11-12 17:33:49 -0800,350,1074 -1568,7350,2013-11-07 06:51:40 -0800,351,1077 -1569,3070,2013-11-09 01:25:16 -0800,351,1077 -1570,8385,2013-11-06 15:38:34 -0800,351,1079 -1571,7326,2013-11-10 18:33:01 -0800,351,1081 -1572,81,2013-11-10 23:00:44 -0800,352,1083 -1573,1169,2013-11-12 06:36:32 -0800,352,1082 -1574,9194,2013-11-12 07:36:24 -0800,352,1082 -1575,2630,2013-11-09 10:26:18 -0800,352,1084 -1576,5790,2013-11-10 16:23:59 -0800,352,1084 -1577,2530,2013-11-11 19:38:04 -0800,353,1086 -1578,3965,2013-11-10 08:02:11 -0800,353,1086 -1579,8817,2013-11-11 15:14:23 -0800,353,1086 -1580,1375,2013-11-11 15:23:13 -0800,353,1086 -1581,5340,2013-11-07 15:56:43 -0800,353,1086 -1582,3390,2013-11-06 23:52:35 -0800,353,1086 -1583,7995,2013-11-08 12:03:03 -0800,353,1086 -1584,3030,2013-11-10 03:16:16 -0800,354,1091 -1585,6751,2013-11-08 17:29:25 -0800,354,1087 -1586,9077,2013-11-07 20:16:57 -0800,354,1091 -1587,3984,2013-11-07 10:33:21 -0800,354,1087 -1588,7331,2013-11-10 05:24:36 -0800,355,1093 -1589,1945,2013-11-07 05:44:27 -0800,355,1092 -1590,6867,2013-11-09 23:01:33 -0800,355,1094 -1591,1780,2013-11-07 23:50:35 -0800,356,1097 -1592,7342,2013-11-07 02:36:12 -0800,356,1095 -1593,6993,2013-11-11 07:17:36 -0800,356,1097 -1594,8644,2013-11-07 11:31:57 -0800,356,1095 -1595,6283,2013-11-10 12:20:29 -0800,356,1095 -1596,2647,2013-11-11 02:02:16 -0800,357,1099 -1597,3789,2013-11-11 09:16:53 -0800,357,1100 -1598,2767,2013-11-06 22:54:15 -0800,357,1098 -1599,2512,2013-11-08 19:37:12 -0800,357,1099 -1600,3810,2013-11-11 03:55:24 -0800,357,1099 -1601,5282,2013-11-07 20:24:23 -0800,357,1098 -1602,4217,2013-11-10 15:55:28 -0800,358,1101 -1603,2774,2013-11-12 12:05:17 -0800,358,1101 -1604,6036,2013-11-12 22:08:58 -0800,359,1102 -1605,8915,2013-11-11 00:34:42 -0800,359,1103 -1606,19,2013-11-10 15:08:40 -0800,359,1103 -1607,564,2013-11-09 01:03:28 -0800,359,1103 -1608,1667,2013-11-11 14:41:48 -0800,359,1103 -1609,483,2013-11-12 17:41:17 -0800,359,1102 -1610,8091,2013-11-08 02:58:23 -0800,360,1104 -1611,4122,2013-11-09 11:52:10 -0800,360,1104 -1612,7818,2013-11-11 09:14:01 -0800,360,1104 -1613,99,2013-11-08 07:29:02 -0800,360,1104 -1614,8983,2013-11-09 11:58:48 -0800,360,1106 -1615,844,2013-11-09 18:38:23 -0800,362,1112 -1616,2297,2013-11-10 16:07:09 -0800,362,1112 -1617,3197,2013-11-07 06:56:11 -0800,362,1111 -1618,4177,2013-11-12 23:37:19 -0800,362,1111 -1619,1930,2013-11-09 10:37:15 -0800,362,1111 -1620,5148,2013-11-13 08:08:46 -0800,362,1112 -1621,6297,2013-11-06 09:05:43 -0800,362,1112 -1622,8682,2013-11-07 12:42:48 -0800,363,1113 -1623,3476,2013-11-08 13:36:57 -0800,363,1114 -1624,6827,2013-11-13 02:27:15 -0800,363,1113 -1625,4514,2013-11-10 16:19:51 -0800,363,1114 -1626,4692,2013-11-11 09:01:03 -0800,363,1113 -1627,1231,2013-11-07 02:06:07 -0800,363,1114 -1628,9518,2013-11-09 16:03:31 -0800,364,1116 -1629,3327,2013-11-11 03:42:05 -0800,364,1116 -1630,2476,2013-11-08 11:43:37 -0800,364,1119 -1631,5243,2013-11-07 00:34:43 -0800,364,1117 -1632,1777,2013-11-12 09:19:10 -0800,364,1118 -1633,4420,2013-11-10 17:38:05 -0800,364,1118 -1634,7834,2013-11-07 04:47:21 -0800,365,1121 -1635,4766,2013-11-09 15:55:52 -0800,366,1125 -1636,1134,2013-11-07 05:47:59 -0800,366,1123 -1637,4875,2013-11-07 13:14:24 -0800,366,1123 -1638,8968,2013-11-06 20:59:31 -0800,366,1123 -1639,344,2013-11-11 15:47:02 -0800,366,1126 -1640,566,2013-11-09 13:17:01 -0800,366,1124 -1641,7119,2013-11-11 04:10:47 -0800,366,1126 -1642,8274,2013-11-12 20:09:11 -0800,367,1131 -1643,4897,2013-11-13 05:00:22 -0800,367,1128 -1644,7922,2013-11-07 00:31:56 -0800,367,1130 -1645,5878,2013-11-13 03:43:15 -0800,368,1132 -1646,5991,2013-11-07 23:43:10 -0800,368,1132 -1647,5263,2013-11-10 09:29:19 -0800,369,1138 -1648,3750,2013-11-06 20:01:27 -0800,369,1138 -1649,4581,2013-11-10 12:57:34 -0800,369,1137 -1650,8545,2013-11-09 06:29:13 -0800,369,1137 -1651,5012,2013-11-07 07:13:06 -0800,369,1138 -1652,2261,2013-11-12 22:10:45 -0800,369,1137 -1653,7719,2013-11-12 20:26:02 -0800,369,1138 -1654,2835,2013-11-09 14:27:36 -0800,369,1138 -1655,4047,2013-11-09 22:37:03 -0800,369,1139 -1656,4740,2013-11-12 15:59:36 -0800,370,1143 -1657,4575,2013-11-11 23:37:25 -0800,370,1141 -1658,7190,2013-11-08 01:22:16 -0800,370,1143 -1659,236,2013-11-12 23:05:08 -0800,370,1142 -1660,2630,2013-11-07 17:49:03 -0800,370,1143 -1661,6620,2013-11-10 14:39:06 -0800,370,1141 -1662,2071,2013-11-06 09:39:59 -0800,370,1141 -1663,348,2013-11-07 11:28:50 -0800,371,1145 -1664,7940,2013-11-12 15:14:08 -0800,371,1145 -1665,9899,2013-11-10 19:26:40 -0800,371,1148 -1666,6183,2013-11-12 11:27:34 -0800,371,1145 -1667,5876,2013-11-07 21:41:37 -0800,371,1147 -1668,813,2013-11-09 13:42:14 -0800,371,1145 -1669,9128,2013-11-10 19:18:43 -0800,371,1146 -1670,8667,2013-11-09 04:50:18 -0800,372,1151 -1671,8563,2013-11-10 01:24:42 -0800,372,1153 -1672,1934,2013-11-09 23:08:25 -0800,372,1150 -1673,1577,2013-11-06 10:04:12 -0800,372,1153 -1674,9468,2013-11-07 18:40:21 -0800,373,1158 -1675,9770,2013-11-10 02:09:08 -0800,373,1156 -1676,6822,2013-11-09 01:56:21 -0800,375,1161 -1677,7423,2013-11-13 01:59:53 -0800,376,1165 -1678,6347,2013-11-10 17:43:09 -0800,376,1165 -1679,5830,2013-11-09 06:58:27 -0800,376,1165 -1680,4418,2013-11-09 21:48:23 -0800,376,1165 -1681,3754,2013-11-12 17:19:51 -0800,376,1165 -1682,6052,2013-11-07 08:21:36 -0800,376,1165 -1683,6258,2013-11-09 04:08:17 -0800,377,1166 -1684,7287,2013-11-06 21:37:02 -0800,377,1166 -1685,5737,2013-11-08 08:40:20 -0800,377,1167 -1686,6172,2013-11-08 20:45:34 -0800,377,1166 -1687,225,2013-11-10 04:46:07 -0800,378,1168 -1688,3900,2013-11-12 01:26:12 -0800,378,1168 -1689,2153,2013-11-08 22:02:47 -0800,378,1168 -1690,7181,2013-11-11 02:05:34 -0800,378,1168 -1691,6450,2013-11-09 01:53:47 -0800,378,1168 -1692,8840,2013-11-07 23:06:23 -0800,378,1168 -1693,8274,2013-11-10 08:59:04 -0800,378,1168 -1694,8069,2013-11-13 01:06:43 -0800,378,1168 -1695,2871,2013-11-10 22:06:34 -0800,378,1168 -1696,3886,2013-11-06 14:16:49 -0800,379,1170 -1697,9874,2013-11-06 22:57:51 -0800,379,1169 -1698,9395,2013-11-12 17:16:02 -0800,379,1173 -1699,3121,2013-11-07 11:16:45 -0800,379,1172 -1700,1564,2013-11-09 18:51:12 -0800,380,1175 -1701,3610,2013-11-11 07:36:20 -0800,380,1176 -1702,2343,2013-11-12 17:40:05 -0800,380,1174 -1703,9510,2013-11-09 13:27:05 -0800,380,1177 -1704,1735,2013-11-12 02:47:21 -0800,381,1178 -1705,2143,2013-11-13 06:19:40 -0800,382,1182 -1706,5174,2013-11-12 00:53:26 -0800,382,1182 -1707,4422,2013-11-06 16:36:24 -0800,382,1182 -1708,6520,2013-11-09 19:20:08 -0800,383,1186 -1709,1310,2013-11-08 08:27:28 -0800,383,1184 -1710,9613,2013-11-06 18:39:36 -0800,383,1183 -1711,2185,2013-11-11 00:57:54 -0800,383,1184 -1712,9784,2013-11-11 00:18:42 -0800,384,1188 -1713,4350,2013-11-11 23:41:32 -0800,384,1187 -1714,1539,2013-11-11 02:45:23 -0800,384,1188 -1715,9332,2013-11-11 18:32:23 -0800,384,1187 -1716,1011,2013-11-12 21:17:29 -0800,384,1187 -1717,1761,2013-11-07 13:44:08 -0800,384,1187 -1718,4881,2013-11-11 20:03:56 -0800,384,1187 -1719,9772,2013-11-08 01:23:39 -0800,385,1190 -1720,8486,2013-11-07 05:42:09 -0800,385,1189 -1721,1642,2013-11-12 01:40:51 -0800,385,1190 -1722,4117,2013-11-12 07:17:30 -0800,386,1191 -1723,2986,2013-11-11 23:25:22 -0800,386,1192 -1724,5851,2013-11-07 06:28:16 -0800,386,1192 -1725,3193,2013-11-06 13:15:19 -0800,386,1192 -1726,6786,2013-11-09 03:20:37 -0800,386,1192 -1727,3112,2013-11-11 01:25:44 -0800,387,1193 -1728,2133,2013-11-07 01:27:21 -0800,387,1194 -1729,8579,2013-11-12 02:12:48 -0800,387,1194 -1730,9860,2013-11-09 12:26:30 -0800,387,1193 -1731,1326,2013-11-11 12:20:52 -0800,387,1194 -1732,2775,2013-11-10 03:50:36 -0800,387,1194 -1733,765,2013-11-09 21:56:28 -0800,387,1194 -1734,9670,2013-11-07 11:47:00 -0800,387,1193 -1735,6963,2013-11-07 18:22:28 -0800,388,1196 -1736,1176,2013-11-07 05:57:58 -0800,388,1195 -1737,7318,2013-11-08 11:29:25 -0800,388,1196 -1738,8059,2013-11-07 04:43:48 -0800,388,1196 -1739,3818,2013-11-11 03:29:19 -0800,389,1197 -1740,6036,2013-11-10 19:40:08 -0800,389,1197 -1741,13,2013-11-10 11:47:21 -0800,389,1197 -1742,975,2013-11-12 22:16:31 -0800,389,1197 -1743,2564,2013-11-08 14:23:33 -0800,390,1201 -1744,1957,2013-11-06 15:19:03 -0800,390,1202 -1745,2122,2013-11-13 03:53:23 -0800,390,1199 -1746,1653,2013-11-07 06:42:02 -0800,390,1200 -1747,2049,2013-11-09 23:51:23 -0800,390,1202 -1748,9656,2013-11-09 10:49:30 -0800,390,1198 -1749,360,2013-11-10 01:12:57 -0800,391,1203 -1750,2454,2013-11-11 16:18:17 -0800,392,1206 -1751,8078,2013-11-11 01:47:55 -0800,392,1205 -1752,8257,2013-11-07 04:42:14 -0800,392,1206 -1753,1129,2013-11-07 01:47:21 -0800,392,1206 -1754,6191,2013-11-12 22:27:13 -0800,392,1206 -1755,9845,2013-11-09 00:25:41 -0800,393,1207 -1756,5646,2013-11-07 23:06:39 -0800,393,1211 -1757,6163,2013-11-10 23:41:52 -0800,393,1211 -1758,2432,2013-11-09 11:12:50 -0800,393,1211 -1759,93,2013-11-11 07:10:18 -0800,393,1210 -1760,8425,2013-11-08 12:02:41 -0800,393,1209 -1761,9685,2013-11-07 01:06:03 -0800,393,1209 -1762,2436,2013-11-12 18:41:04 -0800,393,1207 -1763,5343,2013-11-06 10:27:51 -0800,394,1212 -1764,1376,2013-11-08 21:01:58 -0800,394,1212 -1765,7765,2013-11-09 08:04:08 -0800,394,1214 -1766,2096,2013-11-06 12:16:52 -0800,394,1214 -1767,8410,2013-11-10 12:35:38 -0800,394,1213 -1768,8088,2013-11-11 05:33:36 -0800,395,1216 -1769,981,2013-11-11 08:32:07 -0800,395,1216 -1770,6520,2013-11-09 20:57:49 -0800,395,1215 -1771,888,2013-11-11 06:29:31 -0800,395,1217 -1772,3459,2013-11-09 09:13:56 -0800,395,1215 -1773,3058,2013-11-13 06:40:51 -0800,395,1217 -1774,1227,2013-11-09 18:18:22 -0800,395,1217 -1775,2717,2013-11-09 01:27:52 -0800,395,1215 -1776,9068,2013-11-10 11:55:05 -0800,395,1217 -1777,4355,2013-11-10 17:31:29 -0800,396,1218 -1778,2583,2013-11-07 06:58:35 -0800,396,1218 -1779,8320,2013-11-12 08:22:22 -0800,396,1218 -1780,1613,2013-11-13 05:35:51 -0800,396,1218 -1781,856,2013-11-11 17:48:21 -0800,396,1218 -1782,4333,2013-11-11 07:00:35 -0800,396,1218 -1783,6536,2013-11-07 03:24:19 -0800,397,1220 -1784,4148,2013-11-12 07:41:35 -0800,397,1219 -1785,8747,2013-11-12 07:25:20 -0800,398,1223 -1786,8466,2013-11-10 06:14:46 -0800,399,1227 -1787,933,2013-11-07 11:02:51 -0800,399,1225 -1788,7125,2013-11-11 13:01:36 -0800,399,1226 -1789,9180,2013-11-10 20:59:00 -0800,399,1227 -1790,7433,2013-11-09 09:45:47 -0800,399,1228 -1791,5574,2013-11-10 18:48:48 -0800,399,1228 -1792,2046,2013-11-11 10:40:44 -0800,400,1232 -1793,7322,2013-11-07 03:44:16 -0800,400,1232 -1794,8881,2013-11-07 23:16:26 -0800,401,1235 -1795,6225,2013-11-08 08:07:20 -0800,401,1234 -1796,7740,2013-11-13 04:33:25 -0800,402,1236 -1797,2640,2013-11-10 18:00:36 -0800,402,1236 -1798,6670,2013-11-06 23:48:14 -0800,402,1236 -1799,7462,2013-11-12 13:19:18 -0800,402,1236 -1800,5250,2013-11-08 07:47:49 -0800,402,1236 -1801,3534,2013-11-06 12:51:35 -0800,402,1236 -1802,8097,2013-11-10 10:04:00 -0800,403,1237 -1803,3989,2013-11-10 12:11:04 -0800,403,1238 -1804,3254,2013-11-10 16:21:18 -0800,403,1237 -1805,1168,2013-11-06 14:06:10 -0800,404,1241 -1806,4480,2013-11-06 18:07:26 -0800,405,1245 -1807,9835,2013-11-10 10:33:19 -0800,405,1244 -1808,8129,2013-11-09 05:51:40 -0800,405,1245 -1809,4756,2013-11-07 17:38:43 -0800,405,1246 -1810,6267,2013-11-06 14:59:47 -0800,405,1242 -1811,3651,2013-11-07 20:12:26 -0800,405,1246 -1812,5843,2013-11-11 05:04:52 -0800,405,1246 -1813,2870,2013-11-12 19:36:59 -0800,405,1246 -1814,1054,2013-11-09 04:29:00 -0800,406,1248 -1815,2110,2013-11-06 15:16:32 -0800,406,1247 -1816,6837,2013-11-11 13:35:26 -0800,406,1248 -1817,1369,2013-11-13 02:49:25 -0800,406,1248 -1818,1788,2013-11-08 11:39:30 -0800,406,1248 -1819,718,2013-11-08 12:31:34 -0800,406,1248 -1820,1650,2013-11-10 20:27:46 -0800,406,1249 -1821,5221,2013-11-07 09:12:06 -0800,406,1249 -1822,8866,2013-11-11 20:02:31 -0800,408,1253 -1823,6180,2013-11-07 00:04:57 -0800,408,1253 -1824,1525,2013-11-08 10:15:14 -0800,408,1253 -1825,884,2013-11-07 21:20:23 -0800,408,1253 -1826,326,2013-11-10 09:41:33 -0800,408,1253 -1827,6919,2013-11-09 11:04:03 -0800,408,1253 -1828,7954,2013-11-07 03:30:41 -0800,408,1253 -1829,6495,2013-11-10 05:52:00 -0800,408,1253 -1830,3142,2013-11-12 11:12:58 -0800,408,1253 -1831,1676,2013-11-08 18:38:40 -0800,409,1254 -1832,2992,2013-11-08 04:07:41 -0800,410,1255 -1833,6414,2013-11-11 03:13:40 -0800,410,1255 -1834,6741,2013-11-06 22:14:28 -0800,410,1256 -1835,4715,2013-11-12 11:03:01 -0800,410,1256 -1836,3965,2013-11-12 21:07:29 -0800,410,1256 -1837,6026,2013-11-12 15:44:06 -0800,410,1257 -1838,5960,2013-11-11 05:36:59 -0800,410,1256 -1839,3367,2013-11-09 09:19:11 -0800,410,1257 -1840,4348,2013-11-08 22:47:50 -0800,410,1257 -1841,952,2013-11-11 01:54:50 -0800,411,1258 -1842,3249,2013-11-11 04:33:02 -0800,412,1261 -1843,1248,2013-11-09 07:47:41 -0800,412,1261 -1844,8061,2013-11-12 18:01:25 -0800,412,1261 -1845,7431,2013-11-12 13:12:39 -0800,412,1261 -1846,1755,2013-11-09 15:16:43 -0800,412,1261 -1847,371,2013-11-08 00:25:19 -0800,412,1261 -1848,2741,2013-11-12 22:09:24 -0800,412,1261 -1849,8877,2013-11-11 23:58:42 -0800,412,1261 -1850,5677,2013-11-07 13:00:08 -0800,413,1263 -1851,261,2013-11-09 15:41:52 -0800,413,1263 -1852,3276,2013-11-10 02:24:15 -0800,413,1262 -1853,4652,2013-11-10 21:54:37 -0800,413,1263 -1854,2990,2013-11-10 23:11:17 -0800,413,1263 -1855,5711,2013-11-06 14:21:31 -0800,413,1262 -1856,9186,2013-11-07 08:40:30 -0800,413,1262 -1857,9368,2013-11-12 19:57:27 -0800,414,1265 -1858,3693,2013-11-12 16:05:29 -0800,414,1264 -1859,2180,2013-11-10 18:58:41 -0800,414,1264 -1860,1811,2013-11-07 02:37:55 -0800,414,1264 -1861,9825,2013-11-07 06:33:47 -0800,414,1265 -1862,9223,2013-11-13 05:33:00 -0800,414,1264 -1863,8270,2013-11-12 23:33:19 -0800,414,1265 -1864,3686,2013-11-06 11:40:21 -0800,414,1264 -1865,7040,2013-11-10 14:18:22 -0800,414,1265 -1866,7859,2013-11-07 00:29:51 -0800,415,1266 -1867,6081,2013-11-12 07:12:16 -0800,415,1266 -1868,667,2013-11-09 11:36:32 -0800,416,1268 -1869,3120,2013-11-12 13:54:10 -0800,416,1269 -1870,3722,2013-11-07 15:37:15 -0800,416,1269 -1871,977,2013-11-09 02:28:40 -0800,416,1269 -1872,1860,2013-11-08 13:53:09 -0800,417,1273 -1873,7134,2013-11-11 18:43:23 -0800,417,1270 -1874,3120,2013-11-10 16:30:41 -0800,417,1271 -1875,6054,2013-11-08 14:15:26 -0800,417,1272 -1876,673,2013-11-12 00:07:23 -0800,421,1283 -1877,6887,2013-11-09 07:34:19 -0800,421,1281 -1878,2495,2013-11-09 22:38:25 -0800,422,1285 -1879,8139,2013-11-10 12:02:37 -0800,422,1288 -1880,8170,2013-11-08 11:19:52 -0800,422,1287 -1881,6572,2013-11-11 19:40:19 -0800,422,1288 -1882,671,2013-11-06 13:04:50 -0800,422,1287 -1883,4270,2013-11-10 02:29:09 -0800,423,1293 -1884,3234,2013-11-10 16:50:27 -0800,423,1293 -1885,5721,2013-11-06 10:42:00 -0800,423,1290 -1886,3951,2013-11-07 20:20:12 -0800,423,1293 -1887,3382,2013-11-09 19:30:29 -0800,423,1293 -1888,1117,2013-11-12 03:51:16 -0800,423,1292 -1889,9459,2013-11-09 16:58:41 -0800,423,1290 -1890,3597,2013-11-07 01:23:50 -0800,423,1292 -1891,6118,2013-11-08 01:28:55 -0800,423,1293 -1892,5839,2013-11-06 19:39:10 -0800,424,1297 -1893,222,2013-11-12 21:46:25 -0800,424,1294 -1894,8520,2013-11-13 05:42:19 -0800,424,1294 -1895,2130,2013-11-11 14:40:22 -0800,424,1297 -1896,8328,2013-11-13 05:33:03 -0800,424,1295 -1897,6184,2013-11-09 17:42:17 -0800,424,1296 -1898,8492,2013-11-08 10:24:30 -0800,424,1296 -1899,5630,2013-11-09 20:51:09 -0800,424,1294 -1900,6080,2013-11-09 10:05:42 -0800,424,1294 -1901,3769,2013-11-12 20:17:02 -0800,425,1302 -1902,9553,2013-11-07 11:58:00 -0800,425,1302 -1903,7293,2013-11-12 11:22:46 -0800,425,1301 -1904,3456,2013-11-12 23:17:11 -0800,425,1299 -1905,892,2013-11-08 12:26:38 -0800,425,1301 -1906,5273,2013-11-11 19:54:34 -0800,425,1300 -1907,811,2013-11-08 13:52:52 -0800,425,1301 -1908,1230,2013-11-10 06:28:24 -0800,425,1298 -1909,960,2013-11-09 03:33:11 -0800,425,1301 -1910,6475,2013-11-06 21:06:14 -0800,426,1304 -1911,9400,2013-11-08 09:22:35 -0800,427,1305 -1912,6395,2013-11-06 12:35:24 -0800,427,1306 -1913,9383,2013-11-08 22:23:15 -0800,427,1306 -1914,8551,2013-11-13 02:49:03 -0800,427,1305 -1915,5352,2013-11-10 07:39:53 -0800,427,1307 -1916,3754,2013-11-08 13:26:32 -0800,427,1306 -1917,5119,2013-11-07 03:06:25 -0800,428,1308 -1918,3189,2013-11-10 15:18:19 -0800,428,1308 -1919,5692,2013-11-07 04:21:13 -0800,428,1308 -1920,2440,2013-11-11 06:26:41 -0800,428,1308 -1921,6615,2013-11-11 12:14:40 -0800,428,1308 -1922,2651,2013-11-08 07:00:44 -0800,428,1308 -1923,1578,2013-11-09 06:58:35 -0800,428,1308 -1924,7086,2013-11-07 13:29:06 -0800,428,1308 -1925,9080,2013-11-08 20:56:57 -0800,428,1308 -1926,1118,2013-11-11 12:07:58 -0800,429,1311 -1927,7389,2013-11-11 03:09:09 -0800,429,1309 -1928,5050,2013-11-11 05:16:44 -0800,429,1309 -1929,1541,2013-11-07 16:09:34 -0800,429,1311 -1930,6898,2013-11-10 15:03:52 -0800,429,1310 -1931,8787,2013-11-06 08:37:35 -0800,429,1309 -1932,1533,2013-11-13 00:29:34 -0800,430,1313 -1933,7044,2013-11-13 01:11:12 -0800,430,1313 -1934,4197,2013-11-11 22:10:25 -0800,430,1312 -1935,9586,2013-11-07 15:27:36 -0800,430,1313 -1936,2321,2013-11-12 16:43:19 -0800,430,1312 -1937,1160,2013-11-07 15:03:29 -0800,430,1312 -1938,2223,2013-11-13 08:30:56 -0800,430,1313 -1939,9118,2013-11-11 12:14:11 -0800,430,1313 -1940,2653,2013-11-10 19:41:05 -0800,430,1312 -1941,4290,2013-11-11 13:41:48 -0800,431,1318 -1942,8431,2013-11-11 10:19:48 -0800,431,1316 -1943,2410,2013-11-11 05:01:48 -0800,431,1314 -1944,3836,2013-11-06 22:02:06 -0800,431,1316 -1945,3297,2013-11-10 05:30:31 -0800,431,1316 -1946,3915,2013-11-11 02:26:43 -0800,431,1317 -1947,9162,2013-11-08 16:45:19 -0800,431,1314 -1948,9749,2013-11-09 23:37:20 -0800,431,1314 -1949,2560,2013-11-11 19:41:07 -0800,432,1319 -1950,3536,2013-11-12 07:49:31 -0800,432,1319 -1951,3753,2013-11-08 16:36:04 -0800,432,1319 -1952,8338,2013-11-07 15:30:02 -0800,432,1319 -1953,8750,2013-11-13 00:24:50 -0800,432,1319 -1954,2631,2013-11-13 04:27:01 -0800,432,1319 -1955,1855,2013-11-10 15:09:10 -0800,432,1319 -1956,5834,2013-11-09 23:16:44 -0800,432,1319 -1957,9222,2013-11-08 14:14:46 -0800,433,1323 -1958,5461,2013-11-08 02:16:56 -0800,434,1326 -1959,5688,2013-11-07 04:24:47 -0800,434,1327 -1960,5947,2013-11-07 07:04:24 -0800,434,1327 -1961,6114,2013-11-11 22:54:11 -0800,434,1329 -1962,2110,2013-11-07 20:54:28 -0800,434,1329 -1963,7138,2013-11-11 13:29:01 -0800,434,1329 -1964,2217,2013-11-11 17:25:22 -0800,434,1327 -1965,6754,2013-11-08 11:20:24 -0800,435,1330 -1966,3050,2013-11-11 20:18:53 -0800,435,1330 -1967,3986,2013-11-11 20:42:44 -0800,435,1330 -1968,2999,2013-11-07 17:14:02 -0800,436,1331 -1969,6450,2013-11-10 20:29:37 -0800,436,1335 -1970,2367,2013-11-08 03:29:39 -0800,436,1333 -1971,2531,2013-11-09 15:03:12 -0800,436,1334 -1972,3851,2013-11-08 00:11:45 -0800,437,1337 -1973,3960,2013-11-06 15:04:40 -0800,437,1336 -1974,3222,2013-11-10 01:27:12 -0800,437,1338 -1975,3272,2013-11-06 10:45:31 -0800,438,1339 -1976,4750,2013-11-10 02:24:16 -0800,438,1339 -1977,5858,2013-11-09 13:47:42 -0800,438,1339 -1978,1566,2013-11-09 22:31:58 -0800,438,1339 -1979,7050,2013-11-07 23:31:17 -0800,438,1339 -1980,1195,2013-11-12 00:21:13 -0800,438,1340 -1981,8636,2013-11-10 01:21:16 -0800,439,1342 -1982,682,2013-11-10 16:18:28 -0800,439,1343 -1983,9011,2013-11-11 02:25:02 -0800,439,1341 -1984,1739,2013-11-07 01:01:58 -0800,440,1347 -1985,1953,2013-11-06 23:20:29 -0800,440,1346 -1986,9029,2013-11-08 11:46:49 -0800,440,1346 -1987,7048,2013-11-10 03:08:50 -0800,440,1345 -1988,952,2013-11-12 11:46:25 -0800,440,1347 -1989,2755,2013-11-09 06:37:42 -0800,440,1345 -1990,7913,2013-11-06 08:35:40 -0800,440,1347 -1991,5992,2013-11-07 00:09:12 -0800,441,1348 -1992,5156,2013-11-12 05:12:18 -0800,441,1349 -1993,3822,2013-11-08 12:21:47 -0800,441,1349 -1994,8676,2013-11-10 15:22:47 -0800,441,1348 -1995,5366,2013-11-10 00:37:49 -0800,441,1349 -1996,4951,2013-11-11 14:51:47 -0800,442,1350 -1997,4898,2013-11-13 06:54:34 -0800,442,1352 -1998,455,2013-11-13 06:46:12 -0800,442,1354 -1999,416,2013-11-09 07:07:10 -0800,442,1354 -2000,3074,2013-11-11 00:29:28 -0800,443,1356 -2001,1939,2013-11-12 00:40:25 -0800,443,1358 -2002,4987,2013-11-07 09:06:10 -0800,443,1357 -2003,4279,2013-11-10 20:30:45 -0800,443,1357 -2004,2843,2013-11-07 16:31:34 -0800,443,1358 -2005,9460,2013-11-11 03:46:37 -0800,444,1360 -2006,740,2013-11-06 22:08:00 -0800,444,1360 -2007,977,2013-11-07 11:53:58 -0800,444,1359 -2008,5940,2013-11-09 22:33:16 -0800,444,1361 -2009,8795,2013-11-06 15:14:12 -0800,444,1360 -2010,9782,2013-11-12 22:27:58 -0800,444,1360 -2011,5268,2013-11-06 18:50:22 -0800,445,1362 -2012,1177,2013-11-06 22:34:33 -0800,445,1362 -2013,8685,2013-11-07 13:51:06 -0800,445,1363 -2014,1914,2013-11-10 06:44:11 -0800,446,1366 -2015,2989,2013-11-10 05:39:20 -0800,446,1365 -2016,4338,2013-11-12 02:30:09 -0800,446,1365 -2017,5414,2013-11-07 05:09:43 -0800,446,1366 -2018,4662,2013-11-13 01:43:01 -0800,446,1367 -2019,3396,2013-11-07 21:13:53 -0800,446,1368 -2020,2259,2013-11-08 23:29:13 -0800,446,1368 -2021,3461,2013-11-08 18:50:56 -0800,446,1365 -2022,327,2013-11-12 12:14:02 -0800,446,1365 -2023,1489,2013-11-13 07:20:41 -0800,448,1375 -2024,983,2013-11-10 19:39:56 -0800,448,1375 -2025,5220,2013-11-07 10:58:21 -0800,448,1375 -2026,1113,2013-11-12 14:35:31 -0800,448,1375 -2027,3222,2013-11-11 06:32:47 -0800,450,1384 -2028,8722,2013-11-12 16:55:56 -0800,450,1383 -2029,3717,2013-11-13 05:17:42 -0800,450,1382 -2030,2250,2013-11-06 10:04:59 -0800,450,1385 -2031,8599,2013-11-09 14:03:39 -0800,450,1384 -2032,6444,2013-11-07 05:08:23 -0800,450,1384 -2033,1797,2013-11-11 11:37:08 -0800,450,1382 -2034,5470,2013-11-07 09:44:58 -0800,450,1383 -2035,7092,2013-11-10 11:12:55 -0800,450,1383 -2036,3886,2013-11-12 20:06:35 -0800,451,1387 -2037,5674,2013-11-11 20:03:03 -0800,451,1388 -2038,9316,2013-11-11 23:17:22 -0800,451,1387 -2039,2980,2013-11-11 15:16:17 -0800,451,1387 -2040,7440,2013-11-06 22:57:31 -0800,451,1390 -2041,1739,2013-11-08 05:46:21 -0800,451,1388 -2042,6681,2013-11-11 20:49:39 -0800,453,1394 -2043,6269,2013-11-11 01:14:35 -0800,453,1395 -2044,1424,2013-11-08 04:33:39 -0800,453,1396 -2045,1398,2013-11-08 17:50:24 -0800,453,1395 -2046,1177,2013-11-11 14:30:04 -0800,454,1397 -2047,1964,2013-11-11 09:37:07 -0800,454,1397 -2048,2473,2013-11-08 19:00:23 -0800,454,1397 -2049,6294,2013-11-06 10:53:03 -0800,454,1397 -2050,1741,2013-11-08 21:39:17 -0800,454,1397 -2051,4457,2013-11-12 14:00:01 -0800,454,1397 -2052,3672,2013-11-12 04:36:56 -0800,455,1400 -2053,3790,2013-11-10 02:25:10 -0800,456,1405 -2054,8467,2013-11-08 04:43:20 -0800,456,1406 -2055,8013,2013-11-09 04:14:24 -0800,456,1407 -2056,4079,2013-11-12 14:30:58 -0800,456,1404 -2057,9162,2013-11-08 16:36:12 -0800,456,1406 -2058,5054,2013-11-11 18:48:23 -0800,456,1405 -2059,9188,2013-11-12 07:12:31 -0800,456,1407 -2060,7472,2013-11-06 23:59:57 -0800,456,1404 -2061,9831,2013-11-09 10:26:00 -0800,457,1410 -2062,6043,2013-11-11 22:29:41 -0800,457,1410 -2063,38,2013-11-08 16:29:49 -0800,457,1408 -2064,1285,2013-11-11 04:29:02 -0800,457,1408 -2065,6930,2013-11-13 06:43:16 -0800,457,1410 -2066,8189,2013-11-11 23:12:04 -0800,457,1409 -2067,6988,2013-11-11 16:08:42 -0800,458,1412 -2068,2730,2013-11-08 14:37:10 -0800,458,1412 -2069,6139,2013-11-12 17:48:56 -0800,458,1414 -2070,6717,2013-11-07 20:21:13 -0800,458,1412 -2071,8887,2013-11-11 23:44:11 -0800,458,1413 -2072,1050,2013-11-11 12:36:50 -0800,459,1416 -2073,3913,2013-11-08 20:52:48 -0800,459,1416 -2074,4747,2013-11-08 08:48:18 -0800,459,1416 -2075,8381,2013-11-09 14:20:10 -0800,460,1418 -2076,6600,2013-11-08 07:26:23 -0800,460,1418 -2077,6335,2013-11-06 12:22:10 -0800,460,1418 -2078,6030,2013-11-08 12:27:50 -0800,460,1418 -2079,8330,2013-11-13 05:51:14 -0800,460,1418 -2080,8960,2013-11-07 12:08:25 -0800,460,1418 -2081,1867,2013-11-13 04:21:33 -0800,460,1418 -2082,3664,2013-11-06 17:25:30 -0800,460,1418 -2083,440,2013-11-08 06:07:41 -0800,461,1423 -2084,1436,2013-11-08 10:54:34 -0800,461,1423 -2085,3193,2013-11-08 08:03:38 -0800,462,1424 -2086,3095,2013-11-09 22:58:42 -0800,462,1424 -2087,6890,2013-11-08 00:01:33 -0800,462,1424 -2088,2638,2013-11-08 08:20:03 -0800,462,1425 -2089,9597,2013-11-10 15:16:08 -0800,462,1424 -2090,7086,2013-11-10 12:51:19 -0800,462,1425 -2091,4433,2013-11-10 14:14:37 -0800,462,1424 -2092,1594,2013-11-13 08:32:33 -0800,463,1429 -2093,8142,2013-11-07 02:52:14 -0800,463,1427 -2094,8929,2013-11-07 20:18:54 -0800,465,1433 -2095,5588,2013-11-07 07:49:08 -0800,465,1436 -2096,8177,2013-11-09 06:24:19 -0800,465,1436 -2097,2925,2013-11-09 16:53:47 -0800,465,1437 -2098,5612,2013-11-07 21:30:21 -0800,465,1436 -2099,4151,2013-11-13 03:19:27 -0800,466,1439 -2100,1414,2013-11-12 14:51:21 -0800,466,1441 -2101,75,2013-11-09 00:21:49 -0800,466,1438 -2102,5484,2013-11-06 18:30:12 -0800,466,1441 -2103,3965,2013-11-10 21:13:55 -0800,466,1439 -2104,2128,2013-11-07 10:03:39 -0800,466,1438 -2105,8044,2013-11-12 19:24:59 -0800,466,1438 -2106,3384,2013-11-09 01:07:20 -0800,467,1442 -2107,6541,2013-11-09 14:20:36 -0800,467,1443 -2108,4476,2013-11-08 05:56:19 -0800,467,1443 -2109,1472,2013-11-11 01:29:33 -0800,467,1442 -2110,6391,2013-11-08 15:39:16 -0800,467,1443 -2111,1215,2013-11-10 03:03:32 -0800,467,1442 -2112,1070,2013-11-08 05:17:02 -0800,467,1442 -2113,640,2013-11-11 06:40:28 -0800,468,1448 -2114,7340,2013-11-07 09:15:20 -0800,468,1447 -2115,4786,2013-11-12 10:27:56 -0800,468,1447 -2116,5334,2013-11-12 15:22:46 -0800,468,1445 -2117,630,2013-11-08 21:32:31 -0800,468,1445 -2118,5018,2013-11-12 00:26:48 -0800,468,1444 -2119,5769,2013-11-10 01:58:05 -0800,469,1451 -2120,8095,2013-11-08 17:25:59 -0800,469,1449 -2121,4725,2013-11-10 17:40:19 -0800,469,1450 -2122,7769,2013-11-08 00:48:59 -0800,469,1449 -2123,7151,2013-11-07 18:22:14 -0800,470,1452 -2124,1130,2013-11-07 07:23:22 -0800,470,1454 -2125,5535,2013-11-12 10:55:39 -0800,470,1453 -2126,2473,2013-11-09 09:01:46 -0800,470,1453 -2127,2423,2013-11-07 17:52:49 -0800,470,1453 -2128,4440,2013-11-12 13:34:43 -0800,470,1454 -2129,4520,2013-11-10 19:43:45 -0800,470,1454 -2130,6050,2013-11-09 05:33:56 -0800,471,1458 -2131,9493,2013-11-08 08:26:06 -0800,471,1457 -2132,5272,2013-11-08 07:57:21 -0800,472,1460 -2133,5082,2013-11-12 11:21:48 -0800,472,1460 -2134,7773,2013-11-10 18:28:09 -0800,472,1460 -2135,5883,2013-11-12 13:29:17 -0800,473,1463 -2136,3374,2013-11-06 11:35:36 -0800,473,1461 -2137,430,2013-11-08 08:26:06 -0800,473,1463 -2138,7011,2013-11-06 13:38:06 -0800,473,1462 -2139,423,2013-11-13 00:57:51 -0800,473,1464 -2140,496,2013-11-13 04:44:15 -0800,473,1463 -2141,2429,2013-11-07 08:10:08 -0800,473,1463 -2142,5893,2013-11-09 20:34:40 -0800,473,1464 -2143,338,2013-11-07 08:22:35 -0800,473,1461 -2144,5427,2013-11-08 16:23:46 -0800,474,1466 -2145,5749,2013-11-10 23:34:54 -0800,474,1467 -2146,8633,2013-11-09 17:36:47 -0800,475,1471 -2147,1532,2013-11-09 21:29:00 -0800,475,1470 -2148,3796,2013-11-11 01:58:09 -0800,475,1471 -2149,4688,2013-11-06 16:02:54 -0800,475,1471 -2150,2533,2013-11-10 18:50:08 -0800,475,1471 -2151,6638,2013-11-08 11:07:30 -0800,475,1470 -2152,8045,2013-11-08 07:29:29 -0800,476,1474 -2153,7820,2013-11-07 14:41:35 -0800,477,1477 -2154,3933,2013-11-12 22:27:00 -0800,477,1476 -2155,9319,2013-11-07 02:02:34 -0800,477,1476 -2156,2874,2013-11-08 05:10:08 -0800,477,1476 -2157,5642,2013-11-06 13:40:47 -0800,477,1476 -2158,5354,2013-11-11 21:12:24 -0800,477,1476 -2159,3511,2013-11-12 08:28:41 -0800,477,1476 -2160,2287,2013-11-07 22:53:43 -0800,477,1477 -2161,5070,2013-11-08 11:31:41 -0800,478,1482 -2162,4844,2013-11-11 17:43:27 -0800,478,1478 -2163,9856,2013-11-11 21:28:43 -0800,478,1482 -2164,4566,2013-11-13 00:18:32 -0800,478,1478 -2165,1746,2013-11-09 17:37:20 -0800,478,1481 -2166,3095,2013-11-12 19:40:30 -0800,478,1481 -2167,8118,2013-11-10 17:09:05 -0800,478,1482 -2168,6777,2013-11-12 17:41:32 -0800,478,1480 -2169,5149,2013-11-07 12:46:54 -0800,479,1484 -2170,4792,2013-11-10 02:58:19 -0800,479,1483 -2171,490,2013-11-08 06:39:25 -0800,480,1486 -2172,2748,2013-11-08 23:29:19 -0800,483,1497 -2173,7540,2013-11-08 10:43:01 -0800,483,1497 -2174,4848,2013-11-12 12:37:59 -0800,483,1497 -2175,8974,2013-11-13 07:59:51 -0800,483,1497 -2176,4912,2013-11-11 04:53:16 -0800,485,1505 -2177,2265,2013-11-11 05:15:22 -0800,485,1506 -2178,454,2013-11-12 05:34:39 -0800,485,1503 -2179,120,2013-11-10 20:30:07 -0800,485,1505 -2180,2976,2013-11-12 10:48:56 -0800,485,1504 -2181,7411,2013-11-11 09:33:31 -0800,485,1505 -2182,5878,2013-11-08 10:45:27 -0800,485,1502 -2183,2049,2013-11-08 02:43:38 -0800,486,1507 -2184,5710,2013-11-08 02:55:02 -0800,486,1507 -2185,8020,2013-11-10 18:17:31 -0800,486,1508 -2186,8976,2013-11-10 06:36:41 -0800,487,1509 -2187,7437,2013-11-10 18:34:09 -0800,488,1514 -2188,2321,2013-11-10 18:24:12 -0800,488,1514 -2189,3297,2013-11-06 23:17:49 -0800,488,1517 -2190,7967,2013-11-08 01:16:34 -0800,488,1517 -2191,7681,2013-11-06 16:00:20 -0800,489,1521 -2192,311,2013-11-06 18:56:11 -0800,489,1519 -2193,6514,2013-11-10 23:33:27 -0800,489,1520 -2194,6691,2013-11-10 16:22:51 -0800,489,1519 -2195,5157,2013-11-10 02:32:58 -0800,489,1520 -2196,560,2013-11-12 15:22:22 -0800,489,1520 -2197,6045,2013-11-13 04:29:55 -0800,489,1520 -2198,170,2013-11-09 21:19:48 -0800,490,1524 -2199,1396,2013-11-11 10:23:01 -0800,490,1524 -2200,8330,2013-11-11 07:31:56 -0800,490,1524 -2201,957,2013-11-13 07:53:54 -0800,490,1522 -2202,9338,2013-11-08 23:46:44 -0800,491,1527 -2203,2437,2013-11-06 22:18:19 -0800,492,1530 -2204,374,2013-11-06 13:38:25 -0800,493,1534 -2205,7152,2013-11-09 02:15:44 -0800,493,1532 -2206,991,2013-11-12 23:35:38 -0800,493,1531 -2207,6454,2013-11-08 00:44:52 -0800,493,1533 -2208,2382,2013-11-06 18:54:33 -0800,493,1535 -2209,4758,2013-11-07 06:01:47 -0800,493,1533 -2210,9393,2013-11-07 14:38:36 -0800,493,1535 -2211,7887,2013-11-08 16:35:03 -0800,495,1539 -2212,730,2013-11-11 02:32:00 -0800,495,1539 -2213,5729,2013-11-08 01:00:26 -0800,495,1539 -2214,6391,2013-11-07 19:21:39 -0800,495,1539 -2215,4226,2013-11-08 11:54:20 -0800,495,1539 -2216,1274,2013-11-08 16:45:53 -0800,495,1539 -2217,1319,2013-11-07 16:47:50 -0800,495,1539 -2218,715,2013-11-10 18:33:54 -0800,496,1541 -2219,5476,2013-11-10 03:29:43 -0800,496,1542 -2220,977,2013-11-09 18:37:01 -0800,497,1543 -2221,7277,2013-11-12 00:48:19 -0800,497,1543 -2222,714,2013-11-10 05:36:31 -0800,497,1543 -2223,5239,2013-11-11 06:07:05 -0800,497,1543 -2224,532,2013-11-12 11:41:57 -0800,497,1543 -2225,6243,2013-11-10 07:22:16 -0800,497,1543 -2226,9775,2013-11-08 17:29:02 -0800,497,1543 -2227,9257,2013-11-06 16:56:13 -0800,497,1543 -2228,9675,2013-11-12 05:55:08 -0800,498,1544 -2229,5360,2013-11-10 02:56:26 -0800,498,1544 -2230,8960,2013-11-11 21:38:44 -0800,498,1544 -2231,647,2013-11-06 13:41:37 -0800,498,1544 -2232,4490,2013-11-12 03:14:20 -0800,498,1544 -2233,9279,2013-11-08 04:04:45 -0800,498,1544 -2234,7695,2013-11-11 12:39:44 -0800,498,1544 -2235,2384,2013-11-08 10:21:11 -0800,500,1549 -2236,4696,2013-11-13 01:42:38 -0800,501,1551 -2237,6459,2013-11-07 03:12:06 -0800,502,1552 -2238,8020,2013-11-10 03:01:23 -0800,502,1553 -2239,9380,2013-11-12 22:47:16 -0800,502,1552 -2240,710,2013-11-07 23:49:00 -0800,502,1553 -2241,6736,2013-11-12 09:54:22 -0800,503,1557 -2242,946,2013-11-10 05:59:33 -0800,503,1556 -2243,8013,2013-11-08 15:21:21 -0800,504,1559 -2244,3539,2013-11-08 21:15:50 -0800,505,1563 -2245,2711,2013-11-08 13:47:58 -0800,505,1563 -2246,3361,2013-11-10 00:44:29 -0800,505,1564 -2247,2017,2013-11-12 07:29:52 -0800,506,1568 -2248,6634,2013-11-10 15:42:38 -0800,506,1567 -2249,9162,2013-11-07 13:50:34 -0800,506,1567 -2250,8926,2013-11-10 10:13:34 -0800,506,1568 -2251,270,2013-11-11 05:02:24 -0800,507,1570 -2252,7440,2013-11-09 05:47:03 -0800,507,1570 -2253,7155,2013-11-08 00:09:40 -0800,507,1570 -2254,9648,2013-11-12 19:35:18 -0800,507,1570 -2255,1322,2013-11-08 19:26:19 -0800,507,1570 -2256,8954,2013-11-08 23:43:49 -0800,507,1570 -2257,1330,2013-11-12 04:00:02 -0800,508,1571 -2258,6456,2013-11-11 04:29:43 -0800,508,1571 -2259,927,2013-11-08 16:18:03 -0800,508,1571 -2260,5539,2013-11-08 00:32:34 -0800,509,1574 -2261,4151,2013-11-06 21:22:37 -0800,509,1572 -2262,2680,2013-11-06 22:32:25 -0800,509,1574 -2263,6661,2013-11-07 23:33:50 -0800,509,1572 -2264,3180,2013-11-09 19:57:45 -0800,509,1574 -2265,2835,2013-11-08 06:14:25 -0800,510,1575 -2266,7384,2013-11-07 08:57:05 -0800,510,1575 -2267,1315,2013-11-13 05:41:32 -0800,510,1575 -2268,6595,2013-11-09 11:51:06 -0800,510,1575 -2269,3917,2013-11-08 12:07:27 -0800,511,1576 -2270,7931,2013-11-08 01:38:37 -0800,511,1576 -2271,6683,2013-11-10 22:44:19 -0800,511,1576 -2272,2854,2013-11-12 16:49:44 -0800,511,1576 -2273,6276,2013-11-10 02:15:27 -0800,512,1580 -2274,8618,2013-11-10 09:19:00 -0800,512,1580 -2275,4167,2013-11-06 16:06:05 -0800,512,1578 -2276,7490,2013-11-06 23:02:15 -0800,512,1579 -2277,8560,2013-11-06 22:09:56 -0800,513,1582 -2278,1660,2013-11-12 07:51:44 -0800,513,1582 -2279,6255,2013-11-12 05:23:55 -0800,513,1582 -2280,1939,2013-11-08 22:14:20 -0800,513,1582 -2281,5176,2013-11-08 12:04:55 -0800,513,1582 -2282,8581,2013-11-13 07:41:20 -0800,513,1582 -2283,8215,2013-11-09 11:58:55 -0800,513,1582 -2284,8274,2013-11-13 06:29:28 -0800,513,1582 -2285,8776,2013-11-12 12:25:50 -0800,514,1584 -2286,9145,2013-11-09 10:47:55 -0800,515,1585 -2287,1851,2013-11-11 20:59:06 -0800,515,1585 -2288,9154,2013-11-11 12:09:26 -0800,516,1588 -2289,8742,2013-11-11 01:33:21 -0800,516,1586 -2290,7323,2013-11-10 08:17:48 -0800,516,1588 -2291,6117,2013-11-08 20:12:48 -0800,516,1586 -2292,8713,2013-11-09 00:36:23 -0800,518,1592 -2293,6398,2013-11-10 12:27:38 -0800,518,1592 -2294,5564,2013-11-08 03:57:04 -0800,518,1591 -2295,8724,2013-11-12 23:53:32 -0800,518,1591 -2296,612,2013-11-09 09:19:43 -0800,518,1592 -2297,6229,2013-11-07 00:45:00 -0800,518,1592 -2298,1465,2013-11-13 07:37:42 -0800,518,1591 -2299,6489,2013-11-07 22:36:11 -0800,518,1592 -2300,1851,2013-11-10 21:01:21 -0800,518,1592 -2301,1046,2013-11-07 13:40:18 -0800,519,1593 -2302,158,2013-11-09 14:31:40 -0800,519,1593 -2303,7354,2013-11-08 11:40:45 -0800,519,1593 -2304,218,2013-11-10 05:32:21 -0800,519,1593 -2305,8080,2013-11-07 05:18:25 -0800,520,1596 -2306,4857,2013-11-12 06:50:34 -0800,520,1596 -2307,6572,2013-11-11 17:39:19 -0800,520,1596 -2308,3192,2013-11-11 20:01:00 -0800,520,1595 -2309,428,2013-11-10 13:33:30 -0800,520,1595 -2310,2085,2013-11-09 08:07:06 -0800,520,1595 -2311,7931,2013-11-08 02:47:58 -0800,520,1596 -2312,5246,2013-11-10 22:36:33 -0800,521,1600 -2313,3449,2013-11-09 17:55:09 -0800,522,1601 -2314,8729,2013-11-06 20:32:19 -0800,522,1601 -2315,3053,2013-11-09 21:37:57 -0800,523,1602 -2316,7016,2013-11-08 10:32:39 -0800,523,1602 -2317,5450,2013-11-09 04:07:45 -0800,523,1603 -2318,980,2013-11-08 17:23:38 -0800,523,1602 -2319,7750,2013-11-08 00:58:19 -0800,525,1611 -2320,3152,2013-11-12 19:55:58 -0800,525,1609 -2321,8592,2013-11-08 22:58:06 -0800,526,1612 -2322,4780,2013-11-11 08:01:24 -0800,526,1613 -2323,2837,2013-11-06 14:12:52 -0800,526,1612 -2324,8529,2013-11-07 15:16:28 -0800,526,1612 -2325,7631,2013-11-08 05:11:39 -0800,526,1613 -2326,4019,2013-11-12 08:07:24 -0800,526,1612 -2327,5760,2013-11-13 05:23:42 -0800,526,1612 -2328,8677,2013-11-09 16:05:02 -0800,526,1612 -2329,4354,2013-11-11 00:27:45 -0800,527,1614 -2330,3953,2013-11-11 16:14:04 -0800,528,1615 -2331,2874,2013-11-09 09:56:00 -0800,528,1616 -2332,4917,2013-11-11 14:53:43 -0800,528,1616 -2333,1218,2013-11-08 07:25:52 -0800,528,1618 -2334,1518,2013-11-09 07:51:36 -0800,528,1618 -2335,8918,2013-11-12 13:49:07 -0800,529,1621 -2336,264,2013-11-09 08:58:50 -0800,529,1623 -2337,3130,2013-11-12 06:10:02 -0800,529,1621 -2338,4469,2013-11-08 15:53:52 -0800,529,1620 -2339,7823,2013-11-10 12:58:42 -0800,529,1623 -2340,4660,2013-11-12 06:51:58 -0800,529,1622 -2341,9698,2013-11-11 03:21:24 -0800,529,1623 -2342,1240,2013-11-07 12:08:37 -0800,529,1624 -2343,370,2013-11-06 22:12:17 -0800,529,1621 -2344,516,2013-11-12 16:54:26 -0800,530,1627 -2345,5146,2013-11-12 21:43:22 -0800,530,1628 -2346,6568,2013-11-11 11:32:06 -0800,530,1628 -2347,7572,2013-11-07 02:57:15 -0800,530,1629 -2348,7291,2013-11-12 01:14:09 -0800,530,1625 -2349,3579,2013-11-06 13:22:18 -0800,530,1629 -2350,123,2013-11-08 03:40:46 -0800,531,1632 -2351,4752,2013-11-12 10:42:35 -0800,531,1630 -2352,1036,2013-11-10 04:45:36 -0800,531,1633 -2353,8911,2013-11-11 22:31:03 -0800,531,1632 -2354,6024,2013-11-10 09:14:15 -0800,531,1631 -2355,551,2013-11-11 08:43:20 -0800,531,1631 -2356,5153,2013-11-13 05:26:14 -0800,533,1640 -2357,9759,2013-11-07 09:01:56 -0800,534,1645 -2358,5576,2013-11-11 14:36:31 -0800,534,1643 -2359,442,2013-11-11 18:04:00 -0800,534,1644 -2360,8820,2013-11-12 17:31:38 -0800,534,1642 -2361,6293,2013-11-08 18:04:38 -0800,534,1645 -2362,1672,2013-11-08 08:32:13 -0800,535,1646 -2363,9519,2013-11-09 05:54:23 -0800,535,1646 -2364,60,2013-11-12 11:53:55 -0800,535,1647 -2365,9664,2013-11-07 02:14:44 -0800,535,1647 -2366,9138,2013-11-08 22:56:46 -0800,535,1647 -2367,1989,2013-11-11 07:46:25 -0800,535,1646 -2368,4662,2013-11-11 06:17:48 -0800,535,1647 -2369,3996,2013-11-08 12:08:11 -0800,535,1646 -2370,3147,2013-11-07 18:25:58 -0800,535,1647 -2371,8388,2013-11-10 17:31:13 -0800,536,1649 -2372,8765,2013-11-13 02:30:58 -0800,536,1649 -2373,8876,2013-11-10 07:37:14 -0800,536,1649 -2374,2275,2013-11-09 21:05:22 -0800,536,1649 -2375,3260,2013-11-10 02:31:17 -0800,536,1650 -2376,3322,2013-11-06 20:40:13 -0800,536,1650 -2377,4372,2013-11-08 16:44:40 -0800,536,1649 -2378,5440,2013-11-06 22:58:13 -0800,536,1650 -2379,3153,2013-11-12 20:49:31 -0800,537,1652 -2380,2741,2013-11-06 14:47:01 -0800,537,1652 -2381,3384,2013-11-12 13:12:43 -0800,537,1655 -2382,4430,2013-11-08 12:21:57 -0800,537,1654 -2383,2428,2013-11-11 05:30:36 -0800,537,1651 -2384,6816,2013-11-07 08:39:45 -0800,538,1658 -2385,9672,2013-11-08 05:16:17 -0800,539,1661 -2386,7744,2013-11-07 05:50:09 -0800,539,1660 -2387,7953,2013-11-06 15:52:15 -0800,539,1661 -2388,2069,2013-11-07 00:56:30 -0800,539,1659 -2389,5075,2013-11-09 13:09:57 -0800,539,1662 -2390,2610,2013-11-09 21:15:04 -0800,539,1660 -2391,4521,2013-11-10 00:46:04 -0800,539,1660 -2392,6539,2013-11-07 07:07:36 -0800,539,1659 -2393,1828,2013-11-08 07:33:06 -0800,540,1663 -2394,8674,2013-11-06 23:45:39 -0800,540,1663 -2395,4421,2013-11-07 04:34:38 -0800,540,1663 -2396,7191,2013-11-09 11:41:47 -0800,540,1663 -2397,3715,2013-11-08 20:39:21 -0800,540,1663 -2398,9851,2013-11-07 16:12:51 -0800,541,1664 -2399,1142,2013-11-07 15:09:13 -0800,542,1666 -2400,6663,2013-11-13 01:21:35 -0800,542,1666 -2401,7033,2013-11-07 01:03:06 -0800,542,1665 -2402,83,2013-11-09 18:32:27 -0800,542,1665 -2403,4841,2013-11-08 21:01:13 -0800,542,1665 -2404,632,2013-11-08 09:02:39 -0800,542,1665 -2405,852,2013-11-07 08:39:58 -0800,543,1667 -2406,4387,2013-11-12 03:08:38 -0800,543,1668 -2407,8260,2013-11-13 01:32:35 -0800,543,1668 -2408,3439,2013-11-12 18:51:23 -0800,543,1667 -2409,9110,2013-11-06 15:17:45 -0800,544,1669 -2410,197,2013-11-13 01:49:20 -0800,544,1670 -2411,8728,2013-11-13 08:23:17 -0800,544,1671 -2412,9645,2013-11-11 20:08:50 -0800,545,1673 -2413,9772,2013-11-10 04:50:39 -0800,545,1673 -2414,1545,2013-11-12 00:05:27 -0800,545,1673 -2415,1723,2013-11-13 05:32:50 -0800,545,1673 -2416,4912,2013-11-12 21:35:56 -0800,546,1676 -2417,6650,2013-11-07 15:12:06 -0800,546,1676 -2418,2269,2013-11-13 00:51:05 -0800,546,1674 -2419,3257,2013-11-06 14:48:22 -0800,546,1675 -2420,2642,2013-11-12 17:01:43 -0800,546,1678 -2421,544,2013-11-13 06:57:59 -0800,546,1675 -2422,9090,2013-11-11 01:20:22 -0800,546,1677 -2423,2927,2013-11-11 09:28:55 -0800,546,1674 -2424,8466,2013-11-11 02:27:19 -0800,547,1680 -2425,4257,2013-11-12 00:07:46 -0800,547,1679 -2426,5919,2013-11-12 04:47:27 -0800,548,1682 -2427,3820,2013-11-10 16:17:03 -0800,548,1681 -2428,2793,2013-11-09 23:10:23 -0800,548,1682 -2429,537,2013-11-10 12:07:31 -0800,548,1682 -2430,4817,2013-11-06 16:06:37 -0800,548,1682 -2431,629,2013-11-09 21:45:13 -0800,548,1682 -2432,5470,2013-11-12 18:37:12 -0800,549,1686 -2433,3080,2013-11-12 06:53:10 -0800,551,1691 -2434,9747,2013-11-11 14:18:09 -0800,552,1692 -2435,5930,2013-11-08 09:51:06 -0800,553,1694 -2436,9566,2013-11-06 15:30:32 -0800,554,1695 -2437,7670,2013-11-09 09:15:42 -0800,554,1695 -2438,3624,2013-11-06 13:48:32 -0800,554,1695 -2439,7983,2013-11-12 19:05:37 -0800,554,1695 -2440,8081,2013-11-07 23:15:23 -0800,554,1695 -2441,81,2013-11-09 23:25:53 -0800,554,1695 -2442,4075,2013-11-13 03:03:11 -0800,554,1695 -2443,1287,2013-11-07 22:47:48 -0800,554,1695 -2444,9739,2013-11-06 13:47:17 -0800,554,1695 -2445,8013,2013-11-11 07:46:39 -0800,555,1697 -2446,3915,2013-11-09 14:25:37 -0800,555,1700 -2447,9544,2013-11-10 12:35:05 -0800,555,1700 -2448,2993,2013-11-07 05:04:56 -0800,555,1699 -2449,5867,2013-11-10 17:36:39 -0800,555,1698 -2450,6226,2013-11-06 18:35:49 -0800,555,1699 -2451,1789,2013-11-09 06:37:36 -0800,556,1701 -2452,2236,2013-11-12 23:10:54 -0800,556,1703 -2453,6398,2013-11-13 02:05:55 -0800,556,1705 -2454,6014,2013-11-11 00:12:07 -0800,556,1702 -2455,7320,2013-11-06 22:31:53 -0800,556,1701 -2456,2450,2013-11-11 08:57:48 -0800,556,1705 -2457,9896,2013-11-12 15:17:19 -0800,556,1703 -2458,8496,2013-11-11 16:55:26 -0800,556,1701 -2459,8061,2013-11-08 12:22:39 -0800,558,1708 -2460,3871,2013-11-09 10:19:54 -0800,558,1708 -2461,3465,2013-11-07 18:49:07 -0800,558,1708 -2462,5924,2013-11-12 03:45:42 -0800,558,1708 -2463,5646,2013-11-13 00:04:41 -0800,558,1707 -2464,3868,2013-11-12 14:07:28 -0800,558,1707 -2465,3564,2013-11-07 18:13:34 -0800,558,1707 -2466,224,2013-11-11 05:17:21 -0800,560,1712 -2467,8774,2013-11-08 00:01:08 -0800,560,1712 -2468,8120,2013-11-11 12:50:52 -0800,560,1712 -2469,736,2013-11-11 14:44:52 -0800,560,1712 -2470,8270,2013-11-11 10:19:22 -0800,560,1712 -2471,4600,2013-11-12 01:32:43 -0800,560,1712 -2472,7830,2013-11-07 22:16:15 -0800,560,1712 -2473,1337,2013-11-11 11:51:05 -0800,561,1713 -2474,2320,2013-11-09 17:08:01 -0800,561,1713 -2475,4474,2013-11-11 20:17:10 -0800,561,1713 -2476,662,2013-11-09 10:01:25 -0800,561,1713 -2477,9018,2013-11-06 17:23:43 -0800,561,1713 -2478,7587,2013-11-09 15:31:38 -0800,561,1713 -2479,6656,2013-11-08 12:55:21 -0800,561,1713 -2480,3069,2013-11-12 22:36:30 -0800,562,1715 -2481,7348,2013-11-12 02:26:16 -0800,563,1719 -2482,6875,2013-11-08 14:54:44 -0800,564,1721 -2483,2850,2013-11-08 03:28:57 -0800,564,1720 -2484,8169,2013-11-07 08:55:46 -0800,564,1720 -2485,2732,2013-11-06 21:05:50 -0800,564,1721 -2486,1015,2013-11-12 22:29:02 -0800,564,1721 -2487,5576,2013-11-11 12:09:07 -0800,564,1721 -2488,1370,2013-11-09 22:31:15 -0800,564,1720 -2489,3720,2013-11-07 08:13:42 -0800,564,1720 -2490,2934,2013-11-06 15:14:27 -0800,565,1723 -2491,5187,2013-11-09 06:13:38 -0800,565,1724 -2492,178,2013-11-11 01:04:54 -0800,565,1723 -2493,4724,2013-11-09 10:36:36 -0800,565,1724 -2494,8533,2013-11-07 18:52:45 -0800,565,1723 -2495,7941,2013-11-12 13:14:05 -0800,565,1722 -2496,4539,2013-11-09 02:45:35 -0800,565,1723 -2497,4130,2013-11-06 21:22:00 -0800,566,1725 -2498,6074,2013-11-06 11:07:32 -0800,566,1725 -2499,7984,2013-11-08 12:08:33 -0800,566,1725 -2500,4540,2013-11-09 11:56:02 -0800,566,1725 -2501,7538,2013-11-07 22:22:27 -0800,567,1726 -2502,8172,2013-11-08 20:08:14 -0800,567,1726 -2503,7020,2013-11-09 14:19:02 -0800,567,1726 -2504,9324,2013-11-09 01:34:13 -0800,567,1726 -2505,7753,2013-11-12 02:40:47 -0800,567,1726 -2506,2529,2013-11-12 11:57:09 -0800,567,1726 -2507,717,2013-11-11 17:27:47 -0800,567,1726 -2508,3585,2013-11-10 09:48:35 -0800,568,1727 -2509,9669,2013-11-09 05:46:42 -0800,568,1727 -2510,9184,2013-11-11 07:27:11 -0800,568,1727 -2511,2225,2013-11-07 03:33:45 -0800,568,1727 -2512,3840,2013-11-11 15:48:55 -0800,568,1727 -2513,3847,2013-11-10 18:53:27 -0800,568,1727 -2514,2418,2013-11-13 01:30:44 -0800,569,1728 -2515,5350,2013-11-08 15:21:13 -0800,569,1728 -2516,5942,2013-11-13 00:58:26 -0800,569,1728 -2517,3570,2013-11-12 02:11:14 -0800,569,1728 -2518,1332,2013-11-13 04:38:42 -0800,569,1728 -2519,2918,2013-11-09 06:11:14 -0800,569,1728 -2520,7459,2013-11-10 17:41:01 -0800,569,1728 -2521,3529,2013-11-09 21:57:51 -0800,569,1728 -2522,7630,2013-11-10 14:45:15 -0800,570,1729 -2523,8676,2013-11-07 08:31:08 -0800,571,1734 -2524,4390,2013-11-11 12:48:31 -0800,571,1734 -2525,6434,2013-11-10 10:38:47 -0800,571,1734 -2526,6698,2013-11-09 01:37:31 -0800,571,1731 -2527,6473,2013-11-08 20:23:21 -0800,571,1733 -2528,6656,2013-11-06 16:18:18 -0800,571,1733 -2529,2020,2013-11-10 21:07:24 -0800,571,1731 -2530,4813,2013-11-12 23:00:49 -0800,573,1738 -2531,5776,2013-11-09 16:06:31 -0800,573,1740 -2532,9423,2013-11-10 10:12:17 -0800,573,1739 -2533,2468,2013-11-08 06:24:50 -0800,573,1737 -2534,7834,2013-11-11 14:20:40 -0800,573,1739 -2535,136,2013-11-09 20:45:05 -0800,573,1740 -2536,3060,2013-11-08 02:05:32 -0800,573,1737 -2537,9660,2013-11-12 06:15:25 -0800,573,1737 -2538,2540,2013-11-09 00:14:13 -0800,573,1740 -2539,4072,2013-11-12 15:53:48 -0800,574,1741 -2540,1721,2013-11-08 20:48:39 -0800,574,1742 -2541,6920,2013-11-10 11:15:12 -0800,574,1742 -2542,2386,2013-11-12 06:21:58 -0800,574,1741 -2543,8874,2013-11-09 19:17:31 -0800,575,1746 -2544,583,2013-11-12 14:30:24 -0800,575,1743 -2545,4595,2013-11-08 21:36:41 -0800,575,1745 -2546,1267,2013-11-08 10:11:42 -0800,576,1748 -2547,3636,2013-11-07 16:44:05 -0800,576,1748 -2548,3220,2013-11-11 11:10:08 -0800,576,1747 -2549,9444,2013-11-11 09:17:32 -0800,576,1748 -2550,1086,2013-11-12 13:53:22 -0800,576,1747 -2551,865,2013-11-11 16:15:33 -0800,577,1752 -2552,3429,2013-11-08 11:55:07 -0800,577,1750 -2553,9816,2013-11-09 00:44:47 -0800,577,1751 -2554,6084,2013-11-06 16:28:47 -0800,578,1753 -2555,9569,2013-11-11 23:34:56 -0800,578,1753 -2556,859,2013-11-07 22:31:46 -0800,578,1754 -2557,3590,2013-11-07 13:21:17 -0800,578,1754 -2558,8047,2013-11-12 13:49:20 -0800,578,1753 -2559,9540,2013-11-09 06:48:25 -0800,578,1753 -2560,162,2013-11-08 09:31:40 -0800,578,1754 -2561,3457,2013-11-08 00:24:10 -0800,578,1754 -2562,9388,2013-11-07 08:42:36 -0800,578,1753 -2563,4210,2013-11-08 19:59:01 -0800,580,1758 -2564,7954,2013-11-08 12:55:21 -0800,580,1758 -2565,4740,2013-11-08 01:32:47 -0800,580,1758 -2566,8399,2013-11-10 14:15:27 -0800,580,1758 -2567,799,2013-11-11 19:15:09 -0800,580,1757 -2568,4011,2013-11-08 10:10:50 -0800,580,1757 -2569,7581,2013-11-11 17:17:53 -0800,581,1762 -2570,776,2013-11-07 08:25:55 -0800,581,1761 -2571,8181,2013-11-10 02:23:04 -0800,581,1761 -2572,3589,2013-11-10 17:12:59 -0800,581,1762 -2573,8100,2013-11-11 13:14:43 -0800,581,1762 -2574,6781,2013-11-08 23:28:54 -0800,581,1761 -2575,7281,2013-11-09 17:06:49 -0800,582,1763 -2576,6080,2013-11-12 22:15:05 -0800,582,1763 -2577,9755,2013-11-11 20:12:05 -0800,582,1763 -2578,5431,2013-11-10 19:17:24 -0800,582,1763 -2579,8030,2013-11-11 01:36:19 -0800,582,1763 -2580,939,2013-11-12 06:57:33 -0800,582,1763 -2581,227,2013-11-09 09:03:23 -0800,582,1763 -2582,6841,2013-11-13 04:22:35 -0800,583,1765 -2583,9338,2013-11-11 17:01:38 -0800,583,1766 -2584,1144,2013-11-07 06:27:42 -0800,583,1765 -2585,3942,2013-11-12 17:01:57 -0800,583,1765 -2586,9470,2013-11-09 12:52:20 -0800,583,1764 -2587,6032,2013-11-12 12:32:15 -0800,584,1769 -2588,5980,2013-11-08 11:09:12 -0800,584,1767 -2589,3652,2013-11-10 23:01:04 -0800,584,1768 -2590,261,2013-11-09 06:13:16 -0800,584,1769 -2591,5124,2013-11-09 00:26:59 -0800,584,1768 -2592,2827,2013-11-08 06:58:15 -0800,584,1768 -2593,7956,2013-11-07 12:01:16 -0800,584,1769 -2594,8128,2013-11-10 07:22:45 -0800,584,1767 -2595,8314,2013-11-10 17:18:33 -0800,584,1767 -2596,6690,2013-11-12 17:00:50 -0800,585,1772 -2597,1352,2013-11-06 14:25:15 -0800,585,1773 -2598,7448,2013-11-07 09:16:11 -0800,585,1772 -2599,5635,2013-11-12 20:24:24 -0800,585,1774 -2600,469,2013-11-12 22:17:54 -0800,585,1770 -2601,5696,2013-11-10 20:05:28 -0800,585,1772 -2602,3239,2013-11-08 09:27:56 -0800,585,1771 -2603,7741,2013-11-13 03:33:54 -0800,585,1774 -2604,7620,2013-11-12 17:12:40 -0800,586,1776 -2605,8425,2013-11-09 23:34:01 -0800,586,1777 -2606,671,2013-11-09 15:31:19 -0800,586,1779 -2607,8686,2013-11-12 07:50:37 -0800,587,1780 -2608,9568,2013-11-12 20:57:51 -0800,587,1780 -2609,3763,2013-11-07 18:37:13 -0800,587,1780 -2610,3678,2013-11-08 04:59:09 -0800,587,1780 -2611,1623,2013-11-12 09:29:07 -0800,587,1780 -2612,7198,2013-11-09 03:57:33 -0800,588,1782 -2613,1969,2013-11-12 12:39:00 -0800,588,1781 -2614,4620,2013-11-06 17:26:25 -0800,588,1782 -2615,8023,2013-11-08 07:57:49 -0800,588,1782 -2616,335,2013-11-11 03:19:20 -0800,589,1785 -2617,8639,2013-11-12 21:59:55 -0800,589,1785 -2618,9522,2013-11-07 14:23:57 -0800,589,1785 -2619,5670,2013-11-07 22:21:32 -0800,589,1785 -2620,1989,2013-11-06 09:17:52 -0800,589,1785 -2621,6991,2013-11-11 08:16:42 -0800,590,1786 -2622,8385,2013-11-06 17:32:36 -0800,591,1789 -2623,2248,2013-11-09 18:07:13 -0800,591,1789 -2624,8886,2013-11-06 20:32:08 -0800,591,1790 -2625,1884,2013-11-06 23:59:40 -0800,591,1789 -2626,683,2013-11-13 01:01:36 -0800,591,1791 -2627,2112,2013-11-08 04:20:03 -0800,591,1789 -2628,7840,2013-11-07 05:03:05 -0800,591,1792 -2629,4148,2013-11-09 06:43:18 -0800,591,1789 -2630,2620,2013-11-11 04:08:10 -0800,591,1789 -2631,9434,2013-11-08 20:22:09 -0800,592,1793 -2632,4099,2013-11-08 07:13:05 -0800,592,1794 -2633,1971,2013-11-10 18:12:45 -0800,592,1793 -2634,1969,2013-11-09 21:41:57 -0800,593,1799 -2635,4899,2013-11-11 13:15:25 -0800,593,1800 -2636,9138,2013-11-11 20:30:28 -0800,594,1804 -2637,8283,2013-11-10 05:35:00 -0800,594,1803 -2638,5840,2013-11-10 23:53:18 -0800,594,1805 -2639,498,2013-11-10 16:50:35 -0800,594,1805 -2640,5928,2013-11-08 20:03:15 -0800,594,1804 -2641,755,2013-11-06 21:42:32 -0800,594,1805 -2642,3197,2013-11-13 05:23:50 -0800,594,1804 -2643,5219,2013-11-09 01:25:55 -0800,595,1809 -2644,9759,2013-11-12 16:57:05 -0800,595,1810 -2645,1552,2013-11-10 08:40:37 -0800,596,1813 -2646,1810,2013-11-07 15:57:08 -0800,596,1812 -2647,2861,2013-11-09 21:16:13 -0800,596,1813 -2648,8323,2013-11-08 13:20:55 -0800,596,1811 -2649,6215,2013-11-10 04:21:04 -0800,596,1811 -2650,3449,2013-11-06 10:12:50 -0800,596,1811 -2651,7666,2013-11-09 04:12:01 -0800,596,1813 -2652,2477,2013-11-10 00:53:52 -0800,597,1814 -2653,6970,2013-11-10 11:52:39 -0800,597,1817 -2654,6283,2013-11-07 20:57:37 -0800,597,1815 -2655,6387,2013-11-09 19:26:27 -0800,597,1818 -2656,8579,2013-11-13 07:22:59 -0800,597,1817 -2657,1160,2013-11-08 05:35:57 -0800,597,1816 -2658,4849,2013-11-07 02:18:09 -0800,597,1814 -2659,8059,2013-11-12 14:36:25 -0800,598,1819 -2660,1580,2013-11-09 04:07:51 -0800,598,1820 -2661,8138,2013-11-12 05:09:28 -0800,598,1819 -2662,2760,2013-11-11 21:14:34 -0800,598,1821 -2663,180,2013-11-08 16:35:16 -0800,598,1819 -2664,3828,2013-11-07 16:04:20 -0800,598,1819 -2665,6230,2013-11-12 12:57:57 -0800,598,1821 -2666,6550,2013-11-06 13:54:43 -0800,598,1820 -2667,5570,2013-11-09 15:52:26 -0800,598,1821 -2668,7238,2013-11-07 02:05:21 -0800,599,1823 -2669,2428,2013-11-08 02:48:52 -0800,599,1823 -2670,811,2013-11-09 21:28:29 -0800,599,1822 -2671,5995,2013-11-10 21:48:59 -0800,599,1823 -2672,3254,2013-11-06 20:47:56 -0800,599,1823 -2673,4571,2013-11-08 19:46:02 -0800,600,1825 -2674,6690,2013-11-07 19:30:04 -0800,600,1826 -2675,5360,2013-11-13 04:24:18 -0800,600,1826 -2676,9376,2013-11-09 11:30:10 -0800,600,1824 -2677,5840,2013-11-10 10:37:21 -0800,600,1824 -2678,2339,2013-11-12 04:00:42 -0800,600,1826 -2679,5788,2013-11-11 22:20:37 -0800,601,1828 -2680,1299,2013-11-11 14:12:33 -0800,601,1829 -2681,9158,2013-11-11 00:04:16 -0800,601,1827 -2682,476,2013-11-08 11:42:15 -0800,601,1829 -2683,5983,2013-11-07 19:28:24 -0800,601,1828 -2684,4229,2013-11-12 13:31:41 -0800,601,1827 -2685,3511,2013-11-10 15:01:12 -0800,601,1827 -2686,4300,2013-11-11 09:36:52 -0800,601,1827 -2687,7626,2013-11-09 12:04:56 -0800,601,1827 -2688,8411,2013-11-12 05:06:36 -0800,602,1831 -2689,3452,2013-11-07 19:10:35 -0800,602,1831 -2690,2920,2013-11-12 16:13:18 -0800,602,1830 -2691,6264,2013-11-07 00:31:33 -0800,602,1830 -2692,8992,2013-11-11 23:34:18 -0800,603,1833 -2693,2012,2013-11-12 23:59:03 -0800,603,1836 -2694,450,2013-11-10 05:31:44 -0800,603,1832 -2695,3597,2013-11-06 16:04:30 -0800,603,1832 -2696,9752,2013-11-12 03:16:55 -0800,603,1836 -2697,3069,2013-11-06 10:01:40 -0800,603,1832 -2698,5748,2013-11-08 11:59:16 -0800,604,1837 -2699,6322,2013-11-12 15:51:09 -0800,604,1837 -2700,2113,2013-11-10 20:19:20 -0800,605,1839 -2701,7127,2013-11-10 11:07:11 -0800,605,1839 -2702,8200,2013-11-06 18:29:42 -0800,605,1838 -2703,7238,2013-11-10 00:43:25 -0800,605,1839 -2704,8051,2013-11-13 04:37:09 -0800,605,1838 -2705,8476,2013-11-09 15:51:15 -0800,605,1839 -2706,3145,2013-11-08 22:41:12 -0800,606,1840 -2707,4473,2013-11-07 00:49:15 -0800,606,1840 -2708,458,2013-11-10 11:46:54 -0800,606,1841 -2709,6300,2013-11-06 13:35:54 -0800,606,1843 -2710,5750,2013-11-08 21:12:12 -0800,606,1842 -2711,2858,2013-11-13 07:38:50 -0800,606,1842 -2712,3199,2013-11-09 18:16:57 -0800,606,1843 -2713,9190,2013-11-10 09:03:29 -0800,606,1842 -2714,47,2013-11-13 01:22:12 -0800,606,1840 -2715,254,2013-11-11 23:46:02 -0800,607,1844 -2716,8266,2013-11-08 05:03:57 -0800,607,1844 -2717,3783,2013-11-11 18:22:49 -0800,607,1844 -2718,7089,2013-11-08 20:53:20 -0800,607,1844 -2719,4434,2013-11-12 04:03:09 -0800,607,1844 -2720,4483,2013-11-08 07:16:04 -0800,607,1844 -2721,640,2013-11-09 15:01:17 -0800,607,1844 -2722,9748,2013-11-09 18:49:22 -0800,607,1844 -2723,7747,2013-11-07 08:24:43 -0800,607,1844 -2724,3781,2013-11-10 09:29:44 -0800,608,1847 -2725,3825,2013-11-10 01:15:37 -0800,608,1847 -2726,5633,2013-11-10 18:55:42 -0800,608,1846 -2727,7420,2013-11-10 11:58:37 -0800,608,1847 -2728,471,2013-11-06 14:31:20 -0800,608,1847 -2729,2054,2013-11-12 20:23:02 -0800,608,1846 -2730,3850,2013-11-09 11:17:14 -0800,608,1847 -2731,6670,2013-11-12 09:10:53 -0800,608,1845 -2732,490,2013-11-12 00:56:39 -0800,609,1848 -2733,5115,2013-11-10 08:30:33 -0800,609,1849 -2734,8923,2013-11-07 13:48:20 -0800,610,1850 -2735,6110,2013-11-11 20:25:01 -0800,610,1850 -2736,749,2013-11-08 19:48:35 -0800,610,1851 -2737,9296,2013-11-08 06:38:36 -0800,610,1851 -2738,6948,2013-11-07 18:36:09 -0800,610,1851 -2739,2523,2013-11-12 18:43:08 -0800,610,1851 -2740,4099,2013-11-10 01:35:05 -0800,610,1851 -2741,4090,2013-11-08 02:07:22 -0800,611,1852 -2742,4810,2013-11-06 10:07:48 -0800,613,1856 -2743,1158,2013-11-09 06:26:49 -0800,614,1860 -2744,2060,2013-11-06 23:54:47 -0800,614,1860 -2745,2981,2013-11-12 20:38:22 -0800,614,1861 -2746,6315,2013-11-13 06:06:50 -0800,616,1866 -2747,7781,2013-11-12 13:47:19 -0800,616,1867 -2748,2459,2013-11-09 04:30:12 -0800,616,1865 -2749,8449,2013-11-07 12:47:07 -0800,617,1871 -2750,4445,2013-11-06 14:58:26 -0800,617,1871 -2751,9267,2013-11-11 23:35:53 -0800,617,1868 -2752,2688,2013-11-12 19:52:43 -0800,617,1869 -2753,4141,2013-11-07 22:49:01 -0800,617,1871 -2754,713,2013-11-10 11:57:16 -0800,617,1868 -2755,8036,2013-11-08 14:09:24 -0800,618,1873 -2756,6220,2013-11-06 10:15:36 -0800,618,1872 -2757,495,2013-11-07 15:02:18 -0800,618,1873 -2758,6149,2013-11-10 06:59:58 -0800,618,1873 -2759,973,2013-11-11 16:48:05 -0800,618,1874 -2760,2037,2013-11-09 16:10:26 -0800,618,1872 -2761,3547,2013-11-09 18:15:44 -0800,618,1873 -2762,7465,2013-11-09 08:25:23 -0800,619,1876 -2763,5395,2013-11-09 03:46:26 -0800,619,1876 -2764,7534,2013-11-12 20:16:38 -0800,619,1875 -2765,4026,2013-11-09 03:58:04 -0800,619,1875 -2766,3678,2013-11-11 21:06:38 -0800,619,1875 -2767,1041,2013-11-12 20:33:50 -0800,620,1879 -2768,944,2013-11-11 18:28:38 -0800,620,1879 -2769,8130,2013-11-07 18:33:28 -0800,620,1879 -2770,9439,2013-11-09 07:20:41 -0800,620,1879 -2771,470,2013-11-11 08:38:35 -0800,620,1879 -2772,6297,2013-11-10 14:03:19 -0800,620,1879 -2773,9891,2013-11-06 12:26:23 -0800,620,1879 -2774,5615,2013-11-08 06:01:10 -0800,620,1879 -2775,9120,2013-11-07 21:10:42 -0800,621,1882 -2776,3829,2013-11-06 08:38:27 -0800,621,1881 -2777,5736,2013-11-12 21:45:04 -0800,621,1881 -2778,1932,2013-11-12 07:43:26 -0800,621,1881 -2779,8768,2013-11-06 13:32:11 -0800,621,1882 -2780,574,2013-11-07 11:47:51 -0800,621,1882 -2781,2935,2013-11-09 21:34:20 -0800,621,1880 -2782,587,2013-11-09 21:25:35 -0800,621,1881 -2783,6445,2013-11-12 06:38:03 -0800,621,1882 -2784,8130,2013-11-09 18:20:52 -0800,622,1884 -2785,9770,2013-11-11 21:47:24 -0800,622,1884 -2786,5021,2013-11-08 02:41:29 -0800,622,1884 -2787,3736,2013-11-09 05:01:00 -0800,622,1883 -2788,1019,2013-11-13 04:39:17 -0800,622,1884 -2789,7837,2013-11-12 21:24:58 -0800,623,1885 -2790,8746,2013-11-09 04:13:36 -0800,623,1886 -2791,6670,2013-11-07 08:26:15 -0800,623,1886 -2792,8277,2013-11-10 10:32:56 -0800,623,1885 -2793,5142,2013-11-08 17:45:02 -0800,624,1887 -2794,5122,2013-11-07 03:32:32 -0800,624,1887 -2795,6072,2013-11-07 06:53:54 -0800,624,1887 -2796,9372,2013-11-09 21:48:50 -0800,624,1887 -2797,9689,2013-11-07 23:33:15 -0800,625,1888 -2798,9815,2013-11-08 04:56:09 -0800,625,1888 -2799,1059,2013-11-12 05:52:57 -0800,625,1888 -2800,6843,2013-11-09 23:02:35 -0800,625,1888 -2801,6544,2013-11-11 00:26:44 -0800,625,1888 -2802,746,2013-11-09 13:21:48 -0800,625,1888 -2803,4394,2013-11-08 04:52:24 -0800,626,1889 -2804,3048,2013-11-06 11:03:39 -0800,626,1889 -2805,9865,2013-11-07 18:21:15 -0800,626,1889 -2806,7758,2013-11-09 12:20:12 -0800,626,1889 -2807,7788,2013-11-13 06:26:32 -0800,626,1889 -2808,4848,2013-11-09 09:29:49 -0800,626,1889 -2809,627,2013-11-07 19:48:36 -0800,626,1889 -2810,5327,2013-11-12 20:26:38 -0800,627,1892 -2811,5115,2013-11-09 19:09:32 -0800,627,1891 -2812,5181,2013-11-06 09:38:14 -0800,627,1893 -2813,3440,2013-11-10 23:37:54 -0800,627,1891 -2814,2450,2013-11-06 22:49:40 -0800,627,1891 -2815,246,2013-11-12 05:25:01 -0800,629,1898 -2816,5273,2013-11-11 04:50:33 -0800,629,1899 -2817,1684,2013-11-06 18:33:35 -0800,629,1899 -2818,8555,2013-11-07 08:24:25 -0800,629,1899 -2819,140,2013-11-11 17:46:13 -0800,630,1903 -2820,9013,2013-11-09 23:44:44 -0800,630,1901 -2821,8400,2013-11-13 01:33:02 -0800,630,1901 -2822,5441,2013-11-10 15:37:57 -0800,630,1901 -2823,2789,2013-11-12 03:38:21 -0800,630,1901 -2824,9370,2013-11-11 11:47:03 -0800,630,1903 -2825,2013,2013-11-07 16:59:49 -0800,630,1903 -2826,8565,2013-11-10 07:14:11 -0800,630,1901 -2827,1818,2013-11-11 12:47:47 -0800,630,1903 -2828,8978,2013-11-08 10:24:45 -0800,631,1904 -2829,1657,2013-11-06 11:11:42 -0800,631,1904 -2830,4230,2013-11-08 15:06:12 -0800,631,1904 -2831,9122,2013-11-07 00:14:08 -0800,631,1904 -2832,8862,2013-11-11 05:42:24 -0800,631,1904 -2833,60,2013-11-07 09:58:07 -0800,631,1904 -2834,1917,2013-11-12 15:05:57 -0800,632,1907 -2835,2720,2013-11-13 04:28:43 -0800,632,1906 -2836,9742,2013-11-10 05:59:11 -0800,632,1907 -2837,3064,2013-11-07 12:50:12 -0800,632,1907 -2838,5950,2013-11-07 10:56:25 -0800,632,1907 -2839,7620,2013-11-07 06:20:17 -0800,632,1906 -2840,7444,2013-11-07 18:59:11 -0800,633,1909 -2841,9751,2013-11-08 05:27:42 -0800,633,1909 -2842,9072,2013-11-09 04:35:05 -0800,633,1908 -2843,8139,2013-11-12 16:15:45 -0800,633,1910 -2844,8663,2013-11-11 22:15:52 -0800,633,1911 -2845,2387,2013-11-06 21:46:01 -0800,633,1909 -2846,911,2013-11-12 02:16:37 -0800,633,1910 -2847,1464,2013-11-12 10:11:46 -0800,633,1911 -2848,3110,2013-11-09 05:28:48 -0800,634,1913 -2849,518,2013-11-10 03:16:26 -0800,634,1913 -2850,4992,2013-11-12 12:20:06 -0800,634,1912 -2851,3490,2013-11-13 00:12:55 -0800,634,1913 -2852,2594,2013-11-09 13:15:39 -0800,634,1916 -2853,758,2013-11-11 16:36:22 -0800,634,1916 -2854,3956,2013-11-13 06:51:34 -0800,635,1921 -2855,6249,2013-11-10 07:29:43 -0800,635,1918 -2856,8582,2013-11-12 00:29:28 -0800,635,1921 -2857,7145,2013-11-07 00:54:37 -0800,635,1917 -2858,5991,2013-11-10 02:43:01 -0800,635,1917 -2859,5272,2013-11-06 18:56:50 -0800,635,1919 -2860,6766,2013-11-12 07:00:46 -0800,635,1918 -2861,7061,2013-11-06 21:45:13 -0800,636,1924 -2862,3583,2013-11-08 14:08:54 -0800,636,1923 -2863,3917,2013-11-10 19:19:58 -0800,636,1923 -2864,276,2013-11-10 21:31:56 -0800,636,1925 -2865,1757,2013-11-07 05:33:24 -0800,636,1923 -2866,8554,2013-11-07 02:23:19 -0800,636,1925 -2867,3779,2013-11-07 15:54:45 -0800,636,1925 -2868,2511,2013-11-07 22:01:45 -0800,636,1922 -2869,8712,2013-11-11 17:32:26 -0800,637,1926 -2870,112,2013-11-11 04:04:14 -0800,637,1928 -2871,6581,2013-11-08 14:33:51 -0800,637,1928 -2872,9051,2013-11-11 09:42:12 -0800,638,1932 -2873,3879,2013-11-12 21:22:25 -0800,638,1930 -2874,4890,2013-11-07 17:42:11 -0800,638,1929 -2875,1764,2013-11-11 14:58:12 -0800,638,1929 -2876,6572,2013-11-09 08:53:27 -0800,640,1939 -2877,8583,2013-11-10 12:01:59 -0800,640,1939 -2878,1825,2013-11-09 09:43:59 -0800,641,1941 -2879,3697,2013-11-13 02:00:26 -0800,641,1941 -2880,3034,2013-11-10 06:15:14 -0800,641,1941 -2881,746,2013-11-09 03:29:57 -0800,642,1943 -2882,3849,2013-11-07 11:24:21 -0800,642,1943 -2883,9239,2013-11-11 15:44:52 -0800,642,1944 -2884,6900,2013-11-11 03:16:39 -0800,642,1944 -2885,217,2013-11-12 15:07:26 -0800,642,1945 -2886,8062,2013-11-06 14:18:21 -0800,642,1944 -2887,7516,2013-11-09 08:18:01 -0800,642,1942 -2888,9044,2013-11-06 12:59:51 -0800,643,1946 -2889,3856,2013-11-09 07:37:45 -0800,643,1948 -2890,4525,2013-11-09 19:30:16 -0800,643,1947 -2891,4840,2013-11-06 19:38:41 -0800,643,1948 -2892,6659,2013-11-07 10:18:48 -0800,643,1946 -2893,7698,2013-11-10 12:36:58 -0800,643,1947 -2894,2791,2013-11-09 15:54:26 -0800,643,1947 -2895,8923,2013-11-11 09:06:36 -0800,644,1951 -2896,9520,2013-11-08 12:46:21 -0800,644,1951 -2897,6523,2013-11-06 16:30:03 -0800,644,1950 -2898,710,2013-11-09 23:29:01 -0800,645,1956 -2899,3077,2013-11-08 00:54:10 -0800,645,1953 -2900,3950,2013-11-10 05:44:01 -0800,646,1958 -2901,8490,2013-11-10 02:55:31 -0800,646,1958 -2902,2897,2013-11-12 20:19:51 -0800,646,1958 -2903,7159,2013-11-07 18:20:38 -0800,647,1962 -2904,4789,2013-11-12 08:57:30 -0800,647,1960 -2905,5921,2013-11-08 07:42:57 -0800,647,1961 -2906,9235,2013-11-07 04:58:46 -0800,648,1963 -2907,6912,2013-11-09 05:22:54 -0800,648,1963 -2908,7240,2013-11-12 20:54:10 -0800,648,1963 -2909,6559,2013-11-06 22:39:33 -0800,648,1965 -2910,8033,2013-11-11 21:43:11 -0800,649,1967 -2911,5468,2013-11-08 20:37:38 -0800,650,1970 -2912,2080,2013-11-06 22:41:17 -0800,650,1970 -2913,6540,2013-11-07 07:23:14 -0800,650,1968 -2914,3226,2013-11-12 17:58:38 -0800,650,1969 -2915,7840,2013-11-07 09:53:43 -0800,650,1970 -2916,495,2013-11-07 01:41:35 -0800,650,1968 -2917,9570,2013-11-07 10:21:28 -0800,650,1969 -2918,9135,2013-11-11 23:41:51 -0800,650,1969 -2919,4156,2013-11-07 09:04:02 -0800,650,1968 -2920,6187,2013-11-12 04:54:19 -0800,651,1971 -2921,4662,2013-11-08 03:13:32 -0800,651,1971 -2922,7450,2013-11-10 02:22:45 -0800,651,1972 -2923,2183,2013-11-13 05:38:19 -0800,651,1971 -2924,7148,2013-11-11 13:33:41 -0800,651,1971 -2925,6032,2013-11-10 12:09:03 -0800,651,1971 -2926,4074,2013-11-13 01:02:07 -0800,651,1973 -2927,4429,2013-11-09 16:04:03 -0800,652,1974 -2928,2585,2013-11-11 20:47:57 -0800,652,1975 -2929,9626,2013-11-09 15:06:11 -0800,652,1975 -2930,8331,2013-11-09 19:15:34 -0800,652,1974 -2931,6024,2013-11-08 13:25:41 -0800,653,1977 -2932,570,2013-11-11 06:06:36 -0800,653,1980 -2933,8699,2013-11-10 11:30:37 -0800,653,1980 -2934,4421,2013-11-06 16:12:17 -0800,653,1976 -2935,7719,2013-11-06 20:43:40 -0800,653,1978 -2936,1300,2013-11-07 10:04:01 -0800,653,1977 -2937,4533,2013-11-10 06:49:26 -0800,653,1980 -2938,5083,2013-11-10 19:08:43 -0800,653,1978 -2939,6613,2013-11-12 09:26:00 -0800,654,1983 -2940,4197,2013-11-09 13:57:51 -0800,654,1984 -2941,4243,2013-11-10 16:17:19 -0800,654,1982 -2942,3870,2013-11-08 03:09:23 -0800,654,1984 -2943,2755,2013-11-09 09:03:51 -0800,655,1985 -2944,6617,2013-11-08 00:06:19 -0800,655,1987 -2945,7337,2013-11-13 07:01:31 -0800,655,1985 -2946,8993,2013-11-12 23:25:56 -0800,655,1987 -2947,5064,2013-11-10 12:54:44 -0800,655,1985 -2948,4533,2013-11-08 09:27:15 -0800,656,1989 -2949,5454,2013-11-10 18:58:59 -0800,656,1989 -2950,2310,2013-11-06 20:47:41 -0800,657,1990 -2951,4390,2013-11-06 17:43:03 -0800,657,1990 -2952,6418,2013-11-09 19:21:24 -0800,657,1990 -2953,1786,2013-11-09 13:32:23 -0800,657,1990 -2954,1013,2013-11-07 09:29:10 -0800,657,1990 -2955,6239,2013-11-09 19:38:53 -0800,657,1990 -2956,1044,2013-11-07 01:00:12 -0800,658,1993 -2957,7066,2013-11-09 18:36:04 -0800,658,1991 -2958,6761,2013-11-08 10:05:20 -0800,658,1993 -2959,9894,2013-11-09 11:06:57 -0800,658,1993 -2960,5276,2013-11-09 19:59:57 -0800,658,1993 -2961,1966,2013-11-08 17:49:35 -0800,658,1994 -2962,3084,2013-11-06 20:45:31 -0800,660,1997 -2963,4210,2013-11-09 15:44:36 -0800,660,1996 -2964,6745,2013-11-10 05:47:25 -0800,660,1997 -2965,6039,2013-11-11 07:14:07 -0800,660,1997 -2966,6514,2013-11-08 22:55:48 -0800,660,1996 -2967,220,2013-11-09 22:00:49 -0800,661,1998 -2968,7034,2013-11-06 22:34:21 -0800,661,1998 -2969,5682,2013-11-10 05:25:36 -0800,661,1998 -2970,2577,2013-11-13 01:53:40 -0800,661,1998 -2971,8870,2013-11-07 03:20:02 -0800,661,1998 -2972,665,2013-11-11 15:57:36 -0800,661,1998 -2973,6693,2013-11-12 10:56:04 -0800,661,1998 -2974,3020,2013-11-09 14:35:14 -0800,661,1998 -2975,459,2013-11-11 20:49:50 -0800,661,1998 -2976,2195,2013-11-07 16:26:17 -0800,662,2000 -2977,5835,2013-11-06 08:51:44 -0800,662,2000 -2978,8867,2013-11-12 08:45:07 -0800,662,2000 -2979,1798,2013-11-10 21:43:20 -0800,663,2004 -2980,6353,2013-11-06 09:43:24 -0800,663,2005 -2981,6046,2013-11-11 23:10:06 -0800,664,2009 -2982,5620,2013-11-11 12:39:03 -0800,664,2006 -2983,313,2013-11-07 17:29:10 -0800,664,2009 -2984,4490,2013-11-09 04:57:19 -0800,664,2007 -2985,1190,2013-11-11 03:20:21 -0800,664,2010 -2986,7543,2013-11-12 18:13:39 -0800,665,2011 -2987,965,2013-11-08 06:37:37 -0800,665,2011 -2988,653,2013-11-09 07:16:15 -0800,665,2011 -2989,560,2013-11-13 05:13:20 -0800,666,2012 -2990,8470,2013-11-11 15:45:18 -0800,666,2012 -2991,6054,2013-11-10 06:56:09 -0800,666,2015 -2992,9450,2013-11-13 04:12:44 -0800,666,2014 -2993,968,2013-11-11 15:46:04 -0800,666,2012 -2994,4450,2013-11-11 16:57:22 -0800,667,2017 -2995,4517,2013-11-13 04:55:06 -0800,667,2017 -2996,4922,2013-11-07 07:44:27 -0800,667,2017 -2997,3565,2013-11-10 05:04:34 -0800,667,2017 -2998,4660,2013-11-07 22:03:57 -0800,668,2020 -2999,1572,2013-11-06 11:09:45 -0800,668,2019 -3000,4215,2013-11-10 11:25:58 -0800,668,2020 -3001,1247,2013-11-09 11:32:00 -0800,668,2018 -3002,49,2013-11-08 18:25:22 -0800,668,2018 -3003,2631,2013-11-08 23:50:03 -0800,668,2019 -3004,2078,2013-11-10 12:52:33 -0800,668,2020 -3005,9118,2013-11-09 10:50:55 -0800,668,2019 -3006,1283,2013-11-09 23:01:34 -0800,668,2019 -3007,4170,2013-11-13 01:31:09 -0800,669,2021 -3008,5637,2013-11-10 11:49:18 -0800,669,2023 -3009,8325,2013-11-08 17:35:41 -0800,669,2024 -3010,5293,2013-11-09 14:52:05 -0800,669,2025 -3011,1795,2013-11-11 12:22:21 -0800,669,2024 -3012,7598,2013-11-08 02:48:59 -0800,669,2025 -3013,3153,2013-11-09 15:52:37 -0800,669,2023 -3014,4800,2013-11-11 03:32:13 -0800,669,2024 -3015,9176,2013-11-09 15:55:51 -0800,670,2026 -3016,978,2013-11-10 06:49:53 -0800,670,2026 -3017,2150,2013-11-11 01:56:26 -0800,670,2026 -3018,9614,2013-11-07 12:35:34 -0800,670,2026 -3019,1970,2013-11-13 05:05:35 -0800,670,2026 -3020,5299,2013-11-09 19:52:23 -0800,672,2032 -3021,7227,2013-11-10 03:21:53 -0800,672,2032 -3022,4314,2013-11-10 11:09:04 -0800,673,2033 -3023,1478,2013-11-10 01:33:00 -0800,673,2034 -3024,1244,2013-11-06 15:13:27 -0800,673,2036 -3025,472,2013-11-07 23:17:03 -0800,673,2035 -3026,470,2013-11-12 02:30:09 -0800,674,2037 -3027,6087,2013-11-12 17:30:49 -0800,674,2037 -3028,1592,2013-11-06 23:10:08 -0800,674,2037 -3029,7522,2013-11-12 19:04:21 -0800,674,2037 -3030,7084,2013-11-07 20:07:22 -0800,674,2037 -3031,3995,2013-11-07 07:02:37 -0800,674,2037 -3032,760,2013-11-09 18:29:42 -0800,675,2038 -3033,9692,2013-11-06 10:22:48 -0800,675,2040 -3034,4635,2013-11-12 07:01:34 -0800,675,2040 -3035,3911,2013-11-07 23:13:18 -0800,675,2040 -3036,7956,2013-11-11 16:48:40 -0800,676,2043 -3037,2470,2013-11-07 01:08:09 -0800,676,2044 -3038,584,2013-11-10 08:27:06 -0800,676,2044 -3039,8120,2013-11-08 02:33:16 -0800,676,2042 -3040,5063,2013-11-10 15:10:10 -0800,676,2042 -3041,9553,2013-11-11 01:31:01 -0800,676,2041 -3042,5427,2013-11-10 22:00:09 -0800,678,2050 -3043,7184,2013-11-06 11:22:08 -0800,678,2051 -3044,8578,2013-11-07 00:51:03 -0800,678,2050 -3045,3529,2013-11-07 13:59:32 -0800,678,2050 -3046,7009,2013-11-09 17:36:38 -0800,678,2048 -3047,1561,2013-11-08 22:16:56 -0800,678,2051 -3048,446,2013-11-12 05:23:05 -0800,678,2051 -3049,3588,2013-11-11 12:57:27 -0800,678,2048 -3050,1984,2013-11-09 18:55:00 -0800,679,2054 -3051,3045,2013-11-08 05:43:47 -0800,680,2057 -3052,5070,2013-11-12 12:46:02 -0800,680,2058 -3053,3529,2013-11-09 14:24:06 -0800,680,2057 -3054,7395,2013-11-12 06:08:34 -0800,680,2057 -3055,5921,2013-11-11 09:44:47 -0800,681,2059 -3056,9226,2013-11-12 02:32:36 -0800,681,2059 -3057,6066,2013-11-08 04:19:27 -0800,681,2059 -3058,3364,2013-11-09 22:51:09 -0800,681,2059 -3059,6291,2013-11-10 00:05:35 -0800,681,2059 -3060,8614,2013-11-08 14:42:02 -0800,681,2059 -3061,3557,2013-11-10 05:42:11 -0800,681,2059 -3062,9519,2013-11-11 12:48:29 -0800,681,2059 -3063,5797,2013-11-10 06:22:18 -0800,683,2061 -3064,516,2013-11-07 15:23:03 -0800,683,2061 -3065,4998,2013-11-11 03:39:59 -0800,684,2067 -3066,1496,2013-11-11 07:07:19 -0800,684,2066 -3067,5091,2013-11-13 04:28:21 -0800,684,2067 -3068,2384,2013-11-11 14:30:00 -0800,684,2067 -3069,910,2013-11-09 07:31:49 -0800,684,2066 -3070,6655,2013-11-12 21:47:22 -0800,685,2071 -3071,5192,2013-11-11 06:43:50 -0800,686,2074 -3072,7380,2013-11-08 17:32:48 -0800,686,2072 -3073,619,2013-11-10 04:02:58 -0800,686,2074 -3074,594,2013-11-08 19:01:35 -0800,686,2072 -3075,539,2013-11-09 21:39:11 -0800,686,2072 -3076,3715,2013-11-06 16:41:25 -0800,688,2080 -3077,8461,2013-11-10 05:33:30 -0800,688,2083 -3078,7163,2013-11-08 17:55:32 -0800,688,2081 -3079,7356,2013-11-10 09:14:24 -0800,688,2083 -3080,2319,2013-11-11 15:30:18 -0800,688,2080 -3081,8492,2013-11-09 10:27:13 -0800,688,2082 -3082,8887,2013-11-13 07:26:44 -0800,688,2083 -3083,618,2013-11-10 17:12:14 -0800,689,2086 -3084,3649,2013-11-09 17:40:33 -0800,689,2084 -3085,6046,2013-11-06 10:09:47 -0800,689,2084 -3086,9683,2013-11-11 00:02:55 -0800,689,2087 -3087,9713,2013-11-08 22:25:50 -0800,689,2087 -3088,4850,2013-11-10 18:37:44 -0800,689,2086 -3089,4334,2013-11-10 06:35:21 -0800,689,2087 -3090,930,2013-11-08 21:14:11 -0800,689,2084 -3091,3835,2013-11-09 15:41:38 -0800,690,2088 -3092,5363,2013-11-06 09:07:03 -0800,690,2088 -3093,5630,2013-11-13 02:29:05 -0800,690,2089 -3094,6959,2013-11-08 14:20:14 -0800,690,2089 -3095,9339,2013-11-12 02:48:59 -0800,690,2088 -3096,8543,2013-11-08 05:48:31 -0800,690,2089 -3097,9561,2013-11-10 20:06:56 -0800,690,2089 -3098,1682,2013-11-10 16:11:58 -0800,691,2092 -3099,2710,2013-11-10 22:06:33 -0800,691,2093 -3100,3781,2013-11-09 16:26:44 -0800,691,2091 -3101,6773,2013-11-11 11:32:31 -0800,692,2096 -3102,7498,2013-11-08 10:34:01 -0800,692,2096 -3103,9175,2013-11-06 10:00:20 -0800,692,2097 -3104,9533,2013-11-11 23:26:16 -0800,692,2094 -3105,6713,2013-11-09 01:21:07 -0800,692,2096 -3106,124,2013-11-11 07:25:51 -0800,693,2101 -3107,1538,2013-11-12 14:17:26 -0800,693,2101 -3108,4096,2013-11-08 15:01:49 -0800,694,2103 -3109,52,2013-11-10 10:35:45 -0800,694,2104 -3110,9723,2013-11-11 22:33:31 -0800,695,2105 -3111,9739,2013-11-11 23:22:49 -0800,695,2105 -3112,7295,2013-11-12 00:43:04 -0800,695,2105 -3113,5968,2013-11-12 18:43:14 -0800,695,2105 -3114,8040,2013-11-07 06:26:17 -0800,696,2110 -3115,4991,2013-11-09 11:24:30 -0800,697,2111 -3116,214,2013-11-07 10:51:10 -0800,697,2111 -3117,5095,2013-11-07 22:02:12 -0800,697,2112 -3118,2381,2013-11-07 15:14:23 -0800,697,2112 -3119,7030,2013-11-12 22:05:20 -0800,697,2112 -3120,8724,2013-11-10 05:33:30 -0800,697,2111 -3121,9447,2013-11-09 13:42:36 -0800,697,2112 -3122,4830,2013-11-09 13:09:36 -0800,697,2111 -3123,4649,2013-11-11 17:39:43 -0800,698,2115 -3124,8877,2013-11-08 03:30:07 -0800,698,2113 -3125,6740,2013-11-07 16:03:08 -0800,698,2116 -3126,5577,2013-11-13 05:07:45 -0800,698,2116 -3127,4020,2013-11-09 11:04:54 -0800,698,2115 -3128,2725,2013-11-06 20:13:46 -0800,698,2113 -3129,3965,2013-11-07 08:36:02 -0800,698,2114 -3130,8028,2013-11-08 04:06:19 -0800,698,2116 -3131,7917,2013-11-06 14:19:24 -0800,699,2120 -3132,8659,2013-11-12 23:48:09 -0800,699,2117 -3133,5980,2013-11-08 12:53:13 -0800,699,2118 -3134,8690,2013-11-07 19:58:24 -0800,699,2119 -3135,9365,2013-11-12 17:41:26 -0800,699,2120 -3136,7830,2013-11-08 07:20:46 -0800,701,2122 -3137,1828,2013-11-11 01:24:46 -0800,701,2122 -3138,3945,2013-11-06 17:11:47 -0800,701,2123 -3139,8966,2013-11-06 08:57:32 -0800,701,2122 -3140,8093,2013-11-08 17:36:04 -0800,701,2123 -3141,6812,2013-11-06 13:48:32 -0800,701,2122 -3142,9733,2013-11-06 23:09:47 -0800,701,2122 -3143,1678,2013-11-06 15:12:59 -0800,701,2123 -3144,1839,2013-11-08 10:46:48 -0800,703,2125 -3145,4697,2013-11-07 23:42:51 -0800,703,2125 -3146,8855,2013-11-08 19:07:03 -0800,703,2127 -3147,360,2013-11-12 13:37:47 -0800,703,2126 -3148,7392,2013-11-10 14:01:14 -0800,703,2127 -3149,7640,2013-11-09 05:55:17 -0800,704,2128 -3150,8313,2013-11-07 15:14:00 -0800,704,2128 -3151,6366,2013-11-09 01:07:15 -0800,705,2129 -3152,6972,2013-11-12 19:51:02 -0800,705,2129 -3153,2795,2013-11-13 00:13:42 -0800,705,2129 -3154,1959,2013-11-10 22:57:02 -0800,705,2129 -3155,4412,2013-11-10 23:24:04 -0800,705,2129 -3156,3932,2013-11-06 23:08:49 -0800,706,2130 -3157,3143,2013-11-08 11:48:07 -0800,706,2131 -3158,4092,2013-11-11 22:01:56 -0800,706,2130 -3159,4367,2013-11-09 15:23:20 -0800,707,2132 -3160,8651,2013-11-11 10:16:17 -0800,707,2132 -3161,9336,2013-11-07 06:22:50 -0800,707,2132 -3162,3297,2013-11-12 03:14:18 -0800,707,2132 -3163,5129,2013-11-07 19:50:19 -0800,707,2132 -3164,8350,2013-11-07 18:54:26 -0800,707,2132 -3165,7922,2013-11-10 22:20:43 -0800,708,2135 -3166,3116,2013-11-11 13:51:23 -0800,709,2137 -3167,2681,2013-11-09 21:43:00 -0800,709,2137 -3168,8613,2013-11-10 18:37:59 -0800,709,2137 -3169,8489,2013-11-11 05:48:39 -0800,709,2137 -3170,4557,2013-11-11 07:59:02 -0800,709,2137 -3171,3246,2013-11-10 17:53:16 -0800,710,2138 -3172,4684,2013-11-10 11:15:12 -0800,710,2138 -3173,767,2013-11-08 13:14:20 -0800,710,2138 -3174,8561,2013-11-13 08:35:04 -0800,710,2138 -3175,9880,2013-11-12 07:17:39 -0800,710,2138 -3176,7558,2013-11-07 13:45:51 -0800,710,2138 -3177,2953,2013-11-08 20:10:29 -0800,710,2138 -3178,7598,2013-11-11 22:10:03 -0800,710,2138 -3179,8782,2013-11-08 07:00:43 -0800,710,2138 -3180,1084,2013-11-10 15:58:55 -0800,711,2139 -3181,5449,2013-11-11 01:44:16 -0800,711,2139 -3182,5527,2013-11-10 22:12:36 -0800,711,2139 -3183,9711,2013-11-08 06:54:01 -0800,712,2142 -3184,446,2013-11-12 18:05:05 -0800,712,2142 -3185,5889,2013-11-07 18:19:23 -0800,712,2144 -3186,8811,2013-11-12 00:43:26 -0800,712,2144 -3187,3979,2013-11-10 11:47:10 -0800,713,2145 -3188,9472,2013-11-09 10:00:31 -0800,713,2145 -3189,3840,2013-11-13 02:26:56 -0800,713,2145 -3190,6995,2013-11-10 14:23:09 -0800,713,2145 -3191,8013,2013-11-11 17:16:29 -0800,713,2146 -3192,2589,2013-11-11 07:53:06 -0800,713,2146 -3193,2610,2013-11-12 14:11:04 -0800,714,2147 -3194,3697,2013-11-07 13:17:38 -0800,714,2147 -3195,9028,2013-11-07 00:57:58 -0800,714,2147 -3196,7730,2013-11-11 12:38:59 -0800,714,2147 -3197,4892,2013-11-07 06:12:24 -0800,714,2147 -3198,1174,2013-11-09 04:42:04 -0800,715,2148 -3199,8073,2013-11-12 20:00:49 -0800,715,2149 -3200,8249,2013-11-10 06:45:23 -0800,715,2150 -3201,1470,2013-11-12 17:33:29 -0800,715,2148 -3202,6990,2013-11-12 14:53:45 -0800,715,2149 -3203,6829,2013-11-12 07:48:46 -0800,715,2149 -3204,6259,2013-11-08 02:59:57 -0800,715,2151 -3205,9594,2013-11-12 06:12:59 -0800,715,2151 -3206,7062,2013-11-11 19:30:56 -0800,716,2152 -3207,6084,2013-11-12 09:32:18 -0800,716,2152 -3208,5065,2013-11-10 22:55:47 -0800,716,2152 -3209,2068,2013-11-06 17:36:56 -0800,717,2153 -3210,5390,2013-11-12 09:51:58 -0800,717,2153 -3211,2338,2013-11-09 00:00:00 -0800,717,2153 -3212,7281,2013-11-06 14:35:39 -0800,717,2153 -3213,3531,2013-11-08 16:36:12 -0800,717,2153 -3214,2585,2013-11-07 23:54:50 -0800,717,2153 -3215,1348,2013-11-09 11:26:24 -0800,717,2153 -3216,4355,2013-11-12 10:12:20 -0800,717,2153 -3217,3447,2013-11-09 01:43:42 -0800,717,2153 -3218,5027,2013-11-10 04:05:50 -0800,719,2157 -3219,8766,2013-11-07 03:05:00 -0800,719,2157 -3220,328,2013-11-09 16:48:49 -0800,719,2157 -3221,4437,2013-11-10 12:44:19 -0800,719,2157 -3222,8411,2013-11-08 09:56:39 -0800,719,2156 -3223,4200,2013-11-09 15:45:13 -0800,719,2156 -3224,1400,2013-11-10 08:25:14 -0800,719,2157 -3225,1125,2013-11-10 05:07:01 -0800,720,2161 -3226,3320,2013-11-08 15:27:50 -0800,720,2160 -3227,7545,2013-11-11 15:06:52 -0800,720,2161 -3228,960,2013-11-10 03:05:56 -0800,720,2160 -3229,9026,2013-11-12 13:07:11 -0800,720,2158 -3230,3444,2013-11-12 12:32:38 -0800,721,2162 -3231,1227,2013-11-09 16:22:49 -0800,721,2164 -3232,7273,2013-11-10 16:33:06 -0800,721,2165 -3233,5730,2013-11-06 18:18:24 -0800,721,2165 -3234,1951,2013-11-12 14:20:32 -0800,721,2164 -3235,3995,2013-11-07 19:33:49 -0800,721,2164 -3236,7537,2013-11-11 11:36:54 -0800,721,2165 -3237,4443,2013-11-12 15:12:55 -0800,721,2165 -3238,7431,2013-11-10 12:06:31 -0800,721,2163 -3239,2143,2013-11-10 23:05:04 -0800,722,2169 -3240,5687,2013-11-10 22:45:16 -0800,722,2166 -3241,6720,2013-11-10 13:23:00 -0800,722,2169 -3242,3065,2013-11-10 01:41:55 -0800,722,2168 -3243,7245,2013-11-06 20:21:14 -0800,722,2167 -3244,6954,2013-11-06 10:37:50 -0800,722,2169 -3245,3692,2013-11-09 07:03:40 -0800,722,2167 -3246,8215,2013-11-08 15:28:55 -0800,723,2171 -3247,4249,2013-11-12 15:26:22 -0800,723,2171 -3248,5210,2013-11-07 23:52:20 -0800,723,2171 -3249,3521,2013-11-11 08:30:41 -0800,723,2170 -3250,6561,2013-11-11 00:02:24 -0800,723,2172 -3251,8113,2013-11-06 19:31:27 -0800,723,2171 -3252,8142,2013-11-06 14:15:30 -0800,723,2172 -3253,9765,2013-11-11 14:16:25 -0800,723,2171 -3254,5783,2013-11-11 09:32:03 -0800,725,2177 -3255,8489,2013-11-09 23:06:45 -0800,726,2178 -3256,5374,2013-11-09 18:40:54 -0800,726,2179 -3257,9232,2013-11-10 15:06:57 -0800,726,2178 -3258,3050,2013-11-10 07:59:47 -0800,726,2178 -3259,6166,2013-11-07 19:45:53 -0800,726,2180 -3260,1825,2013-11-07 18:27:37 -0800,726,2180 -3261,3026,2013-11-08 11:22:02 -0800,726,2180 -3262,5734,2013-11-08 04:04:52 -0800,726,2179 -3263,3643,2013-11-12 16:06:49 -0800,727,2181 -3264,446,2013-11-07 04:30:52 -0800,727,2181 -3265,1911,2013-11-08 22:55:33 -0800,727,2181 -3266,3322,2013-11-11 13:32:48 -0800,727,2182 -3267,5910,2013-11-08 18:06:02 -0800,728,2183 -3268,7843,2013-11-08 06:09:18 -0800,729,2185 -3269,9638,2013-11-12 16:43:01 -0800,729,2185 -3270,3369,2013-11-11 06:56:44 -0800,729,2185 -3271,1448,2013-11-08 23:28:00 -0800,729,2185 -3272,2572,2013-11-06 11:37:39 -0800,729,2185 -3273,9824,2013-11-10 08:30:10 -0800,729,2185 -3274,6298,2013-11-10 02:22:55 -0800,729,2185 -3275,5445,2013-11-10 12:00:58 -0800,729,2185 -3276,688,2013-11-10 12:03:27 -0800,730,2186 -3277,2685,2013-11-07 16:09:01 -0800,730,2186 -3278,581,2013-11-13 04:54:55 -0800,730,2186 -3279,3840,2013-11-09 10:32:49 -0800,730,2186 -3280,3325,2013-11-09 22:27:56 -0800,730,2186 -3281,926,2013-11-12 18:19:48 -0800,730,2186 -3282,3725,2013-11-08 07:33:49 -0800,730,2186 -3283,869,2013-11-10 02:58:55 -0800,730,2186 -3284,3440,2013-11-08 15:49:34 -0800,731,2187 -3285,3338,2013-11-11 23:47:47 -0800,731,2187 -3286,6010,2013-11-12 20:27:53 -0800,731,2187 -3287,5065,2013-11-08 14:40:10 -0800,731,2187 -3288,2370,2013-11-10 04:56:02 -0800,731,2187 -3289,950,2013-11-10 06:18:25 -0800,731,2187 -3290,7952,2013-11-10 11:02:44 -0800,731,2187 -3291,1381,2013-11-07 21:41:31 -0800,731,2187 -3292,1348,2013-11-09 08:11:20 -0800,732,2192 -3293,8970,2013-11-06 17:17:39 -0800,733,2194 -3294,9527,2013-11-08 20:33:54 -0800,733,2194 -3295,810,2013-11-12 00:01:29 -0800,733,2193 -3296,9168,2013-11-09 02:43:06 -0800,733,2194 -3297,9263,2013-11-10 05:56:27 -0800,734,2197 -3298,7822,2013-11-13 08:30:40 -0800,734,2199 -3299,7284,2013-11-07 15:51:25 -0800,734,2197 -3300,8590,2013-11-08 10:36:36 -0800,734,2195 -3301,9828,2013-11-07 07:11:38 -0800,734,2197 -3302,4942,2013-11-06 18:27:03 -0800,734,2196 -3303,9458,2013-11-11 07:45:26 -0800,734,2197 -3304,9317,2013-11-12 02:29:54 -0800,734,2197 -3305,9440,2013-11-10 16:37:24 -0800,734,2196 -3306,2567,2013-11-06 13:50:44 -0800,735,2201 -3307,1500,2013-11-08 20:38:36 -0800,735,2201 -3308,6159,2013-11-06 11:38:53 -0800,735,2201 -3309,8572,2013-11-08 06:38:08 -0800,735,2201 -3310,2662,2013-11-08 12:40:11 -0800,735,2200 -3311,5672,2013-11-13 05:50:34 -0800,735,2200 -3312,2639,2013-11-11 12:09:35 -0800,735,2200 -3313,3650,2013-11-09 08:37:43 -0800,735,2200 -3314,7209,2013-11-08 09:42:41 -0800,736,2202 -3315,524,2013-11-11 14:07:19 -0800,736,2202 -3316,6809,2013-11-08 16:11:04 -0800,737,2203 -3317,6511,2013-11-11 23:23:22 -0800,737,2204 -3318,5783,2013-11-08 20:24:55 -0800,737,2203 -3319,565,2013-11-11 16:19:32 -0800,737,2203 -3320,8932,2013-11-09 10:19:29 -0800,737,2203 -3321,4835,2013-11-08 07:31:04 -0800,737,2203 -3322,2989,2013-11-12 06:15:13 -0800,737,2203 -3323,8692,2013-11-09 10:01:42 -0800,737,2204 -3324,4349,2013-11-09 12:11:29 -0800,737,2204 -3325,6064,2013-11-10 22:04:36 -0800,738,2206 -3326,7700,2013-11-08 17:18:25 -0800,738,2205 -3327,2649,2013-11-10 22:58:52 -0800,738,2205 -3328,5500,2013-11-12 06:27:24 -0800,739,2207 -3329,4529,2013-11-09 04:39:34 -0800,739,2207 -3330,7883,2013-11-08 11:31:04 -0800,739,2207 -3331,2550,2013-11-11 00:47:31 -0800,739,2207 -3332,455,2013-11-10 20:20:11 -0800,739,2207 -3333,8321,2013-11-13 00:52:32 -0800,739,2207 -3334,2063,2013-11-12 06:59:32 -0800,739,2207 -3335,537,2013-11-12 00:54:16 -0800,739,2207 -3336,8335,2013-11-08 21:23:50 -0800,740,2210 -3337,5572,2013-11-13 00:49:00 -0800,740,2208 -3338,5870,2013-11-10 11:49:51 -0800,740,2209 -3339,7316,2013-11-11 13:56:55 -0800,742,2213 -3340,7228,2013-11-08 21:51:55 -0800,742,2214 -3341,6335,2013-11-10 10:04:55 -0800,743,2218 -3342,728,2013-11-13 06:55:11 -0800,743,2219 -3343,6909,2013-11-12 13:17:35 -0800,743,2219 -3344,2288,2013-11-06 21:49:09 -0800,743,2218 -3345,5298,2013-11-07 09:05:36 -0800,743,2218 -3346,7770,2013-11-07 08:32:05 -0800,743,2219 -3347,3761,2013-11-07 06:04:57 -0800,743,2219 -3348,7564,2013-11-13 08:09:44 -0800,744,2220 -3349,3578,2013-11-10 08:48:16 -0800,744,2221 -3350,624,2013-11-09 18:45:48 -0800,744,2221 -3351,475,2013-11-07 18:14:31 -0800,744,2221 -3352,7170,2013-11-09 12:13:23 -0800,745,2225 -3353,3254,2013-11-10 19:08:29 -0800,745,2223 -3354,9780,2013-11-11 23:15:07 -0800,746,2226 -3355,81,2013-11-12 19:59:05 -0800,746,2228 -3356,7239,2013-11-10 01:52:46 -0800,746,2228 -3357,865,2013-11-07 13:25:31 -0800,747,2230 -3358,9161,2013-11-11 13:36:26 -0800,747,2231 -3359,6898,2013-11-07 23:54:15 -0800,747,2232 -3360,9445,2013-11-11 15:47:33 -0800,747,2231 -3361,9570,2013-11-06 12:19:36 -0800,747,2232 -3362,9154,2013-11-11 13:06:07 -0800,747,2230 -3363,9696,2013-11-11 08:29:04 -0800,748,2235 -3364,6049,2013-11-11 13:44:48 -0800,748,2233 -3365,1929,2013-11-09 15:49:28 -0800,748,2235 -3366,7759,2013-11-09 20:49:47 -0800,748,2235 -3367,1433,2013-11-06 14:07:33 -0800,748,2234 -3368,3811,2013-11-08 11:00:14 -0800,748,2235 -3369,9794,2013-11-06 17:01:52 -0800,749,2237 -3370,9570,2013-11-11 03:23:30 -0800,749,2236 -3371,3861,2013-11-12 11:32:33 -0800,750,2241 -3372,1518,2013-11-07 18:41:53 -0800,750,2242 -3373,1463,2013-11-08 11:22:41 -0800,750,2242 -3374,6133,2013-11-08 02:38:04 -0800,750,2244 -3375,4962,2013-11-06 18:43:47 -0800,750,2245 -3376,7763,2013-11-08 13:15:30 -0800,750,2244 -3377,3974,2013-11-07 07:26:10 -0800,751,2247 -3378,1798,2013-11-08 22:47:06 -0800,751,2247 -3379,4125,2013-11-07 07:00:10 -0800,751,2249 -3380,4098,2013-11-07 00:26:46 -0800,751,2247 -3381,5080,2013-11-09 07:19:48 -0800,752,2250 -3382,3840,2013-11-11 04:45:29 -0800,752,2252 -3383,7509,2013-11-08 06:01:57 -0800,754,2259 -3384,5756,2013-11-08 17:33:49 -0800,754,2256 -3385,6416,2013-11-08 13:08:38 -0800,754,2256 -3386,2140,2013-11-11 04:08:50 -0800,754,2256 -3387,757,2013-11-06 18:15:42 -0800,754,2256 -3388,6340,2013-11-12 06:39:17 -0800,755,2265 -3389,3746,2013-11-07 08:38:26 -0800,755,2264 -3390,6279,2013-11-08 07:32:25 -0800,755,2264 -3391,9150,2013-11-10 23:43:34 -0800,755,2261 -3392,8269,2013-11-12 15:23:45 -0800,755,2264 -3393,9759,2013-11-12 15:52:39 -0800,755,2262 -3394,5599,2013-11-10 20:58:48 -0800,755,2264 -3395,8588,2013-11-11 20:51:27 -0800,755,2262 -3396,2317,2013-11-10 14:09:16 -0800,756,2267 -3397,969,2013-11-07 02:52:53 -0800,756,2270 -3398,8672,2013-11-12 19:16:13 -0800,756,2269 -3399,1097,2013-11-11 00:45:59 -0800,756,2266 -3400,3470,2013-11-07 10:18:31 -0800,756,2266 -3401,2833,2013-11-09 07:02:39 -0800,756,2269 -3402,4354,2013-11-08 08:29:54 -0800,757,2271 -3403,3817,2013-11-07 04:28:57 -0800,757,2271 -3404,270,2013-11-09 15:51:32 -0800,757,2272 -3405,1529,2013-11-10 15:42:31 -0800,758,2276 -3406,3058,2013-11-11 07:17:21 -0800,758,2274 -3407,6484,2013-11-08 12:10:33 -0800,759,2277 -3408,9680,2013-11-08 10:14:37 -0800,759,2277 -3409,5457,2013-11-07 09:07:35 -0800,759,2277 -3410,6376,2013-11-08 04:44:39 -0800,759,2277 -3411,4310,2013-11-10 06:38:59 -0800,759,2277 -3412,1794,2013-11-06 20:17:07 -0800,759,2277 -3413,1770,2013-11-10 12:46:25 -0800,760,2280 -3414,3379,2013-11-08 17:20:52 -0800,760,2280 -3415,3352,2013-11-08 01:01:53 -0800,760,2281 -3416,9516,2013-11-07 15:54:52 -0800,760,2278 -3417,7734,2013-11-09 13:57:41 -0800,760,2281 -3418,4983,2013-11-10 11:08:45 -0800,760,2280 -3419,6267,2013-11-11 14:19:10 -0800,760,2281 -3420,6250,2013-11-06 19:03:56 -0800,760,2280 -3421,3840,2013-11-09 05:23:13 -0800,761,2284 -3422,2416,2013-11-06 17:41:35 -0800,761,2282 -3423,786,2013-11-13 06:19:17 -0800,761,2284 -3424,6990,2013-11-12 06:45:45 -0800,762,2288 -3425,930,2013-11-06 16:44:48 -0800,762,2287 -3426,3578,2013-11-11 07:13:20 -0800,762,2288 -3427,7390,2013-11-09 22:35:29 -0800,762,2287 -3428,8454,2013-11-10 03:30:29 -0800,763,2289 -3429,7712,2013-11-10 23:21:41 -0800,763,2289 -3430,9822,2013-11-09 06:54:16 -0800,763,2289 -3431,8053,2013-11-11 11:56:57 -0800,763,2289 -3432,245,2013-11-11 02:54:10 -0800,763,2289 -3433,7509,2013-11-10 04:18:33 -0800,763,2289 -3434,539,2013-11-06 09:54:17 -0800,763,2289 -3435,4053,2013-11-11 15:52:32 -0800,765,2291 -3436,7840,2013-11-13 05:24:58 -0800,765,2291 -3437,9434,2013-11-09 03:13:28 -0800,765,2292 -3438,4647,2013-11-12 12:14:19 -0800,765,2292 -3439,5735,2013-11-10 07:41:18 -0800,767,2300 -3440,9867,2013-11-12 18:44:54 -0800,767,2301 -3441,3236,2013-11-10 23:33:56 -0800,767,2301 -3442,9886,2013-11-08 23:42:50 -0800,768,2304 -3443,1373,2013-11-09 12:47:16 -0800,768,2305 -3444,4216,2013-11-13 06:44:46 -0800,768,2305 -3445,2188,2013-11-09 04:51:03 -0800,768,2304 -3446,2278,2013-11-07 03:19:54 -0800,769,2310 -3447,140,2013-11-09 11:12:19 -0800,769,2310 -3448,790,2013-11-06 10:08:36 -0800,769,2308 -3449,2989,2013-11-10 16:11:30 -0800,769,2310 -3450,6962,2013-11-09 02:00:43 -0800,769,2308 -3451,7581,2013-11-10 17:33:17 -0800,769,2307 -3452,7138,2013-11-10 11:21:43 -0800,769,2307 -3453,6032,2013-11-08 15:36:20 -0800,769,2308 -3454,3137,2013-11-11 14:36:01 -0800,771,2318 -3455,5577,2013-11-12 11:03:58 -0800,771,2316 -3456,8490,2013-11-13 08:35:16 -0800,771,2317 -3457,7384,2013-11-12 12:35:53 -0800,772,2321 -3458,190,2013-11-10 00:25:01 -0800,772,2320 -3459,9579,2013-11-09 20:11:34 -0800,772,2319 -3460,7431,2013-11-07 07:25:53 -0800,772,2320 -3461,2877,2013-11-08 13:42:02 -0800,772,2320 -3462,1169,2013-11-10 10:21:33 -0800,772,2319 -3463,2430,2013-11-11 09:00:45 -0800,772,2320 -3464,6422,2013-11-11 09:11:56 -0800,773,2322 -3465,6296,2013-11-09 19:27:49 -0800,773,2322 -3466,3654,2013-11-12 19:43:40 -0800,773,2323 -3467,6789,2013-11-10 20:17:40 -0800,773,2322 -3468,991,2013-11-10 01:27:33 -0800,773,2323 -3469,2185,2013-11-11 01:07:40 -0800,773,2323 -3470,1187,2013-11-09 04:32:30 -0800,773,2325 -3471,2045,2013-11-09 01:35:20 -0800,773,2324 -3472,1511,2013-11-07 18:25:52 -0800,774,2326 -3473,910,2013-11-11 17:12:44 -0800,774,2327 -3474,5810,2013-11-10 00:33:25 -0800,774,2326 -3475,8400,2013-11-07 00:18:45 -0800,774,2328 -3476,1548,2013-11-12 03:07:20 -0800,774,2328 -3477,8257,2013-11-09 03:34:40 -0800,774,2327 -3478,1357,2013-11-10 05:15:54 -0800,774,2327 -3479,8299,2013-11-11 02:51:57 -0800,774,2329 -3480,132,2013-11-11 08:00:22 -0800,775,2330 -3481,8765,2013-11-10 19:36:57 -0800,775,2331 -3482,6476,2013-11-08 19:25:54 -0800,776,2335 -3483,8068,2013-11-11 16:43:54 -0800,776,2334 -3484,3167,2013-11-09 11:09:50 -0800,776,2335 -3485,196,2013-11-07 01:04:22 -0800,776,2334 -3486,5335,2013-11-09 19:09:33 -0800,776,2334 -3487,928,2013-11-11 03:39:17 -0800,776,2335 -3488,1820,2013-11-08 23:29:04 -0800,776,2336 -3489,6094,2013-11-09 14:32:58 -0800,776,2335 -3490,3865,2013-11-08 01:32:58 -0800,776,2334 -3491,3493,2013-11-12 03:27:41 -0800,777,2341 -3492,6812,2013-11-07 11:33:11 -0800,777,2339 -3493,9660,2013-11-07 17:16:54 -0800,777,2340 -3494,9556,2013-11-12 23:41:10 -0800,777,2338 -3495,1878,2013-11-10 20:40:42 -0800,777,2338 -3496,2042,2013-11-09 02:12:50 -0800,777,2340 -3497,7129,2013-11-09 20:15:25 -0800,777,2341 -3498,3099,2013-11-11 15:53:23 -0800,777,2338 -3499,6859,2013-11-10 12:38:14 -0800,778,2342 -3500,4450,2013-11-12 14:28:48 -0800,778,2342 -3501,4095,2013-11-13 04:11:48 -0800,778,2342 -3502,8611,2013-11-08 19:59:40 -0800,778,2342 -3503,9841,2013-11-08 04:42:16 -0800,779,2343 -3504,151,2013-11-11 20:12:48 -0800,779,2343 -3505,6169,2013-11-12 19:50:55 -0800,779,2345 -3506,4421,2013-11-06 19:09:03 -0800,780,2347 -3507,1419,2013-11-08 13:35:42 -0800,781,2352 -3508,4219,2013-11-08 23:14:18 -0800,781,2350 -3509,5799,2013-11-11 13:47:50 -0800,781,2350 -3510,1450,2013-11-11 00:29:07 -0800,782,2353 -3511,5411,2013-11-11 08:48:20 -0800,784,2358 -3512,5673,2013-11-08 23:14:21 -0800,784,2358 -3513,5316,2013-11-10 17:51:08 -0800,784,2358 -3514,5926,2013-11-06 08:56:22 -0800,787,2365 -3515,1714,2013-11-11 14:58:39 -0800,787,2369 -3516,4380,2013-11-13 00:21:21 -0800,787,2365 -3517,1220,2013-11-06 13:30:38 -0800,787,2369 -3518,767,2013-11-06 16:37:53 -0800,787,2365 -3519,7826,2013-11-06 23:32:19 -0800,787,2366 -3520,2328,2013-11-08 04:33:07 -0800,789,2374 -3521,7359,2013-11-11 21:40:29 -0800,789,2375 -3522,1661,2013-11-09 07:33:21 -0800,789,2375 -3523,6589,2013-11-10 20:19:50 -0800,789,2374 -3524,8356,2013-11-10 14:26:47 -0800,789,2373 -3525,8483,2013-11-10 04:02:05 -0800,789,2374 -3526,4615,2013-11-12 12:15:42 -0800,789,2373 -3527,1978,2013-11-11 23:35:23 -0800,790,2378 -3528,8884,2013-11-06 22:51:19 -0800,790,2377 -3529,113,2013-11-12 07:51:27 -0800,790,2376 -3530,4414,2013-11-09 15:01:00 -0800,790,2377 -3531,693,2013-11-07 21:32:50 -0800,790,2377 -3532,6495,2013-11-09 17:13:52 -0800,790,2378 -3533,9516,2013-11-12 23:27:03 -0800,790,2376 -3534,5277,2013-11-09 14:40:49 -0800,790,2378 -3535,8861,2013-11-11 18:39:04 -0800,790,2376 -3536,4793,2013-11-08 11:56:54 -0800,791,2383 -3537,341,2013-11-09 07:19:29 -0800,791,2384 -3538,6236,2013-11-10 16:16:29 -0800,791,2384 -3539,3080,2013-11-11 15:48:52 -0800,791,2381 -3540,8089,2013-11-08 09:22:23 -0800,791,2384 -3541,8915,2013-11-11 18:29:02 -0800,791,2384 -3542,9632,2013-11-11 06:43:12 -0800,791,2381 -3543,4621,2013-11-07 00:51:57 -0800,791,2382 -3544,9047,2013-11-11 23:23:25 -0800,791,2381 -3545,7817,2013-11-10 11:49:32 -0800,792,2386 -3546,2665,2013-11-10 17:58:01 -0800,792,2385 -3547,8517,2013-11-06 13:22:18 -0800,792,2386 -3548,6929,2013-11-09 05:33:36 -0800,792,2385 -3549,3795,2013-11-11 02:41:21 -0800,792,2387 -3550,8779,2013-11-10 22:27:04 -0800,792,2386 -3551,1611,2013-11-07 19:06:23 -0800,792,2386 -3552,5126,2013-11-10 02:17:44 -0800,792,2387 -3553,6163,2013-11-06 19:58:36 -0800,792,2386 -3554,3377,2013-11-06 23:03:52 -0800,794,2393 -3555,8081,2013-11-10 02:52:56 -0800,794,2397 -3556,2453,2013-11-10 10:46:01 -0800,794,2397 -3557,12,2013-11-08 11:46:11 -0800,794,2393 -3558,1480,2013-11-07 12:28:10 -0800,794,2393 -3559,4956,2013-11-09 20:50:04 -0800,795,2402 -3560,8751,2013-11-10 23:16:59 -0800,795,2399 -3561,1300,2013-11-10 02:41:38 -0800,796,2405 -3562,9168,2013-11-06 16:22:19 -0800,796,2406 -3563,2582,2013-11-08 13:37:01 -0800,797,2412 -3564,631,2013-11-10 13:33:34 -0800,797,2410 -3565,531,2013-11-06 12:21:36 -0800,797,2408 -3566,9418,2013-11-10 05:25:29 -0800,797,2410 -3567,1882,2013-11-11 23:47:19 -0800,798,2414 -3568,8956,2013-11-06 10:26:28 -0800,798,2416 -3569,6154,2013-11-10 14:06:09 -0800,799,2417 -3570,7570,2013-11-07 12:25:01 -0800,799,2417 -3571,635,2013-11-06 22:23:53 -0800,799,2418 -3572,6550,2013-11-12 22:07:47 -0800,799,2419 -3573,8669,2013-11-08 02:32:18 -0800,799,2417 -3574,1696,2013-11-11 21:25:36 -0800,799,2417 -3575,1579,2013-11-08 02:58:09 -0800,799,2418 -3576,8993,2013-11-10 06:26:10 -0800,800,2421 -3577,645,2013-11-06 19:34:37 -0800,800,2420 -3578,5929,2013-11-06 17:28:37 -0800,800,2420 -3579,875,2013-11-08 15:28:06 -0800,800,2422 -3580,4357,2013-11-06 15:04:20 -0800,800,2422 -3581,8610,2013-11-09 04:22:41 -0800,800,2420 -3582,6233,2013-11-12 18:17:14 -0800,800,2422 -3583,725,2013-11-08 18:01:04 -0800,800,2421 -3584,8730,2013-11-06 17:04:27 -0800,801,2426 -3585,1467,2013-11-11 20:43:44 -0800,801,2426 -3586,7815,2013-11-07 12:22:27 -0800,801,2427 -3587,8450,2013-11-12 02:28:48 -0800,801,2424 -3588,4684,2013-11-09 18:10:38 -0800,801,2426 -3589,3992,2013-11-09 03:13:34 -0800,801,2428 -3590,1486,2013-11-09 11:27:08 -0800,801,2424 -3591,2220,2013-11-07 19:58:50 -0800,803,2431 -3592,4900,2013-11-13 02:02:23 -0800,803,2430 -3593,7334,2013-11-07 06:50:28 -0800,803,2430 -3594,9853,2013-11-07 05:48:20 -0800,804,2432 -3595,3196,2013-11-07 11:28:32 -0800,804,2432 -3596,5112,2013-11-10 23:33:49 -0800,804,2432 -3597,9690,2013-11-09 19:05:50 -0800,804,2432 -3598,2442,2013-11-11 09:26:10 -0800,805,2433 -3599,7615,2013-11-10 03:03:07 -0800,805,2435 -3600,1346,2013-11-06 22:11:57 -0800,805,2434 -3601,1364,2013-11-09 03:05:12 -0800,805,2434 -3602,3461,2013-11-06 08:54:47 -0800,806,2440 -3603,7720,2013-11-11 22:01:16 -0800,806,2436 -3604,3853,2013-11-13 02:22:25 -0800,808,2449 -3605,2566,2013-11-12 09:21:18 -0800,808,2448 -3606,7623,2013-11-12 22:57:55 -0800,808,2449 -3607,7228,2013-11-11 05:30:12 -0800,809,2450 -3608,7915,2013-11-08 01:34:16 -0800,809,2450 -3609,628,2013-11-11 04:24:09 -0800,809,2450 -3610,5332,2013-11-12 23:28:24 -0800,809,2451 -3611,9738,2013-11-11 08:01:39 -0800,809,2454 -3612,595,2013-11-10 05:36:31 -0800,809,2454 -3613,7980,2013-11-06 21:22:25 -0800,809,2453 -3614,6638,2013-11-11 15:11:15 -0800,809,2453 -3615,5447,2013-11-11 16:02:02 -0800,810,2455 -3616,8856,2013-11-12 21:58:44 -0800,810,2456 -3617,950,2013-11-08 22:26:18 -0800,810,2455 -3618,6714,2013-11-07 05:43:56 -0800,810,2455 -3619,4494,2013-11-08 11:03:06 -0800,810,2455 -3620,2212,2013-11-08 05:58:59 -0800,810,2456 -3621,5472,2013-11-10 15:14:24 -0800,810,2456 -3622,4385,2013-11-13 07:36:39 -0800,810,2456 -3623,341,2013-11-10 12:41:53 -0800,810,2455 -3624,4640,2013-11-08 12:08:32 -0800,811,2457 -3625,3951,2013-11-11 09:29:03 -0800,811,2458 -3626,947,2013-11-09 08:01:12 -0800,811,2457 -3627,8450,2013-11-09 05:17:57 -0800,811,2458 -3628,9087,2013-11-07 05:26:03 -0800,811,2459 -3629,827,2013-11-08 19:04:18 -0800,811,2459 -3630,468,2013-11-07 09:12:33 -0800,812,2462 -3631,1712,2013-11-08 16:12:24 -0800,812,2461 -3632,5621,2013-11-11 11:39:37 -0800,812,2460 -3633,690,2013-11-09 17:42:08 -0800,814,2467 -3634,675,2013-11-12 04:30:06 -0800,814,2468 -3635,810,2013-11-07 02:48:52 -0800,814,2467 -3636,5426,2013-11-11 08:24:20 -0800,815,2471 -3637,6784,2013-11-09 19:37:25 -0800,815,2469 -3638,7928,2013-11-09 15:15:02 -0800,815,2472 -3639,2490,2013-11-12 12:28:26 -0800,816,2475 -3640,634,2013-11-09 12:54:37 -0800,816,2474 -3641,9653,2013-11-08 02:50:37 -0800,817,2477 -3642,3586,2013-11-07 20:44:43 -0800,817,2478 -3643,6223,2013-11-08 01:58:39 -0800,817,2476 -3644,9148,2013-11-12 01:04:45 -0800,817,2478 -3645,2942,2013-11-13 03:11:23 -0800,817,2478 -3646,1542,2013-11-07 01:44:13 -0800,817,2478 -3647,569,2013-11-10 14:08:49 -0800,818,2480 -3648,8252,2013-11-13 03:31:52 -0800,818,2481 -3649,3656,2013-11-08 17:04:13 -0800,818,2480 -3650,7053,2013-11-11 03:24:10 -0800,818,2480 -3651,5579,2013-11-10 17:02:19 -0800,818,2479 -3652,4243,2013-11-09 23:20:04 -0800,818,2479 -3653,5322,2013-11-07 19:41:01 -0800,818,2480 -3654,189,2013-11-08 18:20:14 -0800,818,2480 -3655,964,2013-11-09 14:17:26 -0800,818,2479 -3656,3786,2013-11-09 12:55:58 -0800,819,2485 -3657,4480,2013-11-09 01:28:06 -0800,819,2485 -3658,2039,2013-11-06 23:59:54 -0800,819,2484 -3659,3697,2013-11-08 18:21:54 -0800,820,2487 -3660,3213,2013-11-10 04:23:17 -0800,820,2486 -3661,7153,2013-11-09 08:44:05 -0800,820,2490 -3662,7381,2013-11-09 14:18:20 -0800,821,2491 -3663,5627,2013-11-11 03:53:08 -0800,822,2492 -3664,2425,2013-11-11 22:39:01 -0800,822,2492 -3665,9193,2013-11-10 21:19:09 -0800,823,2493 -3666,1230,2013-11-08 05:34:13 -0800,823,2494 -3667,8799,2013-11-13 06:32:34 -0800,824,2495 -3668,3514,2013-11-11 13:51:48 -0800,824,2498 -3669,6491,2013-11-08 13:34:00 -0800,824,2499 -3670,6534,2013-11-07 22:21:25 -0800,824,2497 -3671,5110,2013-11-06 19:24:44 -0800,824,2499 -3672,3547,2013-11-09 10:50:15 -0800,824,2497 -3673,9090,2013-11-08 07:46:20 -0800,824,2496 -3674,3179,2013-11-11 02:47:47 -0800,825,2502 -3675,685,2013-11-07 05:05:22 -0800,825,2503 -3676,5016,2013-11-10 05:34:05 -0800,826,2508 -3677,3915,2013-11-11 05:50:46 -0800,826,2504 -3678,4837,2013-11-07 13:45:09 -0800,826,2505 -3679,7177,2013-11-06 11:39:53 -0800,826,2505 -3680,7927,2013-11-06 11:32:25 -0800,826,2505 -3681,3290,2013-11-07 11:18:04 -0800,826,2508 -3682,860,2013-11-09 16:12:34 -0800,827,2510 -3683,5332,2013-11-07 16:06:12 -0800,829,2513 -3684,1493,2013-11-10 04:57:13 -0800,829,2516 -3685,2628,2013-11-09 04:38:07 -0800,829,2514 -3686,7933,2013-11-06 16:09:24 -0800,829,2513 -3687,8489,2013-11-06 18:31:54 -0800,829,2514 -3688,1884,2013-11-10 17:31:29 -0800,829,2513 -3689,5117,2013-11-09 01:48:57 -0800,829,2514 -3690,4790,2013-11-10 15:27:09 -0800,829,2515 -3691,8138,2013-11-06 11:50:25 -0800,830,2520 -3692,587,2013-11-10 00:19:13 -0800,830,2521 -3693,7359,2013-11-08 23:42:44 -0800,830,2517 -3694,7862,2013-11-08 21:32:23 -0800,830,2521 -3695,6447,2013-11-09 07:47:43 -0800,830,2521 -3696,5022,2013-11-08 05:10:35 -0800,830,2521 -3697,716,2013-11-08 18:54:37 -0800,832,2523 -3698,8030,2013-11-08 13:36:37 -0800,832,2525 -3699,9371,2013-11-09 11:12:18 -0800,832,2527 -3700,5256,2013-11-12 18:11:30 -0800,832,2524 -3701,6440,2013-11-11 01:50:19 -0800,832,2527 -3702,5272,2013-11-12 16:48:43 -0800,832,2526 -3703,2831,2013-11-11 07:41:34 -0800,833,2530 -3704,9875,2013-11-06 19:25:58 -0800,833,2529 -3705,4986,2013-11-10 08:38:51 -0800,833,2530 -3706,6990,2013-11-09 20:12:57 -0800,833,2529 -3707,9517,2013-11-07 05:42:45 -0800,833,2529 -3708,9010,2013-11-11 16:13:23 -0800,833,2530 -3709,4923,2013-11-13 06:52:11 -0800,833,2530 -3710,5193,2013-11-07 09:53:08 -0800,835,2535 -3711,259,2013-11-10 01:33:58 -0800,835,2535 -3712,9073,2013-11-11 07:09:44 -0800,835,2535 -3713,6416,2013-11-10 11:28:19 -0800,835,2535 -3714,5251,2013-11-07 11:59:39 -0800,835,2535 -3715,721,2013-11-12 04:54:20 -0800,836,2538 -3716,129,2013-11-12 08:23:41 -0800,837,2544 -3717,5945,2013-11-11 08:16:02 -0800,837,2542 -3718,777,2013-11-09 20:39:02 -0800,837,2544 -3719,2583,2013-11-09 15:48:07 -0800,837,2542 -3720,4013,2013-11-08 03:43:35 -0800,837,2544 -3721,8785,2013-11-07 07:58:26 -0800,837,2541 -3722,1735,2013-11-11 03:29:37 -0800,838,2546 -3723,9815,2013-11-08 12:35:35 -0800,838,2545 -3724,751,2013-11-12 09:38:36 -0800,838,2546 -3725,3728,2013-11-12 22:59:27 -0800,838,2546 -3726,7375,2013-11-10 04:30:52 -0800,838,2548 -3727,6319,2013-11-12 00:10:01 -0800,838,2546 -3728,6520,2013-11-09 17:07:18 -0800,838,2545 -3729,9133,2013-11-08 08:48:10 -0800,838,2547 -3730,8727,2013-11-12 12:31:16 -0800,839,2550 -3731,350,2013-11-10 20:10:15 -0800,839,2550 -3732,3663,2013-11-09 20:25:33 -0800,839,2550 -3733,4914,2013-11-08 09:10:29 -0800,839,2549 -3734,7928,2013-11-08 01:55:28 -0800,839,2549 -3735,1548,2013-11-07 19:18:49 -0800,840,2552 -3736,3547,2013-11-11 03:45:34 -0800,840,2552 -3737,857,2013-11-13 01:29:47 -0800,841,2555 -3738,3328,2013-11-10 13:30:55 -0800,842,2559 -3739,7881,2013-11-13 05:39:00 -0800,842,2557 -3740,2047,2013-11-07 19:20:02 -0800,843,2560 -3741,7741,2013-11-07 19:26:48 -0800,843,2561 -3742,2830,2013-11-08 08:32:44 -0800,844,2563 -3743,4218,2013-11-12 06:55:25 -0800,844,2565 -3744,2538,2013-11-09 03:27:25 -0800,844,2564 -3745,1926,2013-11-09 15:27:35 -0800,844,2564 -3746,2881,2013-11-07 07:25:43 -0800,844,2563 -3747,1821,2013-11-06 10:46:17 -0800,845,2567 -3748,8897,2013-11-09 21:20:21 -0800,845,2567 -3749,1170,2013-11-08 02:42:32 -0800,845,2566 -3750,449,2013-11-08 22:22:58 -0800,845,2567 -3751,1120,2013-11-07 20:32:02 -0800,846,2569 -3752,4729,2013-11-09 04:40:33 -0800,846,2569 -3753,5965,2013-11-06 17:01:02 -0800,846,2569 -3754,5638,2013-11-08 14:49:25 -0800,846,2569 -3755,6819,2013-11-08 04:11:00 -0800,847,2571 -3756,3590,2013-11-07 23:15:08 -0800,847,2571 -3757,8781,2013-11-12 12:12:59 -0800,847,2570 -3758,8280,2013-11-11 14:00:58 -0800,847,2570 -3759,160,2013-11-07 21:40:58 -0800,847,2571 -3760,3146,2013-11-06 17:06:10 -0800,847,2570 -3761,4774,2013-11-08 10:10:25 -0800,847,2570 -3762,1571,2013-11-11 19:17:54 -0800,848,2575 -3763,3929,2013-11-08 08:05:33 -0800,848,2574 -3764,7695,2013-11-08 08:02:42 -0800,848,2575 -3765,2691,2013-11-07 00:35:14 -0800,848,2572 -3766,9823,2013-11-08 03:18:08 -0800,848,2573 -3767,570,2013-11-11 21:56:53 -0800,848,2573 -3768,4759,2013-11-08 08:00:53 -0800,848,2573 -3769,1748,2013-11-07 09:32:28 -0800,851,2585 -3770,699,2013-11-09 21:00:49 -0800,851,2583 -3771,313,2013-11-12 19:23:52 -0800,851,2584 -3772,8913,2013-11-10 06:49:49 -0800,851,2583 -3773,750,2013-11-11 06:14:52 -0800,852,2586 -3774,1054,2013-11-10 22:01:07 -0800,852,2588 -3775,4371,2013-11-09 05:07:41 -0800,852,2589 -3776,2849,2013-11-10 15:08:58 -0800,852,2586 -3777,692,2013-11-06 09:58:11 -0800,852,2589 -3778,8377,2013-11-08 09:56:53 -0800,853,2590 -3779,9750,2013-11-12 07:13:30 -0800,854,2591 -3780,9450,2013-11-13 00:32:31 -0800,854,2591 -3781,8554,2013-11-09 16:28:00 -0800,854,2591 -3782,8031,2013-11-12 04:20:33 -0800,854,2591 -3783,6695,2013-11-08 01:21:41 -0800,855,2593 -3784,3817,2013-11-12 05:44:44 -0800,855,2592 -3785,5680,2013-11-06 17:15:22 -0800,855,2593 -3786,1413,2013-11-11 20:43:43 -0800,855,2592 -3787,4079,2013-11-13 04:02:58 -0800,855,2593 -3788,8162,2013-11-09 13:39:41 -0800,855,2592 -3789,3110,2013-11-06 10:56:52 -0800,855,2593 -3790,3571,2013-11-06 13:59:08 -0800,855,2592 -3791,85,2013-11-12 18:25:21 -0800,855,2593 -3792,8213,2013-11-08 05:14:55 -0800,856,2596 -3793,8095,2013-11-08 04:23:12 -0800,856,2595 -3794,3329,2013-11-12 22:21:23 -0800,856,2595 -3795,274,2013-11-11 03:17:40 -0800,857,2599 -3796,3447,2013-11-12 10:36:37 -0800,857,2599 -3797,3759,2013-11-12 11:57:37 -0800,857,2600 -3798,819,2013-11-10 21:27:45 -0800,857,2598 -3799,70,2013-11-11 22:44:38 -0800,858,2602 -3800,2189,2013-11-09 17:04:11 -0800,859,2607 -3801,93,2013-11-11 04:24:34 -0800,859,2609 -3802,9350,2013-11-09 20:26:12 -0800,859,2608 -3803,8530,2013-11-08 09:18:46 -0800,859,2606 -3804,9834,2013-11-08 13:37:21 -0800,860,2612 -3805,4336,2013-11-06 18:55:24 -0800,861,2616 -3806,1987,2013-11-10 09:51:39 -0800,861,2618 -3807,443,2013-11-09 09:52:20 -0800,861,2615 -3808,6695,2013-11-11 23:29:13 -0800,861,2617 -3809,5790,2013-11-08 21:35:27 -0800,861,2616 -3810,5643,2013-11-10 03:22:44 -0800,861,2616 -3811,3596,2013-11-13 01:14:48 -0800,861,2617 -3812,5730,2013-11-08 07:30:46 -0800,861,2618 -3813,4574,2013-11-13 05:27:20 -0800,862,2623 -3814,7997,2013-11-13 08:12:41 -0800,862,2624 -3815,6097,2013-11-10 16:07:38 -0800,862,2620 -3816,7640,2013-11-08 13:47:45 -0800,862,2623 -3817,6547,2013-11-11 11:03:18 -0800,862,2622 -3818,3489,2013-11-10 20:23:26 -0800,862,2624 -3819,5195,2013-11-12 02:43:28 -0800,863,2625 -3820,6509,2013-11-10 09:12:53 -0800,863,2627 -3821,4793,2013-11-10 08:51:08 -0800,863,2627 -3822,4356,2013-11-11 02:03:35 -0800,863,2626 -3823,5250,2013-11-09 23:39:50 -0800,863,2627 -3824,6681,2013-11-09 18:54:11 -0800,863,2627 -3825,4644,2013-11-09 07:25:53 -0800,863,2625 -3826,5590,2013-11-09 19:55:01 -0800,863,2627 -3827,7872,2013-11-10 03:11:26 -0800,864,2628 -3828,5960,2013-11-07 19:31:31 -0800,864,2629 -3829,8530,2013-11-13 02:06:36 -0800,864,2629 -3830,3950,2013-11-12 00:39:44 -0800,864,2630 -3831,594,2013-11-10 03:44:22 -0800,864,2629 -3832,3583,2013-11-08 05:18:13 -0800,864,2628 -3833,3665,2013-11-11 11:10:43 -0800,864,2628 -3834,6133,2013-11-08 00:29:09 -0800,865,2632 -3835,2798,2013-11-07 21:52:49 -0800,865,2634 -3836,795,2013-11-07 18:16:38 -0800,865,2633 -3837,749,2013-11-07 20:51:28 -0800,865,2633 -3838,4699,2013-11-06 18:24:35 -0800,866,2638 -3839,9348,2013-11-09 15:45:09 -0800,866,2637 -3840,7053,2013-11-09 04:47:33 -0800,866,2637 -3841,3042,2013-11-08 08:38:18 -0800,866,2637 -3842,4496,2013-11-13 06:24:54 -0800,867,2641 -3843,9714,2013-11-10 03:06:20 -0800,867,2639 -3844,5482,2013-11-08 06:18:11 -0800,867,2640 -3845,8494,2013-11-06 17:32:58 -0800,867,2640 -3846,9241,2013-11-09 10:46:19 -0800,867,2639 -3847,6909,2013-11-09 00:25:12 -0800,867,2640 -3848,8321,2013-11-11 06:03:22 -0800,867,2640 -3849,9486,2013-11-11 18:46:00 -0800,867,2640 -3850,3661,2013-11-10 19:08:12 -0800,867,2641 -3851,8432,2013-11-11 10:49:36 -0800,868,2642 -3852,832,2013-11-12 14:02:04 -0800,868,2642 -3853,1286,2013-11-07 07:42:11 -0800,868,2642 -3854,628,2013-11-12 09:33:15 -0800,868,2642 -3855,2089,2013-11-08 20:34:58 -0800,868,2642 -3856,3970,2013-11-10 03:23:00 -0800,868,2642 -3857,8210,2013-11-09 18:33:42 -0800,868,2642 -3858,1628,2013-11-13 03:07:49 -0800,868,2642 -3859,199,2013-11-07 00:25:17 -0800,869,2644 -3860,1964,2013-11-13 01:35:01 -0800,869,2643 -3861,7862,2013-11-12 11:58:22 -0800,869,2644 -3862,7998,2013-11-11 17:28:24 -0800,870,2645 -3863,8382,2013-11-11 10:29:00 -0800,871,2650 -3864,5285,2013-11-07 00:31:33 -0800,871,2647 -3865,3295,2013-11-12 01:19:34 -0800,871,2650 -3866,6593,2013-11-12 12:24:45 -0800,871,2649 -3867,2279,2013-11-11 04:52:07 -0800,871,2650 -3868,7981,2013-11-07 07:57:02 -0800,872,2652 -3869,8544,2013-11-12 14:35:29 -0800,873,2655 -3870,9012,2013-11-07 18:55:13 -0800,873,2655 -3871,4691,2013-11-10 08:43:28 -0800,873,2655 -3872,4820,2013-11-08 20:20:00 -0800,874,2656 -3873,8892,2013-11-11 09:03:24 -0800,874,2656 -3874,8065,2013-11-10 03:17:25 -0800,874,2656 -3875,7755,2013-11-12 14:54:58 -0800,874,2656 -3876,6391,2013-11-08 03:48:55 -0800,875,2658 -3877,789,2013-11-11 19:00:14 -0800,875,2658 -3878,9689,2013-11-09 16:45:35 -0800,875,2658 -3879,2037,2013-11-11 15:13:11 -0800,875,2658 -3880,2885,2013-11-10 13:51:22 -0800,876,2660 -3881,5097,2013-11-07 16:43:50 -0800,876,2660 -3882,5526,2013-11-06 12:59:39 -0800,876,2660 -3883,6529,2013-11-10 08:40:13 -0800,876,2660 -3884,4426,2013-11-06 13:33:45 -0800,876,2659 -3885,8274,2013-11-10 17:39:52 -0800,877,2661 -3886,530,2013-11-12 03:10:30 -0800,878,2667 -3887,2827,2013-11-08 10:08:25 -0800,878,2666 -3888,1048,2013-11-07 04:58:12 -0800,878,2667 -3889,2390,2013-11-08 22:48:09 -0800,878,2666 -3890,4688,2013-11-07 14:24:31 -0800,879,2669 -3891,2649,2013-11-08 22:42:01 -0800,879,2669 -3892,7820,2013-11-08 17:35:22 -0800,880,2675 -3893,8295,2013-11-10 20:50:38 -0800,880,2672 -3894,3615,2013-11-08 14:58:44 -0800,880,2675 -3895,6120,2013-11-12 03:21:33 -0800,880,2673 -3896,7537,2013-11-09 03:36:09 -0800,880,2675 -3897,1255,2013-11-11 18:45:12 -0800,881,2676 -3898,3072,2013-11-13 08:26:46 -0800,881,2676 -3899,5930,2013-11-06 12:14:02 -0800,881,2676 -3900,3978,2013-11-07 14:27:43 -0800,881,2676 -3901,572,2013-11-10 20:04:39 -0800,881,2676 -3902,7339,2013-11-08 14:43:47 -0800,882,2677 -3903,146,2013-11-12 21:46:15 -0800,882,2680 -3904,9834,2013-11-09 08:03:56 -0800,883,2681 -3905,6595,2013-11-07 01:31:57 -0800,883,2682 -3906,434,2013-11-12 18:32:45 -0800,883,2685 -3907,2710,2013-11-08 10:53:50 -0800,883,2682 -3908,5138,2013-11-08 17:28:44 -0800,883,2681 -3909,6177,2013-11-07 10:49:08 -0800,884,2687 -3910,4975,2013-11-07 20:57:50 -0800,884,2690 -3911,4900,2013-11-08 19:03:52 -0800,884,2686 -3912,8078,2013-11-10 08:20:51 -0800,884,2687 -3913,8432,2013-11-13 03:57:09 -0800,884,2690 -3914,9885,2013-11-12 02:20:07 -0800,884,2688 -3915,2658,2013-11-08 17:08:18 -0800,885,2691 -3916,3836,2013-11-08 23:14:06 -0800,885,2691 -3917,3290,2013-11-09 14:33:28 -0800,885,2691 -3918,347,2013-11-10 09:37:00 -0800,885,2691 -3919,1767,2013-11-11 07:01:28 -0800,885,2691 -3920,883,2013-11-13 04:52:02 -0800,887,2693 -3921,33,2013-11-11 09:20:59 -0800,887,2693 -3922,3631,2013-11-07 02:29:28 -0800,887,2693 -3923,2459,2013-11-10 21:37:07 -0800,887,2693 -3924,2621,2013-11-09 09:02:25 -0800,887,2693 -3925,924,2013-11-06 13:17:02 -0800,888,2694 -3926,5336,2013-11-10 04:40:43 -0800,888,2694 -3927,4672,2013-11-07 22:05:38 -0800,888,2694 -3928,6367,2013-11-13 04:57:03 -0800,888,2694 -3929,3519,2013-11-09 12:11:19 -0800,888,2694 -3930,2191,2013-11-12 08:04:56 -0800,888,2694 -3931,8556,2013-11-12 03:59:35 -0800,888,2694 -3932,8393,2013-11-12 21:42:44 -0800,888,2694 -3933,4090,2013-11-08 14:48:46 -0800,888,2694 -3934,5700,2013-11-10 14:50:21 -0800,889,2695 -3935,5758,2013-11-08 04:24:41 -0800,889,2697 -3936,514,2013-11-10 03:48:58 -0800,889,2697 -3937,3654,2013-11-09 11:49:42 -0800,889,2697 -3938,8859,2013-11-10 18:44:57 -0800,889,2696 -3939,1655,2013-11-12 08:07:58 -0800,889,2696 -3940,4970,2013-11-06 08:57:24 -0800,889,2697 -3941,5786,2013-11-12 20:34:20 -0800,890,2701 -3942,9231,2013-11-13 04:13:14 -0800,890,2698 -3943,4572,2013-11-09 16:19:29 -0800,890,2698 -3944,1984,2013-11-10 07:28:10 -0800,890,2699 -3945,3128,2013-11-11 01:03:30 -0800,890,2698 -3946,2441,2013-11-12 23:22:46 -0800,890,2700 -3947,6531,2013-11-08 10:47:33 -0800,890,2699 -3948,96,2013-11-13 05:19:41 -0800,890,2700 -3949,2916,2013-11-07 15:19:54 -0800,890,2700 -3950,1562,2013-11-10 20:06:50 -0800,891,2703 -3951,7492,2013-11-09 09:52:14 -0800,892,2705 -3952,624,2013-11-09 12:58:56 -0800,892,2704 -3953,1686,2013-11-12 06:53:51 -0800,892,2704 -3954,2631,2013-11-09 00:23:09 -0800,892,2704 -3955,3038,2013-11-10 13:29:47 -0800,892,2705 -3956,4875,2013-11-11 12:43:12 -0800,892,2705 -3957,5388,2013-11-07 23:07:40 -0800,892,2705 -3958,6755,2013-11-10 03:17:28 -0800,893,2707 -3959,4741,2013-11-10 01:55:27 -0800,893,2707 -3960,2849,2013-11-11 22:41:51 -0800,893,2707 -3961,4299,2013-11-07 17:05:10 -0800,893,2707 -3962,3735,2013-11-11 04:59:09 -0800,893,2707 -3963,2360,2013-11-06 17:41:26 -0800,893,2707 -3964,1350,2013-11-08 02:34:17 -0800,893,2707 -3965,4999,2013-11-08 00:00:52 -0800,893,2707 -3966,9880,2013-11-07 06:21:32 -0800,893,2707 -3967,4266,2013-11-12 09:24:48 -0800,894,2711 -3968,4486,2013-11-12 08:07:53 -0800,894,2708 -3969,9465,2013-11-06 23:30:00 -0800,894,2710 -3970,2890,2013-11-12 11:41:54 -0800,895,2713 -3971,4898,2013-11-08 17:01:03 -0800,895,2715 -3972,1618,2013-11-13 07:02:34 -0800,895,2715 -3973,9295,2013-11-09 07:28:29 -0800,895,2714 -3974,9054,2013-11-11 19:46:27 -0800,895,2714 -3975,3711,2013-11-11 12:00:16 -0800,895,2714 -3976,523,2013-11-09 07:48:32 -0800,896,2717 -3977,7930,2013-11-11 13:51:44 -0800,896,2718 -3978,16,2013-11-10 13:15:42 -0800,896,2719 -3979,5914,2013-11-07 02:14:41 -0800,896,2719 -3980,2151,2013-11-07 13:53:25 -0800,896,2718 -3981,773,2013-11-12 09:38:01 -0800,896,2716 -3982,2733,2013-11-08 04:11:54 -0800,896,2717 -3983,9432,2013-11-06 16:14:00 -0800,897,2721 -3984,787,2013-11-08 23:02:31 -0800,897,2721 -3985,7454,2013-11-10 12:56:57 -0800,899,2728 -3986,686,2013-11-10 19:59:57 -0800,899,2726 -3987,5723,2013-11-12 23:03:04 -0800,899,2726 -3988,1392,2013-11-09 20:55:52 -0800,899,2725 -3989,3810,2013-11-07 03:20:33 -0800,899,2728 -3990,2470,2013-11-08 02:06:43 -0800,899,2724 -3991,3358,2013-11-09 10:59:21 -0800,899,2728 -3992,4610,2013-11-07 06:20:01 -0800,899,2728 -3993,2314,2013-11-11 16:40:18 -0800,900,2729 -3994,8476,2013-11-13 04:34:19 -0800,900,2729 -3995,2990,2013-11-07 12:36:46 -0800,900,2729 -3996,4155,2013-11-10 17:13:54 -0800,900,2729 -3997,530,2013-11-08 11:26:08 -0800,900,2730 -3998,1532,2013-11-10 13:30:23 -0800,901,2732 -3999,7770,2013-11-09 09:05:41 -0800,901,2732 -4000,7739,2013-11-06 15:35:04 -0800,901,2732 -4001,8720,2013-11-10 21:46:18 -0800,901,2733 -4002,3845,2013-11-12 07:28:31 -0800,901,2732 -4003,4295,2013-11-11 18:00:15 -0800,901,2732 -4004,6881,2013-11-09 06:43:34 -0800,901,2732 -4005,9433,2013-11-11 21:31:25 -0800,901,2732 -4006,6830,2013-11-08 06:13:28 -0800,902,2734 -4007,3040,2013-11-10 00:21:38 -0800,902,2734 -4008,6028,2013-11-08 15:20:37 -0800,902,2734 -4009,9689,2013-11-10 08:40:55 -0800,902,2734 -4010,5533,2013-11-09 09:31:07 -0800,902,2734 -4011,8792,2013-11-07 13:38:13 -0800,902,2734 -4012,1233,2013-11-08 19:25:05 -0800,902,2734 -4013,2464,2013-11-10 13:48:20 -0800,903,2735 -4014,146,2013-11-12 14:37:24 -0800,903,2737 -4015,4891,2013-11-10 09:12:50 -0800,903,2736 -4016,1838,2013-11-08 23:41:18 -0800,903,2736 -4017,9255,2013-11-10 05:54:09 -0800,904,2739 -4018,6277,2013-11-07 01:04:56 -0800,904,2741 -4019,7451,2013-11-10 23:58:17 -0800,904,2741 -4020,8917,2013-11-09 04:45:11 -0800,905,2744 -4021,5680,2013-11-10 17:31:49 -0800,905,2743 -4022,3883,2013-11-11 15:20:38 -0800,905,2743 -4023,5548,2013-11-07 15:16:15 -0800,905,2744 -4024,8689,2013-11-08 04:43:00 -0800,906,2747 -4025,5154,2013-11-09 04:59:57 -0800,906,2749 -4026,7441,2013-11-08 20:59:45 -0800,906,2748 -4027,2539,2013-11-08 16:43:09 -0800,906,2747 -4028,2160,2013-11-09 21:46:57 -0800,906,2749 -4029,2321,2013-11-11 23:05:09 -0800,906,2749 -4030,1693,2013-11-11 17:13:30 -0800,906,2748 -4031,8990,2013-11-07 17:45:22 -0800,907,2751 -4032,4779,2013-11-12 19:14:17 -0800,907,2750 -4033,8579,2013-11-08 01:22:46 -0800,907,2750 -4034,2333,2013-11-06 08:43:15 -0800,907,2752 -4035,9447,2013-11-11 19:14:51 -0800,907,2751 -4036,1782,2013-11-09 10:15:26 -0800,907,2752 -4037,7019,2013-11-10 16:54:36 -0800,907,2750 -4038,8480,2013-11-12 23:14:23 -0800,908,2753 -4039,1595,2013-11-09 10:12:30 -0800,908,2757 -4040,448,2013-11-11 21:56:01 -0800,908,2755 -4041,6634,2013-11-07 14:02:58 -0800,908,2756 -4042,2241,2013-11-09 02:42:53 -0800,908,2755 -4043,3960,2013-11-10 08:22:20 -0800,909,2760 -4044,4411,2013-11-06 14:02:03 -0800,909,2759 -4045,2250,2013-11-06 22:14:44 -0800,910,2764 -4046,9247,2013-11-11 08:13:18 -0800,910,2763 -4047,7870,2013-11-08 05:42:18 -0800,910,2763 -4048,6461,2013-11-10 03:22:15 -0800,910,2763 -4049,7513,2013-11-10 02:42:22 -0800,911,2768 -4050,1271,2013-11-06 14:49:20 -0800,911,2768 -4051,8119,2013-11-11 16:16:39 -0800,911,2767 -4052,6000,2013-11-10 21:35:48 -0800,912,2769 -4053,8730,2013-11-09 22:47:52 -0800,912,2771 -4054,8981,2013-11-12 02:49:45 -0800,913,2772 -4055,6742,2013-11-12 04:19:23 -0800,913,2773 -4056,4870,2013-11-06 09:39:33 -0800,913,2773 -4057,747,2013-11-12 10:15:18 -0800,913,2773 -4058,833,2013-11-07 17:02:29 -0800,913,2773 -4059,1590,2013-11-12 06:55:58 -0800,913,2773 -4060,5317,2013-11-06 15:13:50 -0800,913,2773 -4061,5985,2013-11-07 09:33:31 -0800,913,2772 -4062,9650,2013-11-12 12:30:47 -0800,914,2776 -4063,2041,2013-11-11 03:30:07 -0800,914,2776 -4064,6429,2013-11-10 18:33:21 -0800,914,2776 -4065,4625,2013-11-08 06:49:44 -0800,914,2776 -4066,6248,2013-11-11 16:04:07 -0800,914,2776 -4067,7616,2013-11-11 14:43:01 -0800,914,2776 -4068,9620,2013-11-10 02:46:57 -0800,914,2776 -4069,2575,2013-11-09 00:42:28 -0800,915,2782 -4070,7878,2013-11-13 01:23:18 -0800,915,2781 -4071,4512,2013-11-07 20:56:50 -0800,915,2779 -4072,461,2013-11-09 14:25:47 -0800,916,2785 -4073,9536,2013-11-11 16:16:44 -0800,916,2788 -4074,7679,2013-11-08 06:08:03 -0800,916,2784 -4075,7666,2013-11-08 08:35:26 -0800,916,2785 -4076,7915,2013-11-10 11:53:33 -0800,916,2787 -4077,9633,2013-11-11 13:52:34 -0800,916,2787 -4078,7458,2013-11-09 02:31:12 -0800,917,2789 -4079,5082,2013-11-09 00:20:15 -0800,917,2790 -4080,629,2013-11-08 06:51:57 -0800,917,2790 -4081,7944,2013-11-12 03:46:57 -0800,918,2792 -4082,6064,2013-11-12 02:26:15 -0800,919,2798 -4083,2742,2013-11-09 04:00:12 -0800,919,2797 -4084,5619,2013-11-06 13:52:11 -0800,919,2796 -4085,8869,2013-11-07 20:38:42 -0800,920,2799 -4086,7218,2013-11-07 07:51:10 -0800,920,2799 -4087,3561,2013-11-10 04:45:49 -0800,920,2799 -4088,8622,2013-11-08 08:53:56 -0800,920,2799 -4089,4061,2013-11-06 20:29:10 -0800,922,2809 -4090,5719,2013-11-12 09:13:44 -0800,922,2809 -4091,4845,2013-11-07 05:53:33 -0800,922,2805 -4092,5159,2013-11-08 10:30:56 -0800,922,2805 -4093,1916,2013-11-09 04:25:58 -0800,923,2810 -4094,8423,2013-11-07 08:06:00 -0800,923,2810 -4095,3913,2013-11-07 08:14:23 -0800,923,2810 -4096,129,2013-11-09 23:52:21 -0800,923,2810 -4097,7769,2013-11-10 13:38:41 -0800,923,2811 -4098,3468,2013-11-06 14:15:49 -0800,923,2810 -4099,6184,2013-11-11 08:20:51 -0800,923,2810 -4100,6570,2013-11-12 15:57:30 -0800,926,2819 -4101,4839,2013-11-11 07:44:16 -0800,926,2821 -4102,7578,2013-11-08 10:56:11 -0800,926,2820 -4103,7352,2013-11-11 10:22:35 -0800,926,2819 -4104,2280,2013-11-07 06:50:17 -0800,926,2821 -4105,6296,2013-11-12 21:11:52 -0800,926,2821 -4106,4700,2013-11-13 06:57:57 -0800,926,2821 -4107,2528,2013-11-06 15:32:28 -0800,926,2822 -4108,8931,2013-11-12 11:50:12 -0800,927,2827 -4109,1779,2013-11-11 03:24:19 -0800,927,2827 -4110,193,2013-11-11 12:04:59 -0800,928,2828 -4111,1051,2013-11-13 04:14:56 -0800,928,2828 -4112,6762,2013-11-13 04:33:21 -0800,928,2828 -4113,1798,2013-11-08 22:46:41 -0800,928,2828 -4114,5542,2013-11-09 09:38:29 -0800,928,2828 -4115,3511,2013-11-09 08:10:42 -0800,928,2828 -4116,2927,2013-11-08 17:23:29 -0800,928,2828 -4117,5482,2013-11-07 21:33:37 -0800,928,2828 -4118,8164,2013-11-08 03:16:46 -0800,928,2828 -4119,9766,2013-11-06 08:51:15 -0800,929,2829 -4120,2949,2013-11-13 00:05:31 -0800,929,2829 -4121,8126,2013-11-06 22:00:56 -0800,929,2829 -4122,1051,2013-11-13 07:12:25 -0800,929,2829 -4123,7245,2013-11-11 11:47:47 -0800,929,2829 -4124,463,2013-11-06 19:15:57 -0800,930,2830 -4125,5939,2013-11-09 04:45:33 -0800,930,2830 -4126,7683,2013-11-07 05:00:55 -0800,930,2831 -4127,951,2013-11-09 01:17:27 -0800,930,2832 -4128,1269,2013-11-06 12:01:44 -0800,930,2832 -4129,7031,2013-11-10 02:39:53 -0800,930,2832 -4130,6279,2013-11-10 10:26:06 -0800,930,2831 -4131,9585,2013-11-10 23:17:33 -0800,932,2837 -4132,6387,2013-11-09 09:04:48 -0800,933,2839 -4133,5377,2013-11-12 10:33:18 -0800,933,2840 -4134,7356,2013-11-10 22:36:01 -0800,933,2839 -4135,2178,2013-11-10 14:57:28 -0800,933,2839 -4136,4378,2013-11-07 11:42:26 -0800,934,2841 -4137,1927,2013-11-10 00:56:34 -0800,934,2842 -4138,6970,2013-11-10 16:58:42 -0800,934,2842 -4139,1564,2013-11-08 11:24:16 -0800,934,2841 -4140,9480,2013-11-09 14:49:38 -0800,934,2842 -4141,1271,2013-11-06 13:08:18 -0800,934,2842 -4142,6450,2013-11-08 20:22:28 -0800,934,2843 -4143,5817,2013-11-08 12:16:04 -0800,935,2844 -4144,164,2013-11-08 19:52:43 -0800,935,2844 -4145,1441,2013-11-11 08:07:42 -0800,935,2844 -4146,4791,2013-11-08 19:58:09 -0800,935,2844 -4147,1233,2013-11-12 06:16:46 -0800,935,2844 -4148,9020,2013-11-10 02:39:53 -0800,935,2844 -4149,3582,2013-11-07 10:36:11 -0800,935,2844 -4150,7759,2013-11-07 11:43:28 -0800,936,2847 -4151,5133,2013-11-12 10:36:57 -0800,937,2849 -4152,2695,2013-11-11 21:17:14 -0800,937,2849 -4153,3390,2013-11-11 14:17:34 -0800,937,2850 -4154,3777,2013-11-07 05:42:49 -0800,937,2850 -4155,5189,2013-11-07 03:19:45 -0800,937,2850 -4156,6712,2013-11-10 12:44:03 -0800,938,2852 -4157,2948,2013-11-06 09:06:37 -0800,940,2858 -4158,9438,2013-11-09 09:34:23 -0800,940,2855 -4159,2747,2013-11-10 00:10:29 -0800,940,2857 -4160,5829,2013-11-10 19:30:04 -0800,941,2861 -4161,9000,2013-11-08 19:11:20 -0800,941,2861 -4162,8770,2013-11-06 16:02:52 -0800,941,2859 -4163,5365,2013-11-06 22:31:05 -0800,943,2867 -4164,2888,2013-11-12 17:39:37 -0800,943,2866 -4165,9289,2013-11-09 11:18:21 -0800,943,2866 -4166,7368,2013-11-08 17:52:48 -0800,943,2868 -4167,9617,2013-11-10 08:25:55 -0800,943,2866 -4168,9083,2013-11-12 13:17:56 -0800,943,2868 -4169,3569,2013-11-08 06:00:57 -0800,943,2868 -4170,1448,2013-11-06 22:19:27 -0800,944,2869 -4171,660,2013-11-11 14:34:32 -0800,944,2869 -4172,9227,2013-11-08 19:13:57 -0800,945,2871 -4173,3821,2013-11-07 07:20:33 -0800,945,2871 -4174,622,2013-11-06 10:57:55 -0800,945,2871 -4175,1199,2013-11-10 18:18:44 -0800,945,2872 -4176,9690,2013-11-08 13:32:37 -0800,945,2871 -4177,718,2013-11-12 19:55:01 -0800,945,2871 -4178,3714,2013-11-07 18:41:07 -0800,945,2872 -4179,8653,2013-11-11 14:05:09 -0800,947,2878 -4180,5567,2013-11-08 03:00:42 -0800,947,2877 -4181,5829,2013-11-12 13:54:09 -0800,947,2878 -4182,2166,2013-11-09 19:48:01 -0800,949,2884 -4183,3835,2013-11-09 05:54:30 -0800,949,2884 -4184,6055,2013-11-11 16:59:18 -0800,949,2884 -4185,7520,2013-11-09 18:11:19 -0800,949,2884 -4186,5931,2013-11-10 11:32:44 -0800,949,2884 -4187,5360,2013-11-11 07:38:59 -0800,949,2884 -4188,8243,2013-11-06 13:08:02 -0800,950,2886 -4189,3013,2013-11-12 06:09:19 -0800,950,2885 -4190,4999,2013-11-08 04:59:55 -0800,950,2886 -4191,4325,2013-11-09 00:35:25 -0800,950,2885 -4192,6151,2013-11-11 14:46:22 -0800,950,2886 -4193,2321,2013-11-10 00:21:32 -0800,951,2890 -4194,3763,2013-11-08 16:11:07 -0800,951,2887 -4195,9351,2013-11-12 09:15:17 -0800,951,2887 -4196,1853,2013-11-08 17:27:22 -0800,952,2891 -4197,2749,2013-11-09 18:02:21 -0800,952,2891 -4198,550,2013-11-11 18:54:29 -0800,952,2891 -4199,8862,2013-11-11 00:19:49 -0800,952,2891 -4200,9276,2013-11-11 00:26:27 -0800,954,2895 -4201,7981,2013-11-11 15:07:21 -0800,954,2895 -4202,1129,2013-11-06 16:53:59 -0800,954,2895 -4203,9622,2013-11-12 00:57:46 -0800,954,2895 -4204,6213,2013-11-06 17:19:52 -0800,954,2895 -4205,8418,2013-11-07 10:02:13 -0800,955,2899 -4206,3245,2013-11-11 16:11:54 -0800,955,2899 -4207,3776,2013-11-06 10:11:35 -0800,955,2897 -4208,7997,2013-11-10 01:50:36 -0800,955,2899 -4209,4353,2013-11-09 14:28:32 -0800,955,2897 -4210,1353,2013-11-13 04:35:26 -0800,955,2897 -4211,9588,2013-11-10 10:43:46 -0800,955,2896 -4212,3894,2013-11-10 16:10:38 -0800,955,2898 -4213,2366,2013-11-12 23:18:22 -0800,955,2897 -4214,2239,2013-11-08 06:02:59 -0800,956,2901 -4215,6864,2013-11-10 16:32:27 -0800,956,2901 -4216,316,2013-11-07 22:04:59 -0800,957,2903 -4217,3618,2013-11-07 23:57:09 -0800,957,2904 -4218,4755,2013-11-10 02:18:19 -0800,957,2903 -4219,6498,2013-11-13 01:25:51 -0800,958,2905 -4220,3529,2013-11-08 00:19:32 -0800,959,2906 -4221,3474,2013-11-08 21:57:55 -0800,960,2912 -4222,4862,2013-11-10 08:05:44 -0800,960,2909 -4223,8886,2013-11-10 23:04:49 -0800,960,2909 -4224,2817,2013-11-06 09:44:00 -0800,960,2909 -4225,5380,2013-11-08 11:13:07 -0800,960,2910 -4226,3010,2013-11-09 19:45:45 -0800,960,2910 -4227,852,2013-11-13 04:19:32 -0800,961,2914 -4228,2120,2013-11-10 16:42:28 -0800,961,2913 -4229,8199,2013-11-06 09:17:32 -0800,961,2913 -4230,1757,2013-11-11 05:59:32 -0800,961,2914 -4231,1097,2013-11-11 15:17:41 -0800,961,2914 -4232,8528,2013-11-07 05:37:12 -0800,962,2915 -4233,1340,2013-11-08 00:04:23 -0800,962,2915 -4234,8288,2013-11-07 13:47:39 -0800,962,2915 -4235,6488,2013-11-12 09:50:22 -0800,962,2915 -4236,4019,2013-11-06 18:38:54 -0800,962,2915 -4237,5786,2013-11-09 12:39:54 -0800,962,2915 -4238,6062,2013-11-07 19:32:08 -0800,962,2916 -4239,140,2013-11-11 14:09:41 -0800,962,2915 -4240,573,2013-11-07 10:11:45 -0800,962,2915 -4241,6013,2013-11-13 00:44:36 -0800,963,2919 -4242,798,2013-11-07 09:36:25 -0800,963,2917 -4243,9418,2013-11-11 20:58:05 -0800,963,2919 -4244,6098,2013-11-07 20:25:14 -0800,963,2919 -4245,6865,2013-11-09 20:25:10 -0800,963,2919 -4246,7281,2013-11-11 09:53:53 -0800,963,2919 -4247,4941,2013-11-11 23:07:40 -0800,963,2919 -4248,1410,2013-11-12 07:56:41 -0800,964,2923 -4249,2152,2013-11-11 04:03:06 -0800,964,2920 -4250,9771,2013-11-11 19:40:36 -0800,964,2923 -4251,3052,2013-11-08 09:50:07 -0800,964,2920 -4252,3734,2013-11-08 21:20:25 -0800,964,2921 -4253,2980,2013-11-09 12:18:59 -0800,964,2922 -4254,217,2013-11-07 06:21:10 -0800,964,2921 -4255,985,2013-11-10 23:08:18 -0800,964,2923 -4256,9054,2013-11-07 16:38:27 -0800,964,2922 -4257,1533,2013-11-10 02:57:18 -0800,965,2927 -4258,3528,2013-11-07 05:25:12 -0800,965,2927 -4259,7248,2013-11-11 04:41:04 -0800,965,2924 -4260,5551,2013-11-08 01:05:33 -0800,965,2926 -4261,6423,2013-11-08 00:20:50 -0800,965,2927 -4262,3138,2013-11-10 05:59:08 -0800,965,2924 -4263,540,2013-11-07 23:49:24 -0800,965,2925 -4264,9538,2013-11-07 14:31:16 -0800,966,2930 -4265,8344,2013-11-09 08:49:32 -0800,966,2930 -4266,3540,2013-11-10 19:57:35 -0800,966,2930 -4267,413,2013-11-08 00:44:18 -0800,966,2929 -4268,1420,2013-11-09 02:39:28 -0800,966,2930 -4269,7392,2013-11-06 09:39:56 -0800,966,2928 -4270,9093,2013-11-07 19:41:16 -0800,966,2930 -4271,8928,2013-11-11 06:20:45 -0800,967,2934 -4272,1030,2013-11-13 00:29:31 -0800,967,2934 -4273,940,2013-11-11 18:59:17 -0800,967,2933 -4274,8440,2013-11-07 15:42:19 -0800,967,2933 -4275,83,2013-11-09 03:28:33 -0800,967,2932 -4276,3749,2013-11-11 04:33:44 -0800,968,2935 -4277,2183,2013-11-10 14:17:49 -0800,968,2936 -4278,627,2013-11-12 16:53:19 -0800,968,2936 -4279,1959,2013-11-10 09:39:49 -0800,968,2936 -4280,5265,2013-11-10 12:08:02 -0800,968,2935 -4281,3081,2013-11-10 20:59:40 -0800,968,2936 -4282,7986,2013-11-13 04:53:37 -0800,968,2936 -4283,2611,2013-11-11 21:21:01 -0800,968,2936 -4284,6462,2013-11-10 01:33:22 -0800,969,2937 -4285,3310,2013-11-10 03:53:05 -0800,969,2938 -4286,6172,2013-11-12 18:42:07 -0800,970,2940 -4287,1136,2013-11-10 18:16:33 -0800,970,2939 -4288,1141,2013-11-06 22:30:40 -0800,970,2939 -4289,632,2013-11-10 07:21:51 -0800,971,2943 -4290,9787,2013-11-06 15:30:22 -0800,971,2943 -4291,8040,2013-11-08 20:08:08 -0800,971,2942 -4292,3447,2013-11-06 22:00:56 -0800,971,2942 -4293,6623,2013-11-11 21:38:51 -0800,971,2946 -4294,7022,2013-11-11 13:33:51 -0800,971,2946 -4295,2984,2013-11-11 03:19:30 -0800,971,2942 -4296,8914,2013-11-10 23:36:26 -0800,972,2947 -4297,7428,2013-11-12 06:55:22 -0800,972,2947 -4298,3251,2013-11-10 14:43:10 -0800,972,2947 -4299,3757,2013-11-13 01:40:53 -0800,972,2947 -4300,8880,2013-11-06 09:02:22 -0800,972,2947 -4301,810,2013-11-11 08:15:04 -0800,972,2947 -4302,4764,2013-11-08 09:14:19 -0800,972,2947 -4303,2682,2013-11-08 20:24:35 -0800,972,2947 -4304,2918,2013-11-11 05:02:10 -0800,972,2947 -4305,4027,2013-11-08 09:57:22 -0800,973,2950 -4306,8717,2013-11-06 22:39:56 -0800,973,2948 -4307,5543,2013-11-09 13:22:58 -0800,973,2950 -4308,919,2013-11-09 05:22:44 -0800,973,2948 -4309,2757,2013-11-11 21:46:22 -0800,975,2958 -4310,2381,2013-11-10 11:06:27 -0800,975,2959 -4311,7851,2013-11-11 18:30:23 -0800,975,2959 -4312,1150,2013-11-09 09:21:27 -0800,976,2960 -4313,370,2013-11-07 06:44:16 -0800,976,2961 -4314,4525,2013-11-08 23:47:39 -0800,976,2961 -4315,9486,2013-11-10 14:55:50 -0800,976,2961 -4316,654,2013-11-08 04:09:50 -0800,977,2964 -4317,7220,2013-11-09 07:24:53 -0800,977,2964 -4318,9561,2013-11-09 08:11:10 -0800,978,2970 -4319,9743,2013-11-09 13:14:06 -0800,978,2969 -4320,4977,2013-11-06 14:39:11 -0800,979,2972 -4321,1327,2013-11-10 14:40:22 -0800,979,2971 -4322,4870,2013-11-09 14:00:23 -0800,979,2973 -4323,6568,2013-11-10 02:08:24 -0800,979,2974 -4324,8880,2013-11-10 07:00:43 -0800,980,2977 -4325,4011,2013-11-09 18:32:01 -0800,980,2976 -4326,178,2013-11-07 03:31:27 -0800,980,2976 -4327,5929,2013-11-09 07:46:21 -0800,980,2977 -4328,2210,2013-11-12 07:37:18 -0800,980,2977 -4329,9190,2013-11-11 20:05:32 -0800,980,2976 -4330,2590,2013-11-11 21:01:37 -0800,980,2976 -4331,1460,2013-11-12 17:05:07 -0800,980,2976 -4332,5786,2013-11-12 13:20:51 -0800,980,2976 -4333,932,2013-11-10 19:15:01 -0800,981,2978 -4334,140,2013-11-06 14:00:06 -0800,981,2978 -4335,7598,2013-11-09 22:20:47 -0800,981,2978 -4336,1211,2013-11-11 11:13:37 -0800,981,2980 -4337,948,2013-11-11 04:04:27 -0800,981,2978 -4338,9670,2013-11-07 19:40:23 -0800,983,2985 -4339,2964,2013-11-07 02:31:27 -0800,983,2983 -4340,2310,2013-11-07 11:09:03 -0800,983,2982 -4341,1399,2013-11-12 06:25:35 -0800,983,2982 -4342,4951,2013-11-12 20:37:54 -0800,983,2984 -4343,5077,2013-11-12 23:00:57 -0800,983,2983 -4344,3924,2013-11-09 05:26:16 -0800,983,2985 -4345,1710,2013-11-09 17:58:42 -0800,983,2982 -4346,4755,2013-11-11 18:09:14 -0800,983,2984 -4347,6940,2013-11-12 09:51:51 -0800,984,2988 -4348,4069,2013-11-07 21:45:10 -0800,984,2990 -4349,2334,2013-11-06 21:36:18 -0800,984,2987 -4350,9100,2013-11-13 02:46:31 -0800,985,2992 -4351,5762,2013-11-08 09:40:31 -0800,985,2991 -4352,9896,2013-11-10 10:31:01 -0800,986,2994 -4353,2026,2013-11-07 05:54:34 -0800,986,2993 -4354,8785,2013-11-12 13:34:00 -0800,986,2994 -4355,4780,2013-11-12 16:26:52 -0800,986,2993 -4356,4526,2013-11-07 10:15:22 -0800,987,2997 -4357,5813,2013-11-11 08:02:40 -0800,987,2996 -4358,6409,2013-11-08 00:45:04 -0800,987,2996 -4359,363,2013-11-13 00:32:33 -0800,987,2996 -4360,8390,2013-11-07 05:29:12 -0800,987,2998 -4361,56,2013-11-08 10:31:43 -0800,987,2996 -4362,192,2013-11-09 21:08:03 -0800,987,2998 -4363,8370,2013-11-06 11:25:30 -0800,987,2998 -4364,2972,2013-11-10 05:22:46 -0800,987,2997 -4365,7129,2013-11-12 20:31:40 -0800,988,3001 -4366,1587,2013-11-07 15:42:24 -0800,988,3001 -4367,5320,2013-11-13 08:30:36 -0800,988,3001 -4368,9111,2013-11-07 08:13:03 -0800,988,3001 -4369,655,2013-11-07 01:50:52 -0800,988,3000 -4370,7484,2013-11-07 10:12:09 -0800,990,3009 -4371,775,2013-11-06 19:52:07 -0800,990,3008 -4372,5131,2013-11-08 20:57:26 -0800,990,3008 -4373,6277,2013-11-10 05:40:43 -0800,990,3007 -4374,6668,2013-11-09 06:55:27 -0800,990,3009 -4375,3584,2013-11-10 02:32:47 -0800,990,3007 -4376,3968,2013-11-13 00:54:47 -0800,991,3013 -4377,278,2013-11-08 05:48:24 -0800,991,3014 -4378,8116,2013-11-10 02:12:19 -0800,993,3019 -4379,8866,2013-11-12 22:42:56 -0800,993,3022 -4380,1880,2013-11-07 11:48:47 -0800,993,3019 -4381,7253,2013-11-12 18:05:11 -0800,993,3020 -4382,9881,2013-11-10 14:23:07 -0800,993,3022 -4383,4164,2013-11-10 08:26:06 -0800,993,3019 -4384,5566,2013-11-08 14:24:43 -0800,993,3019 -4385,7675,2013-11-06 12:18:00 -0800,993,3020 -4386,6380,2013-11-11 23:08:33 -0800,994,3026 -4387,8420,2013-11-11 08:08:31 -0800,994,3025 -4388,2580,2013-11-11 19:51:33 -0800,994,3023 -4389,7119,2013-11-12 00:04:14 -0800,994,3024 -4390,6269,2013-11-09 11:18:42 -0800,994,3026 -4391,630,2013-11-08 12:39:19 -0800,995,3028 -4392,8458,2013-11-06 11:48:39 -0800,995,3028 -4393,2714,2013-11-12 17:24:42 -0800,995,3029 -4394,3979,2013-11-07 10:52:40 -0800,995,3028 -4395,8624,2013-11-11 20:45:29 -0800,996,3031 -4396,9734,2013-11-07 16:22:41 -0800,996,3032 -4397,9436,2013-11-07 01:19:41 -0800,996,3031 -4398,956,2013-11-12 08:01:12 -0800,996,3032 -4399,3919,2013-11-12 05:41:48 -0800,997,3033 -4400,9328,2013-11-08 12:11:16 -0800,997,3033 -4401,772,2013-11-06 13:23:53 -0800,997,3033 -4402,5153,2013-11-10 00:35:36 -0800,997,3033 -4403,8269,2013-11-08 02:49:44 -0800,997,3035 -4404,9640,2013-11-12 06:57:34 -0800,998,3042 -4405,6988,2013-11-10 05:07:54 -0800,998,3041 -4406,2934,2013-11-13 01:51:10 -0800,998,3042 -4407,3579,2013-11-08 21:32:12 -0800,998,3042 -4408,7342,2013-11-08 19:47:12 -0800,998,3041 -4409,7856,2013-11-09 13:25:35 -0800,998,3038 -4410,3993,2013-11-06 20:52:26 -0800,998,3040 -4411,4054,2013-11-08 08:06:04 -0800,998,3042 -4412,3532,2013-11-06 11:13:20 -0800,998,3042 -4413,1880,2013-11-07 10:18:11 -0800,999,3044 -4414,5023,2013-11-11 02:00:04 -0800,999,3046 -4415,1230,2013-11-07 07:10:29 -0800,999,3045 -4416,4298,2013-11-08 20:44:08 -0800,999,3044 -4417,2965,2013-11-12 04:51:01 -0800,999,3045 -4418,6609,2013-11-11 13:03:18 -0800,999,3045 -4419,353,2013-11-08 05:04:22 -0800,999,3046 -4420,3840,2013-11-12 11:36:43 -0800,1001,3050 -4421,6242,2013-11-09 14:56:59 -0800,1001,3051 -4422,6182,2013-11-10 11:29:35 -0800,1001,3050 -4423,254,2013-11-11 12:23:00 -0800,1001,3051 -4424,148,2013-11-11 23:03:18 -0800,1001,3049 -4425,5915,2013-11-08 07:16:47 -0800,1001,3050 -4426,3795,2013-11-07 07:08:13 -0800,1001,3051 -4427,2398,2013-11-10 15:47:36 -0800,1002,3052 -4428,8753,2013-11-07 23:52:10 -0800,1002,3052 -4429,7439,2013-11-10 01:45:29 -0800,1002,3053 -4430,2480,2013-11-06 17:00:31 -0800,1002,3052 -4431,3654,2013-11-07 14:54:31 -0800,1003,3055 -4432,4646,2013-11-09 03:12:54 -0800,1003,3055 -4433,5489,2013-11-11 22:04:07 -0800,1003,3055 -4434,32,2013-11-12 23:14:53 -0800,1003,3055 -4435,8212,2013-11-07 20:15:53 -0800,1003,3055 -4436,2921,2013-11-07 12:00:35 -0800,1004,3057 -4437,7429,2013-11-10 02:28:14 -0800,1004,3057 -4438,3364,2013-11-09 14:36:35 -0800,1005,3060 -4439,6679,2013-11-07 18:20:49 -0800,1005,3060 -4440,7778,2013-11-12 22:17:47 -0800,1005,3060 -4441,3265,2013-11-11 04:08:45 -0800,1005,3059 -4442,9121,2013-11-11 00:44:27 -0800,1005,3060 -4443,8332,2013-11-13 05:59:00 -0800,1005,3059 -4444,7914,2013-11-11 10:27:46 -0800,1005,3060 -4445,4282,2013-11-08 18:00:24 -0800,1005,3060 -4446,1941,2013-11-08 11:14:05 -0800,1005,3059 -4447,3383,2013-11-11 07:39:16 -0800,1007,3065 -4448,8550,2013-11-10 21:48:13 -0800,1007,3064 -4449,7320,2013-11-13 00:21:08 -0800,1007,3065 -4450,9231,2013-11-06 21:45:01 -0800,1008,3066 -4451,2850,2013-11-12 16:03:18 -0800,1008,3066 -4452,4125,2013-11-06 13:46:38 -0800,1008,3066 -4453,1246,2013-11-09 00:21:48 -0800,1008,3067 -4454,6979,2013-11-11 17:09:07 -0800,1009,3068 -4455,9046,2013-11-08 01:51:26 -0800,1009,3069 -4456,9660,2013-11-07 21:17:24 -0800,1009,3069 -4457,3030,2013-11-11 22:58:59 -0800,1009,3070 -4458,8468,2013-11-11 01:41:21 -0800,1010,3071 -4459,6454,2013-11-11 18:19:59 -0800,1010,3074 -4460,1635,2013-11-08 00:37:02 -0800,1010,3072 -4461,530,2013-11-09 20:46:05 -0800,1010,3071 -4462,3070,2013-11-12 08:19:46 -0800,1010,3073 -4463,7520,2013-11-12 19:43:37 -0800,1010,3072 -4464,6096,2013-11-10 16:25:56 -0800,1010,3072 -4465,2598,2013-11-08 01:20:28 -0800,1011,3079 -4466,1568,2013-11-12 14:38:33 -0800,1011,3077 -4467,184,2013-11-06 23:13:20 -0800,1011,3077 -4468,7076,2013-11-07 23:45:58 -0800,1012,3080 -4469,9129,2013-11-10 08:44:13 -0800,1012,3081 -4470,6643,2013-11-10 13:25:31 -0800,1013,3086 -4471,6981,2013-11-09 13:52:35 -0800,1013,3087 -4472,9117,2013-11-07 04:16:27 -0800,1013,3088 -4473,8881,2013-11-07 09:21:25 -0800,1013,3087 -4474,1016,2013-11-09 16:29:09 -0800,1013,3088 -4475,8558,2013-11-07 02:53:36 -0800,1013,3087 -4476,3127,2013-11-09 17:46:15 -0800,1013,3088 -4477,6877,2013-11-08 09:16:13 -0800,1014,3089 -4478,2066,2013-11-08 21:00:10 -0800,1014,3089 -4479,6877,2013-11-08 04:40:34 -0800,1014,3089 -4480,1884,2013-11-10 08:51:27 -0800,1014,3090 -4481,5389,2013-11-08 16:30:44 -0800,1015,3094 -4482,9314,2013-11-06 15:31:51 -0800,1015,3091 -4483,664,2013-11-11 07:49:17 -0800,1015,3095 -4484,6322,2013-11-11 22:10:01 -0800,1015,3094 -4485,737,2013-11-09 07:06:53 -0800,1016,3096 -4486,9814,2013-11-06 23:21:30 -0800,1016,3096 -4487,4330,2013-11-11 00:17:52 -0800,1016,3096 -4488,1098,2013-11-06 14:58:34 -0800,1016,3096 -4489,5243,2013-11-11 11:30:16 -0800,1016,3096 -4490,1914,2013-11-08 07:31:09 -0800,1016,3096 -4491,8528,2013-11-08 12:02:40 -0800,1016,3096 -4492,9316,2013-11-07 00:22:34 -0800,1016,3096 -4493,5172,2013-11-07 05:41:15 -0800,1017,3097 -4494,3338,2013-11-06 15:54:21 -0800,1017,3097 -4495,6841,2013-11-06 13:18:01 -0800,1017,3097 -4496,7791,2013-11-10 20:21:08 -0800,1017,3097 -4497,2982,2013-11-09 16:49:35 -0800,1018,3098 -4498,5471,2013-11-11 01:49:33 -0800,1018,3098 -4499,4319,2013-11-09 22:40:46 -0800,1018,3098 -4500,2367,2013-11-06 23:06:08 -0800,1018,3098 -4501,9027,2013-11-12 21:15:41 -0800,1018,3098 -4502,3143,2013-11-09 04:53:28 -0800,1019,3100 -4503,8711,2013-11-08 02:58:55 -0800,1019,3100 -4504,6116,2013-11-12 19:19:24 -0800,1020,3104 -4505,1729,2013-11-07 01:09:32 -0800,1020,3105 -4506,6573,2013-11-08 01:34:11 -0800,1020,3104 -4507,7473,2013-11-06 15:46:51 -0800,1020,3105 -4508,4525,2013-11-12 08:35:04 -0800,1020,3107 -4509,77,2013-11-11 14:33:54 -0800,1021,3108 -4510,1220,2013-11-10 15:53:57 -0800,1021,3108 -4511,958,2013-11-12 03:32:59 -0800,1021,3108 -4512,3269,2013-11-06 18:40:15 -0800,1021,3108 -4513,2465,2013-11-06 14:50:38 -0800,1021,3108 -4514,8020,2013-11-09 11:35:06 -0800,1022,3110 -4515,2096,2013-11-08 12:47:11 -0800,1022,3110 -4516,3913,2013-11-06 19:59:16 -0800,1022,3109 -4517,6200,2013-11-09 16:16:08 -0800,1022,3109 -4518,4430,2013-11-10 14:31:45 -0800,1022,3110 -4519,2762,2013-11-09 15:16:54 -0800,1022,3110 -4520,4561,2013-11-09 18:10:43 -0800,1022,3110 -4521,5031,2013-11-11 23:30:03 -0800,1022,3109 -4522,9456,2013-11-13 00:59:36 -0800,1022,3109 -4523,8945,2013-11-12 09:12:12 -0800,1024,3115 -4524,5970,2013-11-10 22:36:05 -0800,1024,3117 -4525,3279,2013-11-11 11:32:13 -0800,1024,3117 -4526,85,2013-11-12 00:05:47 -0800,1024,3115 -4527,1655,2013-11-07 21:41:46 -0800,1024,3116 -4528,5565,2013-11-10 20:06:11 -0800,1024,3116 -4529,4959,2013-11-09 18:15:59 -0800,1024,3114 -4530,9566,2013-11-09 22:18:36 -0800,1025,3120 -4531,9045,2013-11-11 19:41:06 -0800,1025,3122 -4532,24,2013-11-13 01:15:33 -0800,1025,3121 -4533,3614,2013-11-08 13:06:02 -0800,1025,3119 -4534,4936,2013-11-10 09:44:07 -0800,1025,3121 -4535,9640,2013-11-10 17:52:18 -0800,1025,3120 -4536,636,2013-11-10 13:06:35 -0800,1025,3121 -4537,9387,2013-11-07 12:20:18 -0800,1025,3118 -4538,7643,2013-11-09 01:37:49 -0800,1026,3124 -4539,2869,2013-11-08 01:42:06 -0800,1027,3128 -4540,7355,2013-11-07 10:27:48 -0800,1027,3129 -4541,1016,2013-11-08 02:47:05 -0800,1027,3127 -4542,1552,2013-11-06 17:08:30 -0800,1027,3127 -4543,7340,2013-11-11 16:31:50 -0800,1027,3128 -4544,8292,2013-11-08 19:28:05 -0800,1027,3128 -4545,873,2013-11-09 22:16:25 -0800,1027,3129 -4546,694,2013-11-09 23:16:29 -0800,1028,3130 -4547,6988,2013-11-10 08:27:29 -0800,1028,3130 -4548,9886,2013-11-12 20:29:24 -0800,1029,3133 -4549,9680,2013-11-12 22:34:13 -0800,1029,3134 -4550,3567,2013-11-10 06:41:28 -0800,1029,3133 -4551,2882,2013-11-10 08:14:35 -0800,1029,3134 -4552,2895,2013-11-11 13:19:05 -0800,1029,3133 -4553,6826,2013-11-08 19:28:18 -0800,1029,3134 -4554,1439,2013-11-10 05:49:45 -0800,1030,3138 -4555,5894,2013-11-07 08:17:34 -0800,1030,3137 -4556,8573,2013-11-07 12:29:46 -0800,1030,3137 -4557,3336,2013-11-09 19:18:29 -0800,1030,3136 -4558,6196,2013-11-12 15:58:40 -0800,1030,3137 -4559,3813,2013-11-08 11:55:28 -0800,1030,3139 -4560,7920,2013-11-11 11:45:16 -0800,1030,3136 -4561,1946,2013-11-09 16:35:08 -0800,1030,3137 -4562,2913,2013-11-11 08:26:45 -0800,1030,3136 -4563,4020,2013-11-06 22:29:28 -0800,1031,3140 -4564,2929,2013-11-07 18:02:00 -0800,1031,3140 -4565,8833,2013-11-07 10:18:07 -0800,1032,3142 -4566,9442,2013-11-09 10:23:06 -0800,1032,3142 -4567,1064,2013-11-12 07:44:13 -0800,1033,3144 -4568,3458,2013-11-10 06:58:34 -0800,1033,3144 -4569,8490,2013-11-11 00:56:20 -0800,1033,3145 -4570,3361,2013-11-07 03:31:08 -0800,1033,3145 -4571,3329,2013-11-08 13:21:35 -0800,1034,3146 -4572,5579,2013-11-11 19:53:24 -0800,1034,3146 -4573,1870,2013-11-11 02:17:46 -0800,1034,3146 -4574,4855,2013-11-09 21:42:58 -0800,1034,3146 -4575,6253,2013-11-07 20:26:11 -0800,1034,3146 -4576,1832,2013-11-07 05:17:39 -0800,1034,3146 -4577,6765,2013-11-09 20:06:11 -0800,1035,3147 -4578,1788,2013-11-10 07:00:45 -0800,1035,3147 -4579,6270,2013-11-08 04:49:31 -0800,1036,3149 -4580,2851,2013-11-10 00:13:58 -0800,1037,3150 -4581,6184,2013-11-08 14:34:11 -0800,1037,3150 -4582,19,2013-11-09 16:43:57 -0800,1037,3150 -4583,5693,2013-11-12 02:17:43 -0800,1037,3151 -4584,2929,2013-11-10 17:30:41 -0800,1037,3152 -4585,4058,2013-11-09 09:46:00 -0800,1037,3152 -4586,328,2013-11-12 07:44:56 -0800,1038,3156 -4587,2073,2013-11-12 22:54:14 -0800,1038,3153 -4588,80,2013-11-10 11:20:43 -0800,1038,3156 -4589,5021,2013-11-09 05:43:34 -0800,1038,3153 -4590,4380,2013-11-13 00:32:12 -0800,1039,3158 -4591,1811,2013-11-09 01:13:43 -0800,1039,3158 -4592,662,2013-11-08 22:06:39 -0800,1039,3158 -4593,8367,2013-11-09 03:22:41 -0800,1040,3160 -4594,1298,2013-11-08 15:43:09 -0800,1040,3160 -4595,3060,2013-11-12 09:22:41 -0800,1040,3160 -4596,73,2013-11-12 18:12:22 -0800,1040,3160 -4597,6025,2013-11-09 00:46:10 -0800,1040,3159 -4598,4561,2013-11-13 04:01:51 -0800,1040,3159 -4599,851,2013-11-13 00:07:57 -0800,1041,3163 -4600,1100,2013-11-11 09:37:29 -0800,1041,3161 -4601,2026,2013-11-12 15:24:45 -0800,1041,3162 -4602,1181,2013-11-11 03:35:17 -0800,1041,3161 -4603,3000,2013-11-08 10:59:07 -0800,1041,3161 -4604,250,2013-11-09 16:32:42 -0800,1041,3163 -4605,9734,2013-11-09 23:01:33 -0800,1041,3163 -4606,7513,2013-11-10 12:22:54 -0800,1042,3166 -4607,3669,2013-11-06 17:54:33 -0800,1043,3168 -4608,8912,2013-11-08 22:12:29 -0800,1043,3167 -4609,1562,2013-11-08 14:27:53 -0800,1043,3168 -4610,252,2013-11-06 20:38:47 -0800,1043,3168 -4611,4565,2013-11-13 04:24:25 -0800,1043,3167 -4612,1395,2013-11-07 00:48:20 -0800,1044,3169 -4613,3354,2013-11-13 05:16:36 -0800,1044,3169 -4614,2761,2013-11-08 12:18:12 -0800,1044,3169 -4615,2618,2013-11-13 05:42:44 -0800,1044,3169 -4616,567,2013-11-10 04:57:25 -0800,1044,3169 -4617,7995,2013-11-13 00:39:24 -0800,1044,3169 -4618,4998,2013-11-07 09:40:32 -0800,1044,3169 -4619,3254,2013-11-10 03:51:18 -0800,1045,3172 -4620,643,2013-11-11 19:32:45 -0800,1045,3171 -4621,6683,2013-11-07 08:21:50 -0800,1045,3172 -4622,8377,2013-11-09 04:13:00 -0800,1045,3170 -4623,2687,2013-11-07 15:50:46 -0800,1045,3172 -4624,4147,2013-11-08 09:38:00 -0800,1045,3172 -4625,1352,2013-11-07 17:38:21 -0800,1045,3171 -4626,8260,2013-11-12 09:40:15 -0800,1047,3177 -4627,3542,2013-11-11 03:03:56 -0800,1047,3181 -4628,2570,2013-11-07 20:44:20 -0800,1047,3177 -4629,8646,2013-11-08 17:44:56 -0800,1047,3181 -4630,3990,2013-11-10 09:01:48 -0800,1047,3179 -4631,6831,2013-11-07 22:56:53 -0800,1047,3177 -4632,2260,2013-11-10 20:17:59 -0800,1047,3177 -4633,4960,2013-11-10 09:09:05 -0800,1048,3182 -4634,4424,2013-11-07 11:10:51 -0800,1048,3182 -4635,9311,2013-11-08 22:34:19 -0800,1048,3182 -4636,1029,2013-11-13 05:15:57 -0800,1048,3182 -4637,6956,2013-11-10 04:35:33 -0800,1050,3187 -4638,276,2013-11-10 23:45:28 -0800,1050,3188 -4639,1023,2013-11-08 03:54:12 -0800,1051,3190 -4640,4014,2013-11-06 17:21:07 -0800,1051,3190 -4641,8310,2013-11-12 05:39:05 -0800,1051,3190 -4642,5931,2013-11-07 06:56:50 -0800,1051,3190 -4643,6368,2013-11-12 10:15:18 -0800,1051,3190 -4644,1660,2013-11-06 16:25:34 -0800,1051,3190 -4645,1963,2013-11-06 21:32:55 -0800,1052,3192 -4646,1823,2013-11-07 15:41:45 -0800,1052,3194 -4647,4588,2013-11-09 21:50:55 -0800,1052,3192 -4648,6558,2013-11-10 11:01:34 -0800,1052,3194 -4649,2335,2013-11-10 09:46:40 -0800,1052,3192 -4650,8429,2013-11-07 04:17:48 -0800,1052,3194 -4651,556,2013-11-11 18:45:54 -0800,1052,3191 -4652,7372,2013-11-09 21:30:34 -0800,1053,3198 -4653,245,2013-11-08 11:04:57 -0800,1053,3197 -4654,570,2013-11-09 14:12:28 -0800,1053,3199 -4655,7565,2013-11-09 11:58:24 -0800,1053,3199 -4656,4712,2013-11-07 04:19:42 -0800,1053,3199 -4657,6929,2013-11-08 07:37:13 -0800,1054,3202 -4658,6538,2013-11-10 03:51:35 -0800,1054,3202 -4659,6861,2013-11-09 10:13:06 -0800,1054,3202 -4660,2295,2013-11-08 05:37:18 -0800,1055,3205 -4661,286,2013-11-06 23:05:19 -0800,1055,3203 -4662,3740,2013-11-10 00:47:34 -0800,1056,3208 -4663,7166,2013-11-06 10:07:39 -0800,1056,3209 -4664,3369,2013-11-08 21:34:26 -0800,1056,3209 -4665,1889,2013-11-10 11:05:06 -0800,1056,3211 -4666,1900,2013-11-10 16:16:40 -0800,1056,3208 -4667,1752,2013-11-12 01:52:16 -0800,1056,3211 -4668,7230,2013-11-10 19:46:35 -0800,1056,3208 -4669,7658,2013-11-08 00:40:51 -0800,1056,3209 -4670,4748,2013-11-11 13:37:14 -0800,1056,3209 -4671,9800,2013-11-12 05:38:16 -0800,1057,3212 -4672,7283,2013-11-08 01:53:21 -0800,1057,3212 -4673,3636,2013-11-09 01:53:22 -0800,1057,3212 -4674,2344,2013-11-08 03:56:46 -0800,1057,3213 -4675,2118,2013-11-08 21:33:14 -0800,1057,3213 -4676,4585,2013-11-06 12:05:10 -0800,1057,3212 -4677,9442,2013-11-09 20:15:22 -0800,1057,3213 -4678,8178,2013-11-10 15:55:40 -0800,1057,3213 -4679,9515,2013-11-09 18:42:18 -0800,1057,3212 -4680,6294,2013-11-12 18:48:38 -0800,1058,3214 -4681,2587,2013-11-12 05:49:46 -0800,1058,3216 -4682,5925,2013-11-13 06:13:11 -0800,1058,3214 -4683,120,2013-11-07 19:57:02 -0800,1058,3215 -4684,9679,2013-11-08 08:37:30 -0800,1058,3215 -4685,7862,2013-11-08 08:55:42 -0800,1059,3219 -4686,4448,2013-11-09 07:46:31 -0800,1059,3220 -4687,5638,2013-11-10 23:05:25 -0800,1059,3219 -4688,7413,2013-11-10 16:31:00 -0800,1059,3221 -4689,2930,2013-11-08 17:24:17 -0800,1059,3220 -4690,674,2013-11-11 20:31:54 -0800,1059,3219 -4691,1334,2013-11-08 04:05:01 -0800,1059,3222 -4692,2583,2013-11-07 02:21:08 -0800,1059,3221 -4693,3795,2013-11-08 14:23:05 -0800,1059,3222 -4694,4372,2013-11-08 21:09:52 -0800,1060,3223 -4695,3983,2013-11-11 02:04:55 -0800,1061,3228 -4696,4200,2013-11-07 05:08:52 -0800,1062,3230 -4697,9169,2013-11-10 23:01:50 -0800,1062,3230 -4698,6043,2013-11-07 20:26:32 -0800,1062,3231 -4699,4880,2013-11-10 16:54:16 -0800,1063,3232 -4700,174,2013-11-10 05:16:47 -0800,1064,3235 -4701,476,2013-11-12 16:44:28 -0800,1064,3234 -4702,1696,2013-11-08 20:06:33 -0800,1064,3235 -4703,3488,2013-11-06 19:21:55 -0800,1064,3233 -4704,2500,2013-11-08 21:13:00 -0800,1064,3234 -4705,6509,2013-11-10 04:03:53 -0800,1064,3234 -4706,1925,2013-11-10 20:50:01 -0800,1064,3233 -4707,1060,2013-11-07 05:23:16 -0800,1064,3233 -4708,7377,2013-11-08 01:26:05 -0800,1065,3236 -4709,9640,2013-11-08 10:13:56 -0800,1065,3237 -4710,3946,2013-11-07 23:08:20 -0800,1065,3236 -4711,7327,2013-11-06 11:06:26 -0800,1065,3237 -4712,3013,2013-11-09 01:49:49 -0800,1066,3239 -4713,8290,2013-11-07 20:10:23 -0800,1066,3239 -4714,1422,2013-11-11 21:20:12 -0800,1067,3241 -4715,5500,2013-11-11 05:11:28 -0800,1068,3244 -4716,7438,2013-11-07 04:51:04 -0800,1069,3246 -4717,2873,2013-11-07 04:23:53 -0800,1069,3246 -4718,1670,2013-11-06 18:40:30 -0800,1069,3246 -4719,9170,2013-11-10 09:42:01 -0800,1070,3253 -4720,9036,2013-11-13 04:03:52 -0800,1070,3252 -4721,40,2013-11-09 21:56:58 -0800,1070,3250 -4722,6245,2013-11-08 09:45:51 -0800,1070,3253 -4723,3996,2013-11-07 10:42:35 -0800,1070,3250 -4724,3165,2013-11-07 01:19:18 -0800,1070,3253 -4725,843,2013-11-07 09:11:15 -0800,1070,3250 -4726,8087,2013-11-08 17:31:06 -0800,1070,3253 -4727,7098,2013-11-10 15:20:51 -0800,1071,3254 -4728,5984,2013-11-08 01:33:23 -0800,1071,3254 -4729,4384,2013-11-09 00:43:05 -0800,1073,3257 -4730,6344,2013-11-10 14:04:18 -0800,1073,3257 -4731,13,2013-11-08 20:41:06 -0800,1073,3258 -4732,4575,2013-11-09 11:43:37 -0800,1073,3258 -4733,2660,2013-11-07 00:37:45 -0800,1073,3258 -4734,2855,2013-11-08 02:38:20 -0800,1073,3257 -4735,3130,2013-11-12 09:51:46 -0800,1073,3258 -4736,7323,2013-11-07 05:15:32 -0800,1073,3258 -4737,5739,2013-11-07 06:06:50 -0800,1074,3259 -4738,5554,2013-11-12 08:32:43 -0800,1074,3259 -4739,3290,2013-11-12 09:11:44 -0800,1075,3264 -4740,8920,2013-11-09 18:07:19 -0800,1075,3264 -4741,8976,2013-11-11 14:00:37 -0800,1075,3265 -4742,1228,2013-11-06 23:00:39 -0800,1075,3264 -4743,4816,2013-11-06 15:32:14 -0800,1076,3267 -4744,3297,2013-11-07 01:51:12 -0800,1076,3267 -4745,8755,2013-11-13 02:26:08 -0800,1076,3266 -4746,176,2013-11-12 04:07:32 -0800,1076,3267 -4747,7751,2013-11-09 23:33:47 -0800,1076,3266 -4748,8727,2013-11-09 02:51:25 -0800,1076,3266 -4749,7475,2013-11-13 05:57:29 -0800,1076,3267 -4750,413,2013-11-06 11:35:29 -0800,1077,3268 -4751,8413,2013-11-07 08:00:05 -0800,1077,3268 -4752,2516,2013-11-12 09:11:04 -0800,1077,3268 -4753,4841,2013-11-09 08:44:55 -0800,1077,3268 -4754,5095,2013-11-11 08:41:20 -0800,1077,3268 -4755,4490,2013-11-07 05:51:22 -0800,1078,3269 -4756,3622,2013-11-06 13:32:41 -0800,1078,3269 -4757,8233,2013-11-09 16:37:40 -0800,1078,3269 -4758,961,2013-11-12 11:13:51 -0800,1078,3269 -4759,7698,2013-11-07 11:27:47 -0800,1079,3273 -4760,137,2013-11-09 10:16:12 -0800,1080,3276 -4761,5339,2013-11-10 17:04:30 -0800,1081,3282 -4762,819,2013-11-09 02:08:47 -0800,1081,3282 -4763,2311,2013-11-07 21:02:32 -0800,1082,3285 -4764,7095,2013-11-06 19:54:02 -0800,1082,3283 -4765,4465,2013-11-07 12:54:56 -0800,1082,3286 -4766,3321,2013-11-10 14:15:01 -0800,1082,3286 -4767,2450,2013-11-09 12:10:59 -0800,1082,3285 -4768,2088,2013-11-09 19:08:08 -0800,1082,3285 -4769,1122,2013-11-09 20:02:49 -0800,1083,3290 -4770,6809,2013-11-09 07:33:41 -0800,1083,3287 -4771,3790,2013-11-10 02:47:50 -0800,1083,3289 -4772,6149,2013-11-08 00:34:35 -0800,1083,3289 -4773,6787,2013-11-13 07:15:50 -0800,1083,3288 -4774,6654,2013-11-11 07:41:49 -0800,1083,3289 -4775,5890,2013-11-07 16:09:40 -0800,1084,3292 -4776,2126,2013-11-12 03:40:19 -0800,1084,3292 -4777,7809,2013-11-09 17:36:52 -0800,1084,3292 -4778,338,2013-11-11 20:34:04 -0800,1084,3291 -4779,1748,2013-11-11 15:43:27 -0800,1084,3291 -4780,4489,2013-11-12 13:39:47 -0800,1084,3292 -4781,3076,2013-11-08 23:11:31 -0800,1085,3295 -4782,1531,2013-11-12 11:16:10 -0800,1085,3295 -4783,2646,2013-11-07 20:23:12 -0800,1085,3293 -4784,2133,2013-11-08 17:53:50 -0800,1085,3295 -4785,2782,2013-11-11 15:01:39 -0800,1085,3293 -4786,7464,2013-11-11 17:48:20 -0800,1085,3293 -4787,6790,2013-11-09 23:08:42 -0800,1085,3293 -4788,1433,2013-11-13 01:24:09 -0800,1085,3296 -4789,7786,2013-11-11 09:43:49 -0800,1085,3296 -4790,4072,2013-11-12 19:41:56 -0800,1087,3302 -4791,5471,2013-11-09 19:15:45 -0800,1087,3302 -4792,5227,2013-11-08 14:21:18 -0800,1087,3302 -4793,8312,2013-11-11 04:29:55 -0800,1087,3302 -4794,3517,2013-11-09 17:40:35 -0800,1087,3302 -4795,1494,2013-11-06 14:58:51 -0800,1087,3302 -4796,5558,2013-11-09 06:29:56 -0800,1087,3302 -4797,4075,2013-11-08 05:37:43 -0800,1087,3302 -4798,9099,2013-11-11 23:32:09 -0800,1087,3302 -4799,7145,2013-11-10 02:57:04 -0800,1088,3305 -4800,569,2013-11-10 22:22:29 -0800,1088,3304 -4801,8769,2013-11-09 22:39:11 -0800,1088,3303 -4802,509,2013-11-08 21:10:39 -0800,1088,3304 -4803,9155,2013-11-09 08:57:54 -0800,1088,3303 -4804,1492,2013-11-11 03:16:18 -0800,1088,3305 -4805,5270,2013-11-11 03:29:42 -0800,1088,3304 -4806,1411,2013-11-07 01:11:27 -0800,1089,3306 -4807,6283,2013-11-10 07:12:42 -0800,1089,3307 -4808,7995,2013-11-11 05:18:10 -0800,1090,3309 -4809,1021,2013-11-10 15:15:28 -0800,1090,3308 -4810,996,2013-11-10 16:10:49 -0800,1090,3309 -4811,2840,2013-11-08 03:42:32 -0800,1091,3313 -4812,3629,2013-11-08 18:26:19 -0800,1091,3312 -4813,4527,2013-11-12 20:18:19 -0800,1091,3311 -4814,1811,2013-11-13 08:00:33 -0800,1091,3313 -4815,3550,2013-11-08 05:27:15 -0800,1091,3312 -4816,980,2013-11-06 12:47:25 -0800,1092,3314 -4817,9874,2013-11-11 13:12:56 -0800,1092,3314 -4818,856,2013-11-08 00:49:31 -0800,1093,3318 -4819,1618,2013-11-11 01:51:36 -0800,1094,3319 -4820,1648,2013-11-07 13:59:27 -0800,1094,3319 -4821,720,2013-11-09 02:40:02 -0800,1094,3319 -4822,2641,2013-11-09 11:37:33 -0800,1094,3319 -4823,2293,2013-11-12 17:06:20 -0800,1095,3321 -4824,6598,2013-11-08 17:31:31 -0800,1095,3320 -4825,8088,2013-11-12 09:20:13 -0800,1095,3321 -4826,5252,2013-11-09 20:59:29 -0800,1095,3320 -4827,8360,2013-11-11 06:43:03 -0800,1095,3323 -4828,4846,2013-11-06 11:14:04 -0800,1096,3326 -4829,1338,2013-11-12 00:25:17 -0800,1096,3324 -4830,7054,2013-11-12 14:35:38 -0800,1096,3326 -4831,5848,2013-11-08 12:35:20 -0800,1096,3326 -4832,9185,2013-11-08 04:18:56 -0800,1096,3326 -4833,2771,2013-11-06 17:10:53 -0800,1096,3326 -4834,8397,2013-11-07 02:23:06 -0800,1096,3324 -4835,8480,2013-11-11 05:38:45 -0800,1096,3325 -4836,4437,2013-11-06 15:47:17 -0800,1097,3329 -4837,6154,2013-11-13 04:59:36 -0800,1097,3329 -4838,1851,2013-11-12 08:46:10 -0800,1097,3327 -4839,6869,2013-11-06 15:59:56 -0800,1097,3328 -4840,5796,2013-11-09 19:27:26 -0800,1097,3330 -4841,1614,2013-11-06 21:11:07 -0800,1097,3327 -4842,2380,2013-11-13 07:03:06 -0800,1097,3328 -4843,6620,2013-11-12 06:36:33 -0800,1098,3331 -4844,6820,2013-11-08 03:11:15 -0800,1099,3333 -4845,3129,2013-11-06 09:04:18 -0800,1099,3336 -4846,9017,2013-11-10 14:54:34 -0800,1099,3336 -4847,3030,2013-11-11 19:42:14 -0800,1099,3334 -4848,7584,2013-11-11 11:20:55 -0800,1099,3336 -4849,1760,2013-11-08 23:21:21 -0800,1099,3335 -4850,2741,2013-11-10 10:56:28 -0800,1099,3335 -4851,6248,2013-11-07 17:49:41 -0800,1100,3340 -4852,6079,2013-11-08 12:08:20 -0800,1100,3337 -4853,2451,2013-11-10 16:46:25 -0800,1101,3342 -4854,9047,2013-11-09 10:48:33 -0800,1101,3341 -4855,9411,2013-11-13 07:15:55 -0800,1101,3342 -4856,4912,2013-11-09 01:35:59 -0800,1101,3341 -4857,6986,2013-11-10 04:40:35 -0800,1101,3342 -4858,2627,2013-11-12 09:37:02 -0800,1101,3342 -4859,267,2013-11-06 23:14:49 -0800,1102,3345 -4860,5127,2013-11-11 04:10:08 -0800,1102,3343 -4861,6584,2013-11-11 02:32:00 -0800,1103,3349 -4862,9139,2013-11-09 01:36:45 -0800,1103,3349 -4863,4216,2013-11-06 18:29:45 -0800,1103,3349 -4864,7311,2013-11-11 20:36:31 -0800,1104,3352 -4865,5875,2013-11-12 20:01:11 -0800,1104,3351 -4866,5433,2013-11-09 12:51:16 -0800,1105,3354 -4867,8575,2013-11-11 21:39:08 -0800,1105,3353 -4868,2371,2013-11-10 13:12:27 -0800,1105,3353 -4869,4857,2013-11-08 22:49:22 -0800,1105,3354 -4870,1298,2013-11-08 02:00:23 -0800,1105,3353 -4871,7375,2013-11-08 13:53:51 -0800,1105,3353 -4872,1621,2013-11-08 23:09:20 -0800,1105,3353 -4873,472,2013-11-11 06:06:54 -0800,1105,3353 -4874,3368,2013-11-08 20:21:37 -0800,1105,3353 -4875,350,2013-11-11 15:33:00 -0800,1106,3358 -4876,8196,2013-11-13 01:57:43 -0800,1106,3357 -4877,9535,2013-11-12 13:40:19 -0800,1107,3360 -4878,6018,2013-11-08 10:42:12 -0800,1107,3360 -4879,338,2013-11-09 17:43:55 -0800,1107,3359 -4880,7114,2013-11-08 11:04:44 -0800,1107,3359 -4881,4370,2013-11-07 21:52:37 -0800,1107,3359 -4882,514,2013-11-09 23:59:48 -0800,1107,3360 -4883,6287,2013-11-11 23:28:01 -0800,1107,3359 -4884,752,2013-11-09 02:06:00 -0800,1107,3360 -4885,1067,2013-11-06 13:31:38 -0800,1107,3359 -4886,6666,2013-11-09 20:13:49 -0800,1108,3363 -4887,1166,2013-11-11 14:41:25 -0800,1108,3363 -4888,2167,2013-11-06 15:42:55 -0800,1108,3362 -4889,4580,2013-11-08 20:43:37 -0800,1110,3367 -4890,9575,2013-11-09 01:16:02 -0800,1110,3368 -4891,7217,2013-11-12 18:36:37 -0800,1110,3366 -4892,3068,2013-11-09 00:37:06 -0800,1110,3366 -4893,3918,2013-11-08 15:16:28 -0800,1111,3369 -4894,4670,2013-11-11 23:47:48 -0800,1111,3373 -4895,1789,2013-11-06 19:50:13 -0800,1111,3369 -4896,9292,2013-11-09 11:06:09 -0800,1112,3376 -4897,7559,2013-11-11 20:08:41 -0800,1113,3378 -4898,2586,2013-11-08 05:50:16 -0800,1113,3377 -4899,470,2013-11-10 05:20:23 -0800,1113,3377 -4900,3797,2013-11-07 18:47:04 -0800,1113,3378 -4901,8717,2013-11-10 05:22:22 -0800,1113,3378 -4902,8052,2013-11-10 03:01:04 -0800,1114,3381 -4903,5097,2013-11-13 05:53:15 -0800,1114,3379 -4904,4981,2013-11-08 04:07:56 -0800,1115,3388 -4905,7454,2013-11-10 07:35:03 -0800,1115,3385 -4906,6856,2013-11-08 19:57:08 -0800,1116,3393 -4907,6089,2013-11-08 18:07:01 -0800,1116,3392 -4908,940,2013-11-07 20:43:41 -0800,1116,3389 -4909,2539,2013-11-08 12:25:06 -0800,1116,3393 -4910,4025,2013-11-12 08:43:30 -0800,1116,3390 -4911,4313,2013-11-06 13:54:10 -0800,1116,3391 -4912,2729,2013-11-09 02:22:13 -0800,1116,3391 -4913,7531,2013-11-07 01:37:15 -0800,1116,3389 -4914,6235,2013-11-10 14:06:07 -0800,1116,3391 -4915,2820,2013-11-12 07:27:37 -0800,1117,3394 -4916,2062,2013-11-10 08:09:02 -0800,1117,3394 -4917,6834,2013-11-06 13:33:02 -0800,1117,3394 -4918,1772,2013-11-09 14:50:46 -0800,1117,3395 -4919,5029,2013-11-09 11:05:25 -0800,1117,3395 -4920,4846,2013-11-11 15:57:00 -0800,1117,3394 -4921,1670,2013-11-06 22:31:00 -0800,1118,3398 -4922,8521,2013-11-09 11:25:41 -0800,1118,3398 -4923,8792,2013-11-12 12:56:20 -0800,1118,3398 -4924,3911,2013-11-08 08:38:16 -0800,1118,3397 -4925,6220,2013-11-10 18:59:18 -0800,1118,3396 -4926,9657,2013-11-08 19:08:00 -0800,1118,3396 -4927,5827,2013-11-07 03:19:50 -0800,1118,3396 -4928,536,2013-11-12 08:50:41 -0800,1119,3401 -4929,4425,2013-11-13 06:40:52 -0800,1119,3402 -4930,5799,2013-11-07 13:29:40 -0800,1120,3406 -4931,9320,2013-11-07 12:42:13 -0800,1120,3406 -4932,415,2013-11-06 17:58:00 -0800,1120,3404 -4933,8826,2013-11-12 21:27:07 -0800,1120,3406 -4934,1585,2013-11-09 04:23:31 -0800,1120,3404 -4935,1480,2013-11-08 07:05:23 -0800,1121,3407 -4936,2845,2013-11-07 08:04:37 -0800,1121,3410 -4937,4630,2013-11-07 22:40:49 -0800,1121,3409 -4938,6650,2013-11-06 20:53:31 -0800,1121,3410 -4939,9591,2013-11-07 04:55:50 -0800,1121,3410 -4940,6812,2013-11-10 20:43:57 -0800,1122,3411 -4941,1040,2013-11-11 03:19:28 -0800,1122,3412 -4942,4720,2013-11-10 01:49:41 -0800,1122,3412 -4943,9834,2013-11-09 18:51:59 -0800,1122,3411 -4944,1488,2013-11-12 20:47:06 -0800,1122,3412 -4945,2781,2013-11-06 16:59:09 -0800,1122,3411 -4946,2516,2013-11-09 00:47:50 -0800,1122,3411 -4947,1016,2013-11-12 02:16:08 -0800,1122,3411 -4948,6620,2013-11-12 19:21:17 -0800,1122,3412 -4949,1215,2013-11-11 13:58:27 -0800,1124,3419 -4950,3338,2013-11-09 05:20:33 -0800,1124,3418 -4951,2876,2013-11-09 12:39:29 -0800,1124,3419 -4952,6040,2013-11-07 09:06:41 -0800,1125,3422 -4953,1290,2013-11-11 12:28:05 -0800,1125,3422 -4954,159,2013-11-07 20:45:06 -0800,1125,3423 -4955,1240,2013-11-12 09:50:36 -0800,1125,3421 -4956,7020,2013-11-08 16:27:28 -0800,1125,3422 -4957,7518,2013-11-07 07:47:10 -0800,1125,3421 -4958,9040,2013-11-08 16:43:05 -0800,1125,3421 -4959,4567,2013-11-08 09:56:38 -0800,1126,3425 -4960,3818,2013-11-07 16:05:39 -0800,1126,3424 -4961,780,2013-11-10 17:25:10 -0800,1126,3424 -4962,1097,2013-11-12 05:22:17 -0800,1127,3426 -4963,6947,2013-11-12 11:59:52 -0800,1128,3431 -4964,1432,2013-11-11 02:45:44 -0800,1128,3430 -4965,8991,2013-11-08 18:14:47 -0800,1128,3432 -4966,7240,2013-11-08 18:46:15 -0800,1128,3433 -4967,4131,2013-11-07 17:52:59 -0800,1128,3431 -4968,5155,2013-11-06 19:34:37 -0800,1128,3432 -4969,3087,2013-11-10 21:30:52 -0800,1128,3433 -4970,3897,2013-11-12 13:00:21 -0800,1130,3438 -4971,5030,2013-11-08 17:47:26 -0800,1130,3438 -4972,177,2013-11-06 23:44:28 -0800,1130,3438 -4973,5350,2013-11-07 17:26:36 -0800,1130,3438 -4974,789,2013-11-08 14:10:01 -0800,1130,3438 -4975,5687,2013-11-11 00:59:24 -0800,1130,3438 -4976,1513,2013-11-12 01:14:17 -0800,1130,3438 -4977,2592,2013-11-10 16:59:14 -0800,1130,3438 -4978,5420,2013-11-10 04:10:27 -0800,1131,3439 -4979,3410,2013-11-08 10:30:29 -0800,1132,3440 -4980,4017,2013-11-12 11:02:03 -0800,1132,3440 -4981,125,2013-11-13 01:10:43 -0800,1132,3441 -4982,7051,2013-11-09 05:45:37 -0800,1132,3440 -4983,8280,2013-11-08 14:46:04 -0800,1132,3440 -4984,3340,2013-11-10 11:43:14 -0800,1132,3441 -4985,8464,2013-11-12 18:23:24 -0800,1132,3440 -4986,3961,2013-11-11 09:48:24 -0800,1133,3443 -4987,4530,2013-11-06 16:41:20 -0800,1133,3444 -4988,6026,2013-11-09 05:40:18 -0800,1133,3442 -4989,5400,2013-11-11 04:44:09 -0800,1133,3445 -4990,4424,2013-11-10 00:50:25 -0800,1134,3447 -4991,5536,2013-11-08 04:54:09 -0800,1134,3450 -4992,1528,2013-11-10 13:45:00 -0800,1134,3447 -4993,4870,2013-11-07 17:15:11 -0800,1134,3448 -4994,8530,2013-11-11 20:32:25 -0800,1135,3451 -4995,623,2013-11-06 10:07:02 -0800,1135,3452 -4996,7980,2013-11-09 18:19:37 -0800,1135,3451 -4997,700,2013-11-11 10:56:47 -0800,1136,3453 -4998,2574,2013-11-10 03:38:14 -0800,1136,3453 -4999,9510,2013-11-07 05:55:43 -0800,1136,3453 -5000,2987,2013-11-10 17:36:36 -0800,1136,3453 -5001,2560,2013-11-13 08:31:24 -0800,1136,3453 -5002,4343,2013-11-12 07:39:18 -0800,1136,3453 -5003,6274,2013-11-12 05:24:48 -0800,1136,3453 -5004,2660,2013-11-11 18:35:19 -0800,1136,3453 -5005,2212,2013-11-07 05:23:21 -0800,1136,3453 -5006,3171,2013-11-10 07:33:28 -0800,1137,3455 -5007,8752,2013-11-12 18:47:42 -0800,1137,3455 -5008,4784,2013-11-12 16:48:21 -0800,1137,3454 -5009,6566,2013-11-10 14:34:36 -0800,1138,3456 -5010,5816,2013-11-07 23:24:33 -0800,1138,3456 -5011,5411,2013-11-06 11:27:45 -0800,1138,3456 -5012,866,2013-11-08 08:10:14 -0800,1138,3456 -5013,1440,2013-11-11 00:30:19 -0800,1138,3456 -5014,1251,2013-11-12 11:19:59 -0800,1138,3456 -5015,2260,2013-11-06 15:12:49 -0800,1138,3456 -5016,134,2013-11-12 17:56:20 -0800,1138,3456 -5017,2448,2013-11-06 19:39:14 -0800,1138,3456 -5018,8814,2013-11-12 19:56:35 -0800,1139,3457 -5019,3075,2013-11-08 14:43:29 -0800,1139,3457 -5020,3157,2013-11-08 02:22:01 -0800,1140,3458 -5021,6413,2013-11-10 02:31:06 -0800,1140,3458 -5022,8130,2013-11-13 07:35:18 -0800,1140,3462 -5023,4998,2013-11-08 18:31:16 -0800,1140,3461 -5024,3140,2013-11-11 17:03:36 -0800,1140,3458 -5025,3644,2013-11-12 03:31:24 -0800,1141,3466 -5026,2480,2013-11-08 19:34:16 -0800,1142,3469 -5027,719,2013-11-12 01:12:22 -0800,1142,3469 -5028,595,2013-11-09 22:19:49 -0800,1142,3469 -5029,3484,2013-11-11 10:07:11 -0800,1143,3471 -5030,3240,2013-11-07 00:55:48 -0800,1143,3471 -5031,4593,2013-11-11 12:01:59 -0800,1143,3471 -5032,9517,2013-11-08 18:21:12 -0800,1143,3472 -5033,3100,2013-11-07 11:07:32 -0800,1143,3471 -5034,2280,2013-11-11 14:56:09 -0800,1143,3472 -5035,3060,2013-11-13 03:10:13 -0800,1143,3471 -5036,7588,2013-11-06 23:59:59 -0800,1145,3474 -5037,8972,2013-11-06 22:15:43 -0800,1145,3476 -5038,8470,2013-11-08 13:52:12 -0800,1145,3475 -5039,8585,2013-11-10 02:46:59 -0800,1145,3474 -5040,6845,2013-11-11 21:50:32 -0800,1145,3477 -5041,3310,2013-11-08 05:11:56 -0800,1146,3479 -5042,971,2013-11-09 20:38:21 -0800,1146,3479 -5043,6378,2013-11-09 23:55:08 -0800,1146,3479 -5044,4832,2013-11-12 20:30:37 -0800,1147,3481 -5045,655,2013-11-11 19:05:15 -0800,1147,3480 -5046,567,2013-11-07 02:15:20 -0800,1147,3481 -5047,3928,2013-11-12 06:03:34 -0800,1147,3481 -5048,3172,2013-11-09 16:47:49 -0800,1147,3484 -5049,1284,2013-11-09 16:32:37 -0800,1147,3482 -5050,1784,2013-11-11 12:54:24 -0800,1147,3482 -5051,7522,2013-11-06 21:46:46 -0800,1147,3484 -5052,3320,2013-11-12 03:06:38 -0800,1147,3483 -5053,8628,2013-11-06 23:44:03 -0800,1148,3485 -5054,590,2013-11-08 15:15:40 -0800,1148,3485 -5055,1545,2013-11-10 12:50:47 -0800,1148,3485 -5056,4920,2013-11-13 07:45:13 -0800,1150,3490 -5057,4152,2013-11-07 07:04:24 -0800,1150,3490 -5058,6359,2013-11-10 03:25:02 -0800,1150,3490 -5059,9127,2013-11-11 03:37:05 -0800,1150,3490 -5060,2762,2013-11-10 06:25:10 -0800,1150,3490 -5061,3593,2013-11-07 07:42:09 -0800,1150,3490 -5062,5966,2013-11-10 19:05:26 -0800,1151,3491 -5063,8863,2013-11-07 03:43:34 -0800,1151,3492 -5064,3882,2013-11-11 06:44:46 -0800,1151,3492 -5065,9311,2013-11-12 22:23:25 -0800,1151,3492 -5066,4656,2013-11-12 04:48:51 -0800,1151,3491 -5067,5517,2013-11-08 05:58:21 -0800,1153,3497 -5068,6745,2013-11-07 23:20:52 -0800,1153,3496 -5069,8960,2013-11-12 01:14:55 -0800,1153,3495 -5070,8940,2013-11-07 12:04:10 -0800,1153,3495 -5071,2450,2013-11-12 14:46:52 -0800,1153,3497 -5072,3736,2013-11-07 00:54:17 -0800,1153,3497 -5073,155,2013-11-06 20:52:37 -0800,1155,3504 -5074,530,2013-11-12 03:52:51 -0800,1155,3504 -5075,9836,2013-11-10 02:27:11 -0800,1155,3503 -5076,4770,2013-11-09 06:37:33 -0800,1155,3503 -5077,1844,2013-11-08 23:40:15 -0800,1155,3504 -5078,8417,2013-11-06 08:53:35 -0800,1155,3504 -5079,7720,2013-11-10 08:49:17 -0800,1155,3504 -5080,5415,2013-11-11 21:19:26 -0800,1155,3504 -5081,7183,2013-11-11 07:32:42 -0800,1155,3504 -5082,3247,2013-11-12 08:37:56 -0800,1156,3507 -5083,1231,2013-11-12 14:30:55 -0800,1157,3509 -5084,874,2013-11-09 23:20:26 -0800,1157,3509 -5085,8453,2013-11-07 12:16:54 -0800,1157,3508 -5086,5159,2013-11-11 08:17:03 -0800,1157,3508 -5087,3424,2013-11-09 01:02:13 -0800,1157,3508 -5088,376,2013-11-07 16:23:28 -0800,1157,3508 -5089,1138,2013-11-09 21:59:57 -0800,1157,3508 -5090,1657,2013-11-09 12:38:46 -0800,1158,3510 -5091,2279,2013-11-06 10:04:40 -0800,1158,3512 -5092,9447,2013-11-07 05:19:53 -0800,1158,3511 -5093,1590,2013-11-07 06:03:37 -0800,1158,3511 -5094,4492,2013-11-09 02:34:48 -0800,1159,3517 -5095,9838,2013-11-09 05:33:15 -0800,1159,3516 -5096,4081,2013-11-10 06:56:58 -0800,1159,3514 -5097,8983,2013-11-13 02:15:24 -0800,1159,3514 -5098,447,2013-11-07 11:11:45 -0800,1159,3515 -5099,1728,2013-11-06 20:43:29 -0800,1159,3517 -5100,2116,2013-11-11 04:48:46 -0800,1159,3514 -5101,5510,2013-11-09 00:46:39 -0800,1159,3516 -5102,9776,2013-11-11 16:17:03 -0800,1159,3517 -5103,5133,2013-11-07 11:49:08 -0800,1161,3524 -5104,1156,2013-11-06 14:43:57 -0800,1162,3525 -5105,742,2013-11-12 17:04:42 -0800,1162,3527 -5106,186,2013-11-08 04:53:36 -0800,1162,3525 -5107,7609,2013-11-07 00:04:30 -0800,1162,3526 -5108,7439,2013-11-12 08:05:28 -0800,1162,3526 -5109,2256,2013-11-09 20:45:50 -0800,1162,3527 -5110,7643,2013-11-12 15:03:26 -0800,1162,3526 -5111,5590,2013-11-10 09:02:29 -0800,1162,3527 -5112,3588,2013-11-12 07:41:08 -0800,1162,3527 -5113,1982,2013-11-06 19:41:51 -0800,1163,3530 -5114,3040,2013-11-08 18:34:53 -0800,1166,3536 -5115,5331,2013-11-10 08:39:32 -0800,1166,3538 -5116,787,2013-11-11 08:58:09 -0800,1166,3538 -5117,8872,2013-11-11 18:56:37 -0800,1166,3537 -5118,5647,2013-11-11 11:48:01 -0800,1166,3537 -5119,7964,2013-11-08 19:19:21 -0800,1166,3539 -5120,4630,2013-11-13 06:42:21 -0800,1167,3540 -5121,8310,2013-11-07 13:37:31 -0800,1167,3544 -5122,2334,2013-11-11 21:56:34 -0800,1167,3541 -5123,4825,2013-11-07 04:25:17 -0800,1167,3544 -5124,536,2013-11-10 05:08:51 -0800,1167,3542 -5125,4832,2013-11-11 11:43:18 -0800,1168,3547 -5126,4633,2013-11-12 06:16:58 -0800,1168,3547 -5127,8332,2013-11-11 11:52:30 -0800,1168,3546 -5128,376,2013-11-08 08:26:16 -0800,1168,3547 -5129,7920,2013-11-07 21:29:37 -0800,1168,3546 -5130,124,2013-11-11 01:29:00 -0800,1168,3545 -5131,7775,2013-11-12 01:48:21 -0800,1168,3547 -5132,4580,2013-11-09 05:13:32 -0800,1168,3547 -5133,4612,2013-11-08 17:46:29 -0800,1170,3557 -5134,3295,2013-11-08 12:39:38 -0800,1170,3555 -5135,5730,2013-11-12 15:10:15 -0800,1171,3560 -5136,1593,2013-11-11 14:00:24 -0800,1171,3559 -5137,7327,2013-11-11 13:40:43 -0800,1171,3561 -5138,2299,2013-11-07 19:33:36 -0800,1171,3561 -5139,9659,2013-11-13 03:31:19 -0800,1171,3560 -5140,2596,2013-11-07 04:13:56 -0800,1171,3559 -5141,4520,2013-11-08 19:05:52 -0800,1171,3561 -5142,8515,2013-11-07 05:53:52 -0800,1171,3558 -5143,7734,2013-11-12 12:26:30 -0800,1172,3563 -5144,810,2013-11-08 01:31:06 -0800,1173,3564 -5145,7913,2013-11-09 08:05:49 -0800,1173,3564 -5146,9394,2013-11-10 21:31:55 -0800,1173,3565 -5147,9323,2013-11-08 17:41:36 -0800,1174,3570 -5148,1630,2013-11-12 04:43:07 -0800,1174,3571 -5149,4177,2013-11-13 04:18:04 -0800,1174,3568 -5150,6265,2013-11-12 01:54:38 -0800,1174,3570 -5151,4486,2013-11-08 09:06:20 -0800,1174,3567 -5152,1629,2013-11-08 10:20:21 -0800,1174,3570 -5153,8713,2013-11-10 07:45:40 -0800,1175,3573 -5154,1084,2013-11-10 20:41:03 -0800,1175,3573 -5155,5350,2013-11-09 21:16:12 -0800,1175,3574 -5156,8033,2013-11-11 02:25:16 -0800,1175,3574 -5157,2720,2013-11-12 14:15:53 -0800,1175,3574 -5158,1490,2013-11-10 20:07:19 -0800,1176,3577 -5159,8669,2013-11-10 23:50:49 -0800,1176,3577 -5160,9680,2013-11-12 23:54:26 -0800,1176,3577 -5161,7698,2013-11-13 06:51:42 -0800,1176,3577 -5162,6823,2013-11-11 03:19:50 -0800,1176,3577 -5163,851,2013-11-08 02:07:55 -0800,1176,3577 -5164,8176,2013-11-08 03:47:21 -0800,1176,3577 -5165,1496,2013-11-10 16:43:50 -0800,1177,3578 -5166,3177,2013-11-06 21:00:50 -0800,1177,3578 -5167,9345,2013-11-10 03:42:04 -0800,1177,3578 -5168,2570,2013-11-10 15:45:09 -0800,1177,3578 -5169,7073,2013-11-11 19:25:03 -0800,1177,3578 -5170,5036,2013-11-11 22:36:48 -0800,1177,3578 -5171,900,2013-11-13 06:30:10 -0800,1177,3578 -5172,4660,2013-11-12 05:37:35 -0800,1177,3578 -5173,5682,2013-11-11 18:11:12 -0800,1177,3578 -5174,4077,2013-11-08 22:44:33 -0800,1178,3580 -5175,2462,2013-11-12 11:12:45 -0800,1178,3582 -5176,8633,2013-11-07 07:51:14 -0800,1178,3582 -5177,6998,2013-11-12 13:28:21 -0800,1178,3581 -5178,3653,2013-11-09 10:09:08 -0800,1178,3579 -5179,3721,2013-11-09 00:55:56 -0800,1178,3581 -5180,6645,2013-11-07 13:06:51 -0800,1179,3584 -5181,2785,2013-11-07 10:11:24 -0800,1179,3585 -5182,6618,2013-11-10 09:39:48 -0800,1179,3585 -5183,9651,2013-11-06 20:53:27 -0800,1179,3585 -5184,6241,2013-11-12 00:15:57 -0800,1179,3586 -5185,3850,2013-11-11 14:07:11 -0800,1179,3586 -5186,4086,2013-11-08 18:53:04 -0800,1179,3585 -5187,8170,2013-11-09 11:22:26 -0800,1180,3591 -5188,1489,2013-11-11 11:06:21 -0800,1181,3593 -5189,3240,2013-11-08 16:55:05 -0800,1181,3592 -5190,1680,2013-11-07 02:40:33 -0800,1181,3595 -5191,1823,2013-11-08 16:34:40 -0800,1181,3592 -5192,2448,2013-11-11 11:51:17 -0800,1181,3594 -5193,6640,2013-11-11 08:10:22 -0800,1181,3593 -5194,2393,2013-11-07 19:26:23 -0800,1181,3595 -5195,1930,2013-11-10 06:26:53 -0800,1182,3597 -5196,8469,2013-11-10 00:08:42 -0800,1182,3597 -5197,5410,2013-11-09 00:40:09 -0800,1182,3597 -5198,7366,2013-11-11 17:25:37 -0800,1182,3598 -5199,6033,2013-11-11 18:35:42 -0800,1182,3597 -5200,3344,2013-11-07 08:52:18 -0800,1182,3598 -5201,6509,2013-11-13 01:33:28 -0800,1182,3598 -5202,6955,2013-11-12 21:11:43 -0800,1183,3600 -5203,1394,2013-11-07 06:32:25 -0800,1183,3600 -5204,1623,2013-11-10 10:32:52 -0800,1183,3600 -5205,7620,2013-11-10 20:58:05 -0800,1183,3600 -5206,6086,2013-11-11 15:23:59 -0800,1183,3601 -5207,3452,2013-11-11 16:07:01 -0800,1183,3601 -5208,9760,2013-11-07 16:32:18 -0800,1183,3601 -5209,1267,2013-11-06 21:21:12 -0800,1183,3599 -5210,3879,2013-11-12 14:17:13 -0800,1183,3601 -5211,1860,2013-11-11 19:27:12 -0800,1184,3602 -5212,2154,2013-11-08 02:02:14 -0800,1184,3602 -5213,5546,2013-11-11 19:40:18 -0800,1185,3604 -5214,9539,2013-11-10 00:50:17 -0800,1185,3604 -5215,1657,2013-11-08 14:02:17 -0800,1185,3603 -5216,2955,2013-11-12 15:33:41 -0800,1185,3603 -5217,2045,2013-11-10 00:21:55 -0800,1185,3603 -5218,6077,2013-11-10 22:59:06 -0800,1185,3604 -5219,1229,2013-11-10 21:43:14 -0800,1186,3606 -5220,4761,2013-11-08 06:05:54 -0800,1186,3606 -5221,5019,2013-11-11 16:23:41 -0800,1186,3608 -5222,30,2013-11-12 17:48:01 -0800,1186,3606 -5223,8091,2013-11-08 23:10:12 -0800,1186,3606 -5224,1077,2013-11-09 04:19:37 -0800,1186,3609 -5225,2687,2013-11-11 21:45:18 -0800,1187,3610 -5226,2420,2013-11-07 14:19:51 -0800,1187,3610 -5227,7581,2013-11-09 11:56:38 -0800,1187,3610 -5228,2777,2013-11-08 03:23:40 -0800,1187,3610 -5229,5330,2013-11-06 22:33:55 -0800,1187,3610 -5230,6115,2013-11-12 16:48:24 -0800,1188,3611 -5231,9154,2013-11-08 01:57:08 -0800,1190,3619 -5232,2017,2013-11-10 07:22:06 -0800,1190,3617 -5233,3035,2013-11-13 07:19:01 -0800,1190,3618 -5234,5218,2013-11-12 19:45:02 -0800,1190,3616 -5235,8622,2013-11-12 18:34:12 -0800,1190,3619 -5236,2126,2013-11-11 23:15:47 -0800,1190,3616 -5237,3881,2013-11-07 19:45:20 -0800,1190,3618 -5238,5610,2013-11-10 18:01:46 -0800,1190,3616 -5239,8367,2013-11-10 04:42:39 -0800,1190,3616 -5240,2155,2013-11-11 03:10:40 -0800,1191,3621 -5241,7250,2013-11-11 21:01:33 -0800,1191,3622 -5242,5681,2013-11-12 17:43:13 -0800,1192,3623 -5243,2832,2013-11-10 14:35:18 -0800,1192,3624 -5244,1880,2013-11-08 21:46:12 -0800,1193,3626 -5245,6248,2013-11-07 05:27:41 -0800,1195,3629 -5246,6311,2013-11-06 18:40:16 -0800,1195,3629 -5247,2551,2013-11-06 14:54:54 -0800,1195,3629 -5248,8169,2013-11-07 22:28:41 -0800,1195,3629 -5249,2467,2013-11-08 05:49:54 -0800,1195,3629 -5250,5056,2013-11-10 07:45:31 -0800,1195,3629 -5251,7823,2013-11-09 02:16:11 -0800,1195,3629 -5252,6240,2013-11-08 19:26:53 -0800,1196,3631 -5253,9173,2013-11-08 14:39:19 -0800,1196,3631 -5254,7012,2013-11-11 05:18:00 -0800,1196,3631 -5255,7712,2013-11-07 02:44:37 -0800,1196,3631 -5256,6346,2013-11-07 04:29:04 -0800,1196,3630 -5257,2468,2013-11-09 06:56:58 -0800,1197,3633 -5258,2793,2013-11-06 15:22:43 -0800,1197,3632 -5259,9354,2013-11-08 18:29:10 -0800,1197,3633 -5260,2989,2013-11-10 12:22:06 -0800,1197,3632 -5261,1564,2013-11-08 06:05:15 -0800,1197,3632 -5262,9614,2013-11-08 01:32:08 -0800,1198,3634 -5263,7184,2013-11-09 13:54:45 -0800,1198,3635 -5264,6434,2013-11-10 07:22:57 -0800,1198,3638 -5265,7295,2013-11-09 11:34:04 -0800,1199,3639 -5266,2840,2013-11-10 21:11:06 -0800,1199,3640 -5267,6837,2013-11-06 17:53:44 -0800,1199,3639 -5268,7736,2013-11-08 21:14:45 -0800,1199,3640 -5269,9098,2013-11-11 10:17:35 -0800,1199,3641 -5270,8142,2013-11-10 21:15:48 -0800,1200,3643 -5271,3932,2013-11-10 08:39:48 -0800,1200,3642 -5272,7165,2013-11-12 11:43:50 -0800,1201,3645 -5273,5654,2013-11-10 17:43:34 -0800,1201,3647 -5274,8637,2013-11-12 19:19:04 -0800,1201,3647 -5275,6809,2013-11-09 02:34:03 -0800,1201,3647 -5276,8545,2013-11-13 02:33:43 -0800,1201,3646 -5277,1422,2013-11-09 07:37:46 -0800,1201,3645 -5278,9329,2013-11-08 14:54:32 -0800,1201,3647 -5279,8535,2013-11-10 19:11:58 -0800,1201,3645 -5280,7197,2013-11-08 23:18:13 -0800,1201,3646 -5281,7914,2013-11-07 00:38:59 -0800,1202,3652 -5282,3099,2013-11-13 04:02:46 -0800,1203,3654 -5283,5015,2013-11-11 08:08:29 -0800,1203,3655 -5284,5660,2013-11-10 02:27:43 -0800,1203,3656 -5285,688,2013-11-06 18:18:33 -0800,1204,3661 -5286,5582,2013-11-13 04:05:12 -0800,1204,3657 -5287,1563,2013-11-07 12:23:10 -0800,1204,3661 -5288,4866,2013-11-06 18:32:33 -0800,1204,3660 -5289,7777,2013-11-06 10:31:14 -0800,1205,3665 -5290,5714,2013-11-10 08:56:20 -0800,1205,3664 -5291,8695,2013-11-11 11:23:57 -0800,1205,3664 -5292,5079,2013-11-08 01:36:08 -0800,1205,3664 -5293,2727,2013-11-12 22:44:56 -0800,1206,3667 -5294,8772,2013-11-07 15:38:43 -0800,1206,3667 -5295,8272,2013-11-11 10:27:58 -0800,1206,3666 -5296,260,2013-11-11 14:23:54 -0800,1206,3667 -5297,5258,2013-11-11 17:05:33 -0800,1206,3666 -5298,8553,2013-11-10 01:45:01 -0800,1206,3667 -5299,7994,2013-11-12 05:13:28 -0800,1206,3666 -5300,5560,2013-11-11 09:25:02 -0800,1206,3668 -5301,4642,2013-11-08 09:20:37 -0800,1206,3667 -5302,6199,2013-11-08 09:42:31 -0800,1207,3671 -5303,9170,2013-11-09 21:27:37 -0800,1207,3669 -5304,8270,2013-11-10 17:02:12 -0800,1207,3673 -5305,6840,2013-11-07 04:59:52 -0800,1208,3674 -5306,7019,2013-11-11 11:39:08 -0800,1208,3674 -5307,1440,2013-11-12 21:02:24 -0800,1208,3674 -5308,5516,2013-11-08 22:55:31 -0800,1208,3674 -5309,1545,2013-11-06 20:27:17 -0800,1208,3674 -5310,9413,2013-11-12 23:48:58 -0800,1208,3674 -5311,712,2013-11-11 07:09:40 -0800,1208,3674 -5312,2386,2013-11-11 16:19:11 -0800,1208,3674 -5313,5456,2013-11-12 00:44:57 -0800,1209,3678 -5314,3594,2013-11-07 20:25:14 -0800,1210,3680 -5315,6071,2013-11-12 19:39:22 -0800,1210,3680 -5316,9565,2013-11-12 11:34:35 -0800,1211,3683 -5317,8412,2013-11-12 17:04:04 -0800,1212,3687 -5318,4743,2013-11-08 21:39:15 -0800,1212,3687 -5319,9271,2013-11-06 23:27:01 -0800,1212,3686 -5320,2797,2013-11-09 19:00:48 -0800,1212,3686 -5321,8450,2013-11-10 03:29:35 -0800,1213,3688 -5322,2468,2013-11-06 14:38:29 -0800,1213,3688 -5323,5455,2013-11-11 02:53:44 -0800,1213,3688 -5324,8690,2013-11-09 21:11:34 -0800,1213,3688 -5325,4956,2013-11-10 12:13:57 -0800,1213,3688 -5326,1750,2013-11-08 21:48:05 -0800,1213,3688 -5327,5676,2013-11-08 17:34:56 -0800,1214,3689 -5328,6866,2013-11-11 02:15:51 -0800,1214,3690 -5329,7943,2013-11-08 01:41:11 -0800,1214,3690 -5330,9446,2013-11-10 09:54:08 -0800,1216,3694 -5331,2716,2013-11-12 16:48:18 -0800,1216,3696 -5332,2622,2013-11-11 14:57:01 -0800,1216,3696 -5333,6025,2013-11-10 10:15:34 -0800,1216,3696 -5334,7112,2013-11-07 08:00:56 -0800,1216,3697 -5335,6609,2013-11-08 09:38:16 -0800,1216,3697 -5336,138,2013-11-08 23:17:11 -0800,1216,3694 -5337,4580,2013-11-12 21:24:44 -0800,1216,3695 -5338,5310,2013-11-08 16:08:52 -0800,1217,3700 -5339,8389,2013-11-08 14:03:42 -0800,1217,3699 -5340,4130,2013-11-12 17:34:04 -0800,1217,3700 -5341,1099,2013-11-06 23:51:19 -0800,1218,3702 -5342,1215,2013-11-11 06:28:49 -0800,1219,3707 -5343,3736,2013-11-09 08:09:41 -0800,1219,3706 -5344,7113,2013-11-07 14:00:10 -0800,1219,3707 -5345,4612,2013-11-11 11:36:29 -0800,1219,3707 -5346,4528,2013-11-07 19:30:55 -0800,1219,3707 -5347,2796,2013-11-09 03:57:18 -0800,1219,3706 -5348,5861,2013-11-07 06:38:12 -0800,1220,3709 -5349,3326,2013-11-10 07:45:18 -0800,1220,3710 -5350,6562,2013-11-12 10:40:40 -0800,1221,3713 -5351,2767,2013-11-07 15:45:31 -0800,1222,3715 -5352,9560,2013-11-06 20:47:31 -0800,1223,3721 -5353,4772,2013-11-09 19:55:52 -0800,1224,3725 -5354,8911,2013-11-10 02:17:42 -0800,1225,3727 -5355,6445,2013-11-08 14:20:55 -0800,1225,3727 -5356,2355,2013-11-07 12:11:53 -0800,1225,3727 -5357,3397,2013-11-10 23:36:56 -0800,1225,3726 -5358,7415,2013-11-06 22:41:26 -0800,1225,3727 -5359,6050,2013-11-08 06:58:38 -0800,1225,3727 -5360,2994,2013-11-07 16:38:48 -0800,1225,3726 -5361,432,2013-11-07 07:01:25 -0800,1225,3727 -5362,1352,2013-11-12 23:58:10 -0800,1226,3728 -5363,9536,2013-11-06 21:26:30 -0800,1226,3728 -5364,5790,2013-11-10 13:51:13 -0800,1226,3728 -5365,4056,2013-11-12 15:53:12 -0800,1227,3729 -5366,1144,2013-11-12 23:14:04 -0800,1228,3733 -5367,9490,2013-11-11 18:20:18 -0800,1228,3734 -5368,7717,2013-11-08 01:04:59 -0800,1228,3733 -5369,4063,2013-11-08 00:54:04 -0800,1228,3734 -5370,7647,2013-11-10 19:30:26 -0800,1228,3733 -5371,1291,2013-11-10 08:47:03 -0800,1229,3735 -5372,9370,2013-11-09 18:44:23 -0800,1229,3735 -5373,6098,2013-11-09 23:49:43 -0800,1229,3735 -5374,6230,2013-11-09 01:56:21 -0800,1229,3735 -5375,2271,2013-11-09 06:38:51 -0800,1229,3735 -5376,9481,2013-11-07 23:34:23 -0800,1229,3735 -5377,6162,2013-11-12 13:09:17 -0800,1229,3735 -5378,8152,2013-11-13 02:13:52 -0800,1229,3735 -5379,6454,2013-11-06 09:57:22 -0800,1230,3736 -5380,6128,2013-11-12 15:46:18 -0800,1230,3736 -5381,8313,2013-11-11 16:02:07 -0800,1230,3737 -5382,1647,2013-11-13 07:28:33 -0800,1230,3737 -5383,6418,2013-11-11 10:35:28 -0800,1230,3736 -5384,6823,2013-11-06 11:25:33 -0800,1230,3736 -5385,5892,2013-11-07 09:22:24 -0800,1230,3736 -5386,2674,2013-11-11 00:23:58 -0800,1230,3736 -5387,6082,2013-11-06 11:30:01 -0800,1230,3737 -5388,9742,2013-11-07 23:58:53 -0800,1231,3738 -5389,5125,2013-11-08 07:55:14 -0800,1231,3739 -5390,8430,2013-11-08 09:08:07 -0800,1232,3740 -5391,2639,2013-11-06 15:13:17 -0800,1232,3740 -5392,815,2013-11-12 05:16:37 -0800,1232,3740 -5393,2394,2013-11-08 18:52:17 -0800,1232,3740 -5394,3074,2013-11-11 16:25:24 -0800,1233,3742 -5395,6326,2013-11-09 10:53:43 -0800,1234,3743 -5396,218,2013-11-09 15:43:58 -0800,1234,3743 -5397,2073,2013-11-12 12:59:07 -0800,1234,3743 -5398,3354,2013-11-07 05:31:59 -0800,1234,3744 -5399,7490,2013-11-09 14:47:16 -0800,1234,3743 -5400,9728,2013-11-10 20:15:32 -0800,1235,3749 -5401,3461,2013-11-07 16:06:58 -0800,1237,3755 -5402,5571,2013-11-07 20:44:13 -0800,1237,3755 -5403,8240,2013-11-10 13:52:19 -0800,1237,3754 -5404,3114,2013-11-10 12:42:35 -0800,1237,3757 -5405,256,2013-11-07 18:30:51 -0800,1237,3757 -5406,5488,2013-11-11 05:38:28 -0800,1237,3755 -5407,2876,2013-11-12 12:44:36 -0800,1237,3757 -5408,2995,2013-11-08 05:48:01 -0800,1237,3755 -5409,613,2013-11-08 09:56:45 -0800,1238,3759 -5410,6738,2013-11-10 18:23:18 -0800,1238,3759 -5411,1193,2013-11-13 03:26:47 -0800,1238,3759 -5412,8758,2013-11-11 03:43:27 -0800,1238,3758 -5413,2353,2013-11-06 08:54:13 -0800,1238,3759 -5414,2571,2013-11-09 02:23:15 -0800,1239,3761 -5415,4686,2013-11-10 23:31:11 -0800,1239,3761 -5416,5138,2013-11-10 20:42:51 -0800,1239,3760 -5417,8290,2013-11-08 15:40:07 -0800,1239,3760 -5418,8649,2013-11-10 11:38:00 -0800,1240,3764 -5419,5238,2013-11-11 13:48:05 -0800,1240,3764 -5420,8680,2013-11-11 08:33:56 -0800,1240,3765 -5421,2157,2013-11-12 18:29:23 -0800,1240,3765 -5422,3777,2013-11-07 13:44:03 -0800,1240,3764 -5423,9643,2013-11-08 14:24:02 -0800,1241,3767 -5424,8944,2013-11-13 06:56:00 -0800,1242,3771 -5425,830,2013-11-12 01:42:49 -0800,1242,3772 -5426,11,2013-11-09 23:53:35 -0800,1242,3774 -5427,1297,2013-11-11 21:58:23 -0800,1242,3772 -5428,3260,2013-11-08 03:08:50 -0800,1242,3775 -5429,2519,2013-11-08 05:30:36 -0800,1242,3775 -5430,1436,2013-11-08 19:59:52 -0800,1242,3772 -5431,9037,2013-11-07 21:00:48 -0800,1242,3771 -5432,4932,2013-11-12 11:28:54 -0800,1243,3777 -5433,2863,2013-11-12 07:50:16 -0800,1243,3777 -5434,9715,2013-11-13 04:44:21 -0800,1244,3780 -5435,9214,2013-11-11 05:19:33 -0800,1244,3780 -5436,383,2013-11-10 16:34:57 -0800,1244,3779 -5437,355,2013-11-07 21:58:30 -0800,1244,3779 -5438,2088,2013-11-09 16:51:47 -0800,1244,3778 -5439,4439,2013-11-07 16:39:01 -0800,1244,3779 -5440,3067,2013-11-11 14:29:05 -0800,1245,3785 -5441,4811,2013-11-13 01:19:31 -0800,1245,3786 -5442,2550,2013-11-07 01:27:23 -0800,1245,3785 -5443,7350,2013-11-12 00:38:05 -0800,1245,3784 -5444,6418,2013-11-10 18:07:26 -0800,1245,3785 -5445,3426,2013-11-09 23:57:10 -0800,1246,3787 -5446,1847,2013-11-10 18:39:05 -0800,1246,3787 -5447,7159,2013-11-10 07:28:10 -0800,1246,3787 -5448,916,2013-11-06 19:33:14 -0800,1246,3787 -5449,9796,2013-11-09 00:55:41 -0800,1246,3787 -5450,9055,2013-11-12 02:36:53 -0800,1246,3787 -5451,7173,2013-11-06 10:27:10 -0800,1247,3789 -5452,4810,2013-11-08 07:44:24 -0800,1247,3790 -5453,2973,2013-11-09 14:24:03 -0800,1247,3790 -5454,8598,2013-11-08 18:41:28 -0800,1247,3790 -5455,7615,2013-11-12 10:32:27 -0800,1247,3790 -5456,3720,2013-11-07 13:08:16 -0800,1247,3790 -5457,5522,2013-11-09 18:53:23 -0800,1248,3794 -5458,455,2013-11-10 20:29:09 -0800,1248,3792 -5459,5010,2013-11-09 20:04:51 -0800,1248,3795 -5460,8920,2013-11-11 10:48:30 -0800,1249,3799 -5461,7726,2013-11-06 14:00:49 -0800,1249,3797 -5462,235,2013-11-07 06:22:57 -0800,1249,3799 -5463,4274,2013-11-08 02:06:45 -0800,1249,3797 -5464,4931,2013-11-07 17:32:41 -0800,1250,3800 -5465,4315,2013-11-07 01:00:09 -0800,1250,3802 -5466,538,2013-11-09 17:57:15 -0800,1250,3802 -5467,335,2013-11-07 16:46:52 -0800,1250,3802 -5468,76,2013-11-07 02:44:20 -0800,1250,3802 -5469,2431,2013-11-11 13:55:17 -0800,1251,3803 -5470,3797,2013-11-10 15:54:00 -0800,1252,3804 -5471,8568,2013-11-09 05:01:14 -0800,1252,3804 -5472,144,2013-11-13 03:36:02 -0800,1252,3804 -5473,2435,2013-11-08 11:41:54 -0800,1252,3805 -5474,7684,2013-11-11 15:56:36 -0800,1252,3804 -5475,6730,2013-11-12 05:21:48 -0800,1252,3805 -5476,8711,2013-11-10 03:04:23 -0800,1252,3805 -5477,8011,2013-11-08 20:24:45 -0800,1252,3804 -5478,1136,2013-11-10 15:21:43 -0800,1253,3807 -5479,1882,2013-11-12 06:59:14 -0800,1253,3807 -5480,7888,2013-11-10 10:29:35 -0800,1253,3807 -5481,6263,2013-11-09 01:07:53 -0800,1253,3807 -5482,2550,2013-11-11 16:07:18 -0800,1253,3807 -5483,5731,2013-11-07 06:07:22 -0800,1253,3807 -5484,181,2013-11-11 06:47:30 -0800,1254,3808 -5485,8974,2013-11-09 06:04:31 -0800,1254,3811 -5486,2639,2013-11-10 09:59:14 -0800,1254,3808 -5487,8386,2013-11-12 20:43:01 -0800,1254,3809 -5488,3450,2013-11-07 05:20:25 -0800,1256,3817 -5489,5300,2013-11-11 01:50:21 -0800,1256,3816 -5490,8689,2013-11-06 23:04:26 -0800,1256,3816 -5491,6409,2013-11-12 06:15:28 -0800,1256,3816 -5492,3722,2013-11-10 01:10:52 -0800,1256,3817 -5493,2785,2013-11-12 15:24:08 -0800,1256,3816 -5494,6043,2013-11-06 11:21:43 -0800,1257,3819 -5495,5070,2013-11-06 22:45:17 -0800,1257,3819 -5496,8446,2013-11-12 18:10:43 -0800,1258,3822 -5497,3900,2013-11-08 15:46:03 -0800,1258,3822 -5498,7250,2013-11-11 02:54:23 -0800,1258,3822 -5499,6473,2013-11-13 01:23:16 -0800,1258,3822 -5500,7130,2013-11-12 06:24:27 -0800,1258,3822 -5501,2294,2013-11-10 21:46:09 -0800,1258,3820 -5502,3750,2013-11-10 01:33:47 -0800,1259,3823 -5503,7259,2013-11-09 17:41:57 -0800,1259,3823 -5504,6437,2013-11-07 23:54:02 -0800,1259,3823 -5505,6580,2013-11-09 05:09:22 -0800,1259,3823 -5506,6119,2013-11-09 15:36:27 -0800,1259,3823 -5507,3854,2013-11-12 08:11:55 -0800,1260,3826 -5508,3442,2013-11-07 08:43:51 -0800,1262,3835 -5509,9489,2013-11-11 17:32:29 -0800,1262,3835 -5510,5278,2013-11-07 22:12:46 -0800,1262,3834 -5511,9073,2013-11-07 06:45:36 -0800,1262,3834 -5512,5835,2013-11-07 03:43:01 -0800,1262,3835 -5513,9211,2013-11-10 17:18:57 -0800,1263,3836 -5514,1123,2013-11-10 12:26:05 -0800,1263,3836 -5515,4583,2013-11-06 17:06:17 -0800,1263,3836 -5516,8466,2013-11-12 16:46:03 -0800,1263,3836 -5517,6169,2013-11-08 05:06:43 -0800,1263,3836 -5518,5692,2013-11-07 06:52:07 -0800,1263,3836 -5519,3192,2013-11-08 07:38:32 -0800,1263,3836 -5520,5990,2013-11-09 07:30:00 -0800,1263,3836 -5521,9584,2013-11-11 11:43:05 -0800,1264,3837 -5522,3860,2013-11-09 01:05:04 -0800,1264,3840 -5523,8290,2013-11-10 00:15:18 -0800,1264,3839 -5524,9724,2013-11-12 21:04:20 -0800,1264,3840 -5525,6440,2013-11-09 05:06:39 -0800,1264,3840 -5526,8325,2013-11-10 21:51:19 -0800,1264,3837 -5527,1274,2013-11-11 07:47:52 -0800,1264,3840 -5528,9479,2013-11-12 07:50:52 -0800,1264,3838 -5529,4024,2013-11-13 00:58:10 -0800,1265,3841 -5530,7672,2013-11-10 12:30:44 -0800,1265,3841 -5531,4330,2013-11-13 01:53:50 -0800,1265,3841 -5532,9027,2013-11-07 18:30:45 -0800,1265,3841 -5533,4746,2013-11-07 17:34:09 -0800,1265,3841 -5534,1684,2013-11-11 15:42:50 -0800,1265,3841 -5535,6939,2013-11-10 14:00:34 -0800,1265,3841 -5536,6153,2013-11-09 20:26:53 -0800,1265,3841 -5537,6327,2013-11-11 02:41:45 -0800,1266,3842 -5538,3670,2013-11-13 07:05:03 -0800,1267,3843 -5539,1136,2013-11-07 01:03:13 -0800,1267,3843 -5540,8996,2013-11-12 22:50:59 -0800,1267,3844 -5541,2598,2013-11-10 02:03:05 -0800,1267,3844 -5542,6154,2013-11-07 12:03:56 -0800,1267,3844 -5543,4713,2013-11-07 16:52:16 -0800,1268,3845 -5544,4837,2013-11-10 05:00:18 -0800,1268,3845 -5545,3247,2013-11-11 11:31:16 -0800,1268,3845 -5546,3311,2013-11-11 01:24:54 -0800,1268,3845 -5547,2810,2013-11-10 20:34:39 -0800,1268,3846 -5548,7329,2013-11-10 06:30:39 -0800,1268,3846 -5549,2220,2013-11-07 20:11:59 -0800,1269,3850 -5550,3040,2013-11-08 18:14:23 -0800,1269,3849 -5551,8955,2013-11-09 03:37:03 -0800,1269,3848 -5552,1185,2013-11-08 14:54:57 -0800,1269,3848 -5553,1647,2013-11-08 18:34:49 -0800,1269,3849 -5554,4870,2013-11-12 14:00:35 -0800,1270,3853 -5555,686,2013-11-06 22:12:44 -0800,1271,3856 -5556,2083,2013-11-09 18:20:11 -0800,1271,3855 -5557,2549,2013-11-06 18:27:05 -0800,1271,3856 -5558,7892,2013-11-12 13:33:40 -0800,1271,3854 -5559,3743,2013-11-08 04:43:00 -0800,1271,3857 -5560,4692,2013-11-13 02:46:51 -0800,1271,3854 -5561,6134,2013-11-10 08:38:29 -0800,1271,3854 -5562,1342,2013-11-12 19:37:45 -0800,1271,3855 -5563,4880,2013-11-13 07:20:52 -0800,1273,3861 -5564,5022,2013-11-08 00:44:07 -0800,1273,3862 -5565,310,2013-11-09 03:03:24 -0800,1274,3865 -5566,616,2013-11-10 08:51:08 -0800,1274,3866 -5567,3064,2013-11-10 03:59:47 -0800,1274,3867 -5568,8156,2013-11-08 22:05:00 -0800,1274,3868 -5569,3185,2013-11-06 11:56:50 -0800,1274,3867 -5570,5550,2013-11-06 23:59:51 -0800,1274,3868 -5571,8551,2013-11-10 16:26:59 -0800,1274,3867 -5572,3489,2013-11-10 00:44:35 -0800,1274,3868 -5573,1814,2013-11-13 02:04:12 -0800,1274,3867 -5574,9023,2013-11-09 11:08:45 -0800,1275,3871 -5575,3234,2013-11-12 21:45:17 -0800,1275,3870 -5576,1190,2013-11-07 23:19:21 -0800,1275,3872 -5577,8740,2013-11-08 01:52:31 -0800,1275,3872 -5578,3819,2013-11-08 08:27:36 -0800,1275,3871 -5579,1835,2013-11-12 11:54:40 -0800,1276,3873 -5580,1861,2013-11-12 01:18:40 -0800,1276,3874 -5581,5240,2013-11-07 00:33:15 -0800,1276,3874 -5582,2484,2013-11-06 16:56:41 -0800,1278,3882 -5583,5222,2013-11-10 03:20:54 -0800,1278,3880 -5584,7894,2013-11-11 00:29:32 -0800,1278,3882 -5585,7339,2013-11-10 04:03:56 -0800,1278,3882 -5586,4783,2013-11-07 18:02:13 -0800,1278,3879 -5587,89,2013-11-08 14:45:05 -0800,1278,3882 -5588,5147,2013-11-12 15:32:00 -0800,1278,3880 -5589,4336,2013-11-08 08:44:46 -0800,1278,3883 -5590,9267,2013-11-11 21:52:31 -0800,1278,3880 -5591,7242,2013-11-12 06:05:12 -0800,1279,3886 -5592,3081,2013-11-11 17:46:17 -0800,1279,3884 -5593,4573,2013-11-10 15:41:32 -0800,1279,3884 -5594,3296,2013-11-11 21:24:51 -0800,1279,3888 -5595,4859,2013-11-12 17:19:10 -0800,1279,3885 -5596,1235,2013-11-09 00:55:10 -0800,1279,3884 -5597,6277,2013-11-08 16:53:57 -0800,1279,3888 -5598,6966,2013-11-07 05:57:08 -0800,1279,3886 -5599,1812,2013-11-09 22:03:34 -0800,1280,3889 -5600,4052,2013-11-11 08:52:48 -0800,1280,3889 -5601,2954,2013-11-09 20:54:03 -0800,1280,3889 -5602,3240,2013-11-10 03:22:03 -0800,1280,3889 -5603,9246,2013-11-11 21:15:52 -0800,1280,3889 -5604,2288,2013-11-09 16:36:37 -0800,1281,3890 -5605,6542,2013-11-10 15:28:11 -0800,1281,3891 -5606,3778,2013-11-11 13:03:41 -0800,1283,3897 -5607,6852,2013-11-09 06:51:05 -0800,1283,3898 -5608,639,2013-11-09 04:47:13 -0800,1283,3899 -5609,2375,2013-11-12 13:24:32 -0800,1283,3898 -5610,2631,2013-11-12 01:58:56 -0800,1283,3897 -5611,7180,2013-11-07 14:16:19 -0800,1283,3897 -5612,6021,2013-11-07 05:01:54 -0800,1283,3897 -5613,4025,2013-11-11 01:36:47 -0800,1283,3898 -5614,7677,2013-11-07 02:41:43 -0800,1283,3898 -5615,8282,2013-11-11 11:05:12 -0800,1284,3902 -5616,8090,2013-11-12 21:37:16 -0800,1284,3901 -5617,7178,2013-11-06 16:41:41 -0800,1284,3902 -5618,8513,2013-11-12 23:30:52 -0800,1284,3902 -5619,6695,2013-11-09 17:15:46 -0800,1284,3901 -5620,5840,2013-11-09 22:48:36 -0800,1284,3902 -5621,8464,2013-11-12 04:42:59 -0800,1284,3902 -5622,3190,2013-11-13 07:44:36 -0800,1284,3902 -5623,5670,2013-11-08 00:34:56 -0800,1285,3904 -5624,1470,2013-11-10 18:40:36 -0800,1285,3903 -5625,1623,2013-11-10 06:46:38 -0800,1285,3903 -5626,8078,2013-11-11 08:32:56 -0800,1285,3904 -5627,7180,2013-11-09 01:00:08 -0800,1285,3904 -5628,7698,2013-11-10 19:53:54 -0800,1285,3903 -5629,983,2013-11-11 02:47:48 -0800,1285,3903 -5630,5328,2013-11-07 20:09:20 -0800,1285,3903 -5631,3413,2013-11-10 23:04:15 -0800,1285,3903 -5632,3177,2013-11-06 11:41:14 -0800,1286,3905 -5633,4160,2013-11-10 09:59:35 -0800,1286,3905 -5634,8646,2013-11-08 06:04:18 -0800,1286,3905 -5635,2187,2013-11-12 10:54:29 -0800,1286,3905 -5636,8265,2013-11-11 05:58:32 -0800,1286,3905 -5637,6965,2013-11-08 10:44:06 -0800,1286,3905 -5638,9237,2013-11-08 16:31:53 -0800,1286,3905 -5639,1429,2013-11-08 08:55:21 -0800,1286,3905 -5640,257,2013-11-12 12:29:34 -0800,1287,3906 -5641,1474,2013-11-08 11:19:12 -0800,1287,3907 -5642,8073,2013-11-07 18:36:14 -0800,1287,3907 -5643,289,2013-11-08 13:18:54 -0800,1287,3906 -5644,5964,2013-11-08 10:15:59 -0800,1287,3907 -5645,6478,2013-11-07 04:26:41 -0800,1288,3909 -5646,300,2013-11-09 08:58:19 -0800,1288,3908 -5647,9666,2013-11-12 19:03:49 -0800,1288,3910 -5648,1072,2013-11-12 13:23:35 -0800,1288,3910 -5649,6556,2013-11-07 21:46:14 -0800,1288,3909 -5650,7427,2013-11-12 14:07:05 -0800,1288,3909 -5651,1360,2013-11-10 23:43:36 -0800,1289,3911 -5652,3116,2013-11-10 09:50:06 -0800,1290,3915 -5653,4218,2013-11-08 04:11:12 -0800,1290,3914 -5654,5370,2013-11-10 18:32:29 -0800,1290,3914 -5655,175,2013-11-10 08:37:38 -0800,1290,3914 -5656,2222,2013-11-10 06:11:18 -0800,1290,3914 -5657,1622,2013-11-07 04:38:48 -0800,1291,3916 -5658,5350,2013-11-08 17:58:01 -0800,1291,3916 -5659,5030,2013-11-07 02:27:21 -0800,1291,3916 -5660,8412,2013-11-07 19:29:57 -0800,1291,3916 -5661,6541,2013-11-09 20:08:27 -0800,1292,3921 -5662,7780,2013-11-12 03:49:17 -0800,1292,3918 -5663,7613,2013-11-11 09:16:34 -0800,1292,3919 -5664,4597,2013-11-12 16:31:10 -0800,1292,3921 -5665,9026,2013-11-11 21:32:29 -0800,1292,3918 -5666,4311,2013-11-11 22:00:11 -0800,1292,3920 -5667,3775,2013-11-07 12:30:13 -0800,1292,3921 -5668,8247,2013-11-10 00:03:42 -0800,1292,3921 -5669,5658,2013-11-11 07:42:26 -0800,1292,3920 -5670,4320,2013-11-08 06:25:36 -0800,1293,3925 -5671,5026,2013-11-12 05:45:31 -0800,1293,3925 -5672,7618,2013-11-09 17:26:13 -0800,1294,3928 -5673,1657,2013-11-08 19:08:42 -0800,1294,3929 -5674,4161,2013-11-06 17:38:09 -0800,1294,3928 -5675,5510,2013-11-08 01:19:00 -0800,1294,3930 -5676,8587,2013-11-12 12:01:17 -0800,1294,3929 -5677,2610,2013-11-10 16:13:43 -0800,1294,3927 -5678,2363,2013-11-06 10:17:18 -0800,1295,3936 -5679,4024,2013-11-06 14:23:50 -0800,1295,3936 -5680,6788,2013-11-12 04:32:47 -0800,1295,3932 -5681,2850,2013-11-06 16:25:10 -0800,1296,3938 -5682,4520,2013-11-09 06:47:24 -0800,1296,3941 -5683,4154,2013-11-12 05:22:04 -0800,1296,3937 -5684,3629,2013-11-13 04:07:39 -0800,1296,3937 -5685,2339,2013-11-10 17:26:37 -0800,1296,3938 -5686,7014,2013-11-07 08:38:42 -0800,1296,3937 -5687,6447,2013-11-08 17:55:15 -0800,1296,3940 -5688,570,2013-11-07 20:13:58 -0800,1298,3944 -5689,8771,2013-11-08 09:49:05 -0800,1298,3946 -5690,4275,2013-11-09 15:19:33 -0800,1299,3951 -5691,7677,2013-11-12 16:33:14 -0800,1299,3949 -5692,1186,2013-11-11 09:36:36 -0800,1299,3949 -5693,353,2013-11-08 07:20:15 -0800,1299,3951 -5694,3852,2013-11-08 20:10:13 -0800,1299,3949 -5695,3411,2013-11-07 12:21:21 -0800,1299,3951 -5696,1240,2013-11-11 21:21:39 -0800,1299,3951 -5697,2987,2013-11-08 14:22:11 -0800,1300,3954 -5698,8498,2013-11-12 06:31:28 -0800,1300,3952 -5699,8910,2013-11-12 18:52:35 -0800,1300,3954 -5700,867,2013-11-12 14:42:26 -0800,1300,3952 -5701,5698,2013-11-06 12:32:30 -0800,1300,3953 -5702,4773,2013-11-08 05:24:55 -0800,1300,3953 -5703,2676,2013-11-11 18:09:06 -0800,1301,3955 -5704,4880,2013-11-07 11:13:59 -0800,1301,3955 -5705,1058,2013-11-09 20:28:41 -0800,1301,3955 -5706,9578,2013-11-10 14:05:10 -0800,1301,3955 -5707,6750,2013-11-07 22:08:18 -0800,1302,3956 -5708,3267,2013-11-10 02:43:07 -0800,1302,3956 -5709,8486,2013-11-09 12:09:41 -0800,1302,3956 -5710,1620,2013-11-08 16:59:23 -0800,1302,3956 -5711,8974,2013-11-11 05:06:43 -0800,1302,3956 -5712,5332,2013-11-08 03:03:00 -0800,1302,3957 -5713,8125,2013-11-09 13:20:59 -0800,1302,3956 -5714,279,2013-11-10 03:43:54 -0800,1302,3958 -5715,7393,2013-11-11 01:57:03 -0800,1303,3960 -5716,2499,2013-11-07 13:53:01 -0800,1303,3959 -5717,3429,2013-11-07 05:42:34 -0800,1303,3961 -5718,749,2013-11-09 13:59:00 -0800,1303,3960 -5719,295,2013-11-06 23:43:42 -0800,1304,3963 -5720,6773,2013-11-09 22:03:56 -0800,1305,3966 -5721,8287,2013-11-09 14:26:48 -0800,1306,3970 -5722,3897,2013-11-11 14:48:07 -0800,1306,3969 -5723,9541,2013-11-08 05:37:52 -0800,1306,3968 -5724,1367,2013-11-08 19:28:32 -0800,1306,3969 -5725,4676,2013-11-07 19:08:09 -0800,1306,3968 -5726,1553,2013-11-11 01:13:51 -0800,1307,3973 -5727,5455,2013-11-07 22:17:12 -0800,1307,3971 -5728,8439,2013-11-12 06:34:43 -0800,1307,3974 -5729,8333,2013-11-12 01:54:28 -0800,1307,3974 -5730,4413,2013-11-09 12:15:11 -0800,1307,3972 -5731,7690,2013-11-12 11:21:16 -0800,1307,3971 -5732,6291,2013-11-09 14:08:11 -0800,1307,3974 -5733,8934,2013-11-12 15:13:07 -0800,1307,3971 -5734,128,2013-11-07 19:18:46 -0800,1308,3976 -5735,1275,2013-11-10 05:16:35 -0800,1308,3976 -5736,5981,2013-11-06 11:55:59 -0800,1308,3977 -5737,2898,2013-11-08 18:10:53 -0800,1308,3976 -5738,2295,2013-11-09 23:19:12 -0800,1308,3977 -5739,112,2013-11-12 15:48:13 -0800,1309,3979 -5740,8981,2013-11-12 04:29:14 -0800,1309,3979 -5741,5910,2013-11-10 20:19:06 -0800,1309,3979 -5742,1863,2013-11-10 22:58:17 -0800,1309,3979 -5743,9623,2013-11-08 21:59:00 -0800,1309,3979 -5744,7148,2013-11-12 03:40:36 -0800,1309,3979 -5745,3174,2013-11-09 01:31:40 -0800,1309,3979 -5746,3390,2013-11-11 16:46:48 -0800,1310,3984 -5747,3740,2013-11-07 13:40:13 -0800,1310,3984 -5748,9244,2013-11-08 01:22:01 -0800,1310,3983 -5749,6745,2013-11-09 23:42:43 -0800,1310,3982 -5750,6853,2013-11-09 14:32:14 -0800,1312,3990 -5751,673,2013-11-08 02:18:30 -0800,1312,3991 -5752,1513,2013-11-11 23:20:36 -0800,1312,3989 -5753,8688,2013-11-07 03:36:21 -0800,1312,3990 -5754,6777,2013-11-10 03:58:14 -0800,1312,3990 -5755,2222,2013-11-09 03:22:02 -0800,1312,3991 -5756,6195,2013-11-09 17:07:00 -0800,1313,3994 -5757,7080,2013-11-08 00:49:18 -0800,1313,3996 -5758,7086,2013-11-09 17:16:07 -0800,1313,3993 -5759,890,2013-11-08 05:32:38 -0800,1313,3993 -5760,3656,2013-11-12 21:09:13 -0800,1313,3995 -5761,5578,2013-11-09 00:01:40 -0800,1313,3993 -5762,1452,2013-11-08 07:38:04 -0800,1313,3992 -5763,9372,2013-11-07 06:03:45 -0800,1314,4000 -5764,7898,2013-11-10 17:18:30 -0800,1314,3999 -5765,8746,2013-11-10 15:43:42 -0800,1314,3999 -5766,7559,2013-11-12 00:13:28 -0800,1315,4004 -5767,6299,2013-11-11 08:15:41 -0800,1315,4001 -5768,1663,2013-11-10 14:14:20 -0800,1315,4004 -5769,5993,2013-11-08 23:02:19 -0800,1315,4001 -5770,1527,2013-11-07 05:09:39 -0800,1315,4003 -5771,6276,2013-11-10 10:03:10 -0800,1315,4004 -5772,7294,2013-11-10 02:21:37 -0800,1316,4007 -5773,1540,2013-11-11 14:26:51 -0800,1316,4005 -5774,7564,2013-11-10 10:14:42 -0800,1316,4008 -5775,8910,2013-11-11 12:45:28 -0800,1317,4012 -5776,1434,2013-11-10 07:40:20 -0800,1317,4012 -5777,4273,2013-11-07 07:00:15 -0800,1317,4009 -5778,8767,2013-11-12 19:21:52 -0800,1317,4010 -5779,1457,2013-11-12 20:08:00 -0800,1317,4009 -5780,9773,2013-11-07 14:43:38 -0800,1317,4009 -5781,8361,2013-11-10 13:10:14 -0800,1318,4014 -5782,8039,2013-11-08 00:52:31 -0800,1318,4013 -5783,6681,2013-11-09 11:25:09 -0800,1318,4014 -5784,8170,2013-11-07 00:28:33 -0800,1318,4013 -5785,2397,2013-11-06 18:10:25 -0800,1318,4014 -5786,2510,2013-11-07 21:58:18 -0800,1318,4013 -5787,8785,2013-11-09 04:47:12 -0800,1318,4014 -5788,9143,2013-11-06 21:42:08 -0800,1318,4014 -5789,5244,2013-11-09 00:26:21 -0800,1318,4013 -5790,5321,2013-11-11 12:06:59 -0800,1319,4015 -5791,3156,2013-11-11 15:33:38 -0800,1319,4015 -5792,5726,2013-11-11 09:23:36 -0800,1319,4015 -5793,6858,2013-11-12 18:41:43 -0800,1319,4015 -5794,2465,2013-11-08 13:45:00 -0800,1319,4015 -5795,792,2013-11-11 04:37:06 -0800,1319,4015 -5796,5345,2013-11-08 22:56:53 -0800,1319,4015 -5797,1314,2013-11-06 20:47:51 -0800,1319,4015 -5798,4430,2013-11-10 23:32:04 -0800,1320,4017 -5799,8250,2013-11-09 19:40:33 -0800,1320,4017 -5800,4320,2013-11-08 00:29:54 -0800,1321,4018 -5801,7118,2013-11-11 22:41:51 -0800,1321,4020 -5802,2979,2013-11-08 15:51:46 -0800,1321,4019 -5803,7527,2013-11-10 14:18:35 -0800,1321,4020 -5804,4831,2013-11-08 22:36:09 -0800,1321,4020 -5805,7962,2013-11-09 20:36:38 -0800,1321,4020 -5806,190,2013-11-07 08:31:01 -0800,1321,4020 -5807,4628,2013-11-08 07:43:55 -0800,1322,4021 -5808,6388,2013-11-10 08:08:53 -0800,1322,4021 -5809,789,2013-11-06 14:03:24 -0800,1323,4022 -5810,7297,2013-11-08 02:09:09 -0800,1323,4023 -5811,676,2013-11-09 07:47:33 -0800,1323,4023 -5812,5052,2013-11-12 06:08:57 -0800,1324,4025 -5813,6581,2013-11-09 09:17:40 -0800,1324,4028 -5814,5197,2013-11-08 08:24:18 -0800,1324,4027 -5815,983,2013-11-11 12:24:53 -0800,1324,4024 -5816,1159,2013-11-06 16:06:42 -0800,1325,4030 -5817,4025,2013-11-08 14:33:31 -0800,1325,4030 -5818,3997,2013-11-08 09:36:10 -0800,1325,4029 -5819,8592,2013-11-12 23:38:56 -0800,1325,4030 -5820,8091,2013-11-13 03:10:29 -0800,1325,4029 -5821,139,2013-11-07 10:28:54 -0800,1325,4030 -5822,1964,2013-11-08 03:34:49 -0800,1325,4029 -5823,4921,2013-11-08 08:40:42 -0800,1325,4029 -5824,7815,2013-11-08 12:07:00 -0800,1326,4031 -5825,4680,2013-11-07 13:38:52 -0800,1326,4033 -5826,9153,2013-11-10 12:06:11 -0800,1326,4033 -5827,8426,2013-11-06 13:53:09 -0800,1326,4032 -5828,1441,2013-11-09 21:51:51 -0800,1326,4033 -5829,4853,2013-11-11 10:04:24 -0800,1327,4034 -5830,963,2013-11-08 19:59:25 -0800,1327,4034 -5831,3867,2013-11-10 13:18:28 -0800,1327,4034 -5832,3436,2013-11-08 10:00:46 -0800,1327,4034 -5833,8483,2013-11-12 01:06:56 -0800,1328,4036 -5834,3665,2013-11-06 16:54:24 -0800,1328,4035 -5835,3877,2013-11-12 20:53:35 -0800,1328,4036 -5836,2268,2013-11-07 12:03:28 -0800,1328,4038 -5837,4957,2013-11-10 12:09:15 -0800,1328,4036 -5838,3831,2013-11-08 09:28:48 -0800,1328,4038 -5839,7620,2013-11-07 01:29:09 -0800,1328,4037 -5840,9277,2013-11-11 04:21:36 -0800,1328,4038 -5841,3472,2013-11-06 09:42:49 -0800,1328,4037 -5842,9155,2013-11-12 08:22:19 -0800,1329,4039 -5843,6487,2013-11-07 23:29:52 -0800,1329,4040 -5844,8465,2013-11-07 01:51:53 -0800,1329,4042 -5845,4118,2013-11-09 09:33:04 -0800,1331,4045 -5846,6290,2013-11-08 11:39:23 -0800,1331,4046 -5847,5910,2013-11-08 13:53:33 -0800,1331,4047 -5848,2498,2013-11-12 20:29:44 -0800,1331,4046 -5849,1613,2013-11-11 23:24:28 -0800,1332,4048 -5850,8858,2013-11-12 10:54:45 -0800,1332,4049 -5851,6745,2013-11-09 18:40:02 -0800,1332,4048 -5852,3540,2013-11-10 16:14:15 -0800,1332,4049 -5853,2322,2013-11-10 22:09:41 -0800,1332,4048 -5854,5866,2013-11-06 18:16:59 -0800,1332,4048 -5855,1234,2013-11-10 23:48:55 -0800,1332,4048 -5856,5590,2013-11-12 11:24:12 -0800,1332,4049 -5857,9717,2013-11-06 09:10:14 -0800,1333,4051 -5858,3170,2013-11-08 23:31:59 -0800,1333,4051 -5859,5519,2013-11-07 13:28:40 -0800,1333,4051 -5860,2761,2013-11-10 19:18:05 -0800,1333,4050 -5861,4335,2013-11-09 17:59:43 -0800,1333,4050 -5862,3081,2013-11-08 21:00:40 -0800,1333,4051 -5863,1519,2013-11-12 08:48:12 -0800,1333,4051 -5864,3750,2013-11-06 09:19:40 -0800,1333,4051 -5865,4043,2013-11-10 06:34:35 -0800,1333,4051 -5866,4071,2013-11-09 15:47:21 -0800,1334,4053 -5867,7595,2013-11-09 09:56:30 -0800,1334,4054 -5868,3067,2013-11-11 03:37:52 -0800,1334,4053 -5869,4017,2013-11-08 22:31:54 -0800,1334,4054 -5870,3814,2013-11-06 13:14:22 -0800,1334,4053 -5871,6228,2013-11-11 18:25:11 -0800,1334,4052 -5872,3760,2013-11-08 20:25:45 -0800,1334,4052 -5873,1664,2013-11-10 03:26:10 -0800,1334,4053 -5874,7641,2013-11-07 18:39:10 -0800,1334,4052 -5875,3442,2013-11-12 01:29:15 -0800,1335,4055 -5876,1619,2013-11-07 08:45:07 -0800,1335,4055 -5877,7434,2013-11-10 08:21:36 -0800,1335,4055 -5878,4265,2013-11-09 20:25:33 -0800,1335,4055 -5879,5357,2013-11-10 03:38:02 -0800,1335,4055 -5880,6586,2013-11-13 01:26:41 -0800,1335,4055 -5881,9020,2013-11-07 19:51:35 -0800,1335,4055 -5882,8321,2013-11-09 09:08:31 -0800,1335,4055 -5883,9085,2013-11-06 15:07:28 -0800,1335,4055 -5884,3579,2013-11-09 18:12:57 -0800,1337,4063 -5885,6351,2013-11-08 09:14:36 -0800,1337,4060 -5886,9277,2013-11-09 22:37:36 -0800,1337,4062 -5887,6180,2013-11-07 16:47:55 -0800,1338,4068 -5888,3467,2013-11-09 15:33:47 -0800,1338,4064 -5889,1866,2013-11-11 20:55:02 -0800,1338,4065 -5890,6072,2013-11-11 11:47:26 -0800,1339,4069 -5891,9428,2013-11-11 10:43:48 -0800,1339,4069 -5892,7379,2013-11-08 07:19:12 -0800,1339,4069 -5893,142,2013-11-12 20:11:15 -0800,1339,4069 -5894,4913,2013-11-09 12:23:09 -0800,1339,4069 -5895,9874,2013-11-07 15:48:17 -0800,1339,4069 -5896,6770,2013-11-12 04:00:52 -0800,1339,4069 -5897,6097,2013-11-08 05:39:23 -0800,1340,4070 -5898,1578,2013-11-06 08:42:09 -0800,1340,4073 -5899,2583,2013-11-07 04:24:09 -0800,1340,4070 -5900,6461,2013-11-10 05:42:15 -0800,1340,4072 -5901,4085,2013-11-06 08:53:23 -0800,1340,4070 -5902,6336,2013-11-08 12:39:48 -0800,1340,4072 -5903,2775,2013-11-09 01:55:05 -0800,1340,4070 -5904,3688,2013-11-11 08:35:08 -0800,1341,4076 -5905,4744,2013-11-09 00:22:12 -0800,1341,4075 -5906,8955,2013-11-07 15:47:03 -0800,1341,4076 -5907,2737,2013-11-13 04:03:01 -0800,1342,4077 -5908,4968,2013-11-06 11:06:17 -0800,1342,4077 -5909,6752,2013-11-10 09:02:17 -0800,1343,4078 -5910,4810,2013-11-11 21:48:49 -0800,1343,4079 -5911,9710,2013-11-11 18:48:47 -0800,1343,4078 -5912,721,2013-11-06 11:36:54 -0800,1343,4079 -5913,3992,2013-11-08 22:34:22 -0800,1344,4080 -5914,1190,2013-11-13 02:47:37 -0800,1344,4080 -5915,7909,2013-11-12 22:09:51 -0800,1344,4081 -5916,7331,2013-11-07 06:40:04 -0800,1344,4080 -5917,8585,2013-11-08 12:05:13 -0800,1344,4081 -5918,9618,2013-11-11 01:38:57 -0800,1346,4083 -5919,5668,2013-11-06 08:55:30 -0800,1346,4083 -5920,9044,2013-11-08 23:12:46 -0800,1346,4083 -5921,2028,2013-11-09 13:07:30 -0800,1346,4083 -5922,4410,2013-11-07 19:31:42 -0800,1346,4084 -5923,479,2013-11-12 00:56:44 -0800,1346,4083 -5924,5058,2013-11-10 08:43:44 -0800,1346,4084 -5925,7431,2013-11-07 20:01:19 -0800,1346,4083 -5926,3277,2013-11-09 02:29:08 -0800,1346,4084 -5927,138,2013-11-11 20:07:34 -0800,1347,4085 -5928,6290,2013-11-13 07:31:29 -0800,1347,4087 -5929,9355,2013-11-08 01:08:02 -0800,1348,4089 -5930,9243,2013-11-11 14:38:43 -0800,1348,4089 -5931,3010,2013-11-07 11:52:07 -0800,1348,4089 -5932,9040,2013-11-09 23:08:56 -0800,1348,4089 -5933,1310,2013-11-08 14:50:06 -0800,1349,4091 -5934,9784,2013-11-09 16:36:12 -0800,1349,4090 -5935,1784,2013-11-12 21:28:46 -0800,1350,4092 -5936,2830,2013-11-10 16:26:04 -0800,1350,4093 -5937,4866,2013-11-11 21:18:39 -0800,1350,4095 -5938,8250,2013-11-10 18:49:17 -0800,1350,4095 -5939,8397,2013-11-08 05:46:27 -0800,1350,4092 -5940,3194,2013-11-06 23:43:31 -0800,1350,4094 -5941,9492,2013-11-09 23:02:03 -0800,1350,4094 -5942,3672,2013-11-12 20:17:14 -0800,1350,4095 -5943,7417,2013-11-08 23:14:01 -0800,1351,4100 -5944,5464,2013-11-06 11:24:19 -0800,1351,4100 -5945,6990,2013-11-08 13:30:17 -0800,1351,4096 -5946,6834,2013-11-08 17:43:30 -0800,1351,4096 -5947,6891,2013-11-12 11:18:06 -0800,1353,4105 -5948,141,2013-11-12 06:52:37 -0800,1353,4105 -5949,9250,2013-11-07 15:16:45 -0800,1353,4105 -5950,5252,2013-11-12 07:33:04 -0800,1354,4106 -5951,1395,2013-11-12 05:54:46 -0800,1354,4107 -5952,1621,2013-11-07 02:45:07 -0800,1355,4109 -5953,9461,2013-11-10 07:18:24 -0800,1355,4108 -5954,5663,2013-11-07 21:10:10 -0800,1356,4112 -5955,4251,2013-11-09 02:09:08 -0800,1356,4112 -5956,9456,2013-11-11 03:57:17 -0800,1356,4112 -5957,4040,2013-11-11 13:41:27 -0800,1356,4113 -5958,2691,2013-11-09 22:32:30 -0800,1356,4110 -5959,3444,2013-11-10 22:11:54 -0800,1356,4113 -5960,1117,2013-11-12 19:00:52 -0800,1356,4110 -5961,1620,2013-11-11 19:16:53 -0800,1356,4111 -5962,476,2013-11-09 05:22:58 -0800,1357,4115 -5963,3886,2013-11-08 12:30:35 -0800,1357,4115 -5964,4265,2013-11-06 21:13:34 -0800,1357,4115 -5965,6390,2013-11-12 21:06:36 -0800,1357,4114 -5966,4522,2013-11-09 22:17:53 -0800,1357,4114 -5967,537,2013-11-07 15:48:08 -0800,1357,4114 -5968,7783,2013-11-10 04:39:47 -0800,1357,4114 -5969,8842,2013-11-07 19:16:06 -0800,1358,4118 -5970,1689,2013-11-13 02:23:09 -0800,1358,4116 -5971,47,2013-11-09 17:04:16 -0800,1358,4116 -5972,2544,2013-11-11 23:14:33 -0800,1359,4124 -5973,9229,2013-11-13 04:25:03 -0800,1360,4125 -5974,541,2013-11-08 11:00:44 -0800,1360,4127 -5975,4873,2013-11-09 15:30:35 -0800,1360,4127 -5976,7753,2013-11-12 18:34:29 -0800,1360,4128 -5977,3220,2013-11-10 01:26:34 -0800,1360,4128 -5978,566,2013-11-09 23:14:28 -0800,1360,4125 -5979,2825,2013-11-06 22:02:29 -0800,1361,4130 -5980,7279,2013-11-09 05:07:38 -0800,1361,4131 -5981,7664,2013-11-10 12:38:24 -0800,1361,4130 -5982,1886,2013-11-13 04:07:27 -0800,1361,4129 -5983,5713,2013-11-13 08:17:48 -0800,1362,4135 -5984,2647,2013-11-08 10:21:26 -0800,1362,4135 -5985,2117,2013-11-12 17:09:30 -0800,1363,4137 -5986,4836,2013-11-12 12:48:42 -0800,1363,4136 -5987,5620,2013-11-09 01:40:42 -0800,1363,4136 -5988,2929,2013-11-08 19:59:11 -0800,1363,4137 -5989,7148,2013-11-13 00:18:15 -0800,1363,4136 -5990,2257,2013-11-11 11:19:09 -0800,1363,4137 -5991,3720,2013-11-08 08:41:33 -0800,1363,4137 -5992,5622,2013-11-09 20:30:39 -0800,1363,4136 -5993,8120,2013-11-10 19:55:24 -0800,1363,4136 -5994,9224,2013-11-09 18:47:28 -0800,1364,4138 -5995,936,2013-11-12 08:42:16 -0800,1364,4138 -5996,4893,2013-11-11 22:48:25 -0800,1364,4138 -5997,8380,2013-11-09 06:00:05 -0800,1364,4138 -5998,846,2013-11-09 18:04:13 -0800,1364,4138 -5999,4449,2013-11-11 05:10:59 -0800,1364,4138 -6000,553,2013-11-08 07:18:05 -0800,1365,4141 -6001,3763,2013-11-11 12:33:54 -0800,1365,4142 -6002,9517,2013-11-09 11:09:48 -0800,1365,4140 -6003,1441,2013-11-07 15:02:29 -0800,1365,4140 -6004,859,2013-11-13 01:42:35 -0800,1365,4142 -6005,4863,2013-11-11 00:06:50 -0800,1366,4146 -6006,9048,2013-11-06 23:08:02 -0800,1366,4144 -6007,1084,2013-11-11 11:54:37 -0800,1366,4144 -6008,5250,2013-11-10 20:57:48 -0800,1366,4145 -6009,8854,2013-11-12 14:38:00 -0800,1366,4145 -6010,1380,2013-11-07 21:33:05 -0800,1367,4147 -6011,5526,2013-11-08 07:15:29 -0800,1367,4148 -6012,2576,2013-11-09 00:55:06 -0800,1367,4150 -6013,196,2013-11-12 13:43:46 -0800,1368,4151 -6014,6381,2013-11-06 21:06:00 -0800,1368,4151 -6015,2039,2013-11-12 00:23:44 -0800,1368,4151 -6016,5760,2013-11-08 10:52:35 -0800,1369,4153 -6017,3361,2013-11-09 20:42:54 -0800,1369,4154 -6018,3627,2013-11-13 01:18:02 -0800,1369,4153 -6019,9368,2013-11-09 20:27:33 -0800,1370,4158 -6020,385,2013-11-10 22:40:31 -0800,1370,4158 -6021,2329,2013-11-12 09:50:19 -0800,1370,4156 -6022,3360,2013-11-07 06:14:42 -0800,1370,4158 -6023,353,2013-11-08 12:29:45 -0800,1370,4156 -6024,8988,2013-11-10 15:25:19 -0800,1370,4157 -6025,817,2013-11-07 10:27:57 -0800,1371,4160 -6026,7527,2013-11-12 11:28:35 -0800,1371,4162 -6027,3997,2013-11-11 09:41:47 -0800,1371,4160 -6028,2954,2013-11-07 05:18:01 -0800,1371,4160 -6029,2086,2013-11-07 08:54:16 -0800,1371,4162 -6030,7709,2013-11-12 01:18:22 -0800,1371,4159 -6031,5968,2013-11-10 03:23:19 -0800,1371,4160 -6032,9523,2013-11-09 11:44:45 -0800,1371,4163 -6033,3936,2013-11-12 11:34:33 -0800,1371,4163 -6034,4567,2013-11-11 21:13:09 -0800,1372,4166 -6035,723,2013-11-11 02:01:08 -0800,1372,4164 -6036,3719,2013-11-10 11:13:31 -0800,1372,4166 -6037,8448,2013-11-06 22:36:26 -0800,1372,4166 -6038,1433,2013-11-11 02:17:50 -0800,1372,4164 -6039,6750,2013-11-07 12:46:23 -0800,1372,4168 -6040,6023,2013-11-13 04:59:31 -0800,1372,4167 -6041,7234,2013-11-08 13:47:06 -0800,1373,4173 -6042,9859,2013-11-11 16:49:50 -0800,1373,4169 -6043,3542,2013-11-10 14:19:41 -0800,1373,4169 -6044,4676,2013-11-13 07:19:29 -0800,1373,4171 -6045,3334,2013-11-10 06:29:23 -0800,1373,4171 -6046,192,2013-11-10 15:52:34 -0800,1373,4169 -6047,3310,2013-11-09 04:06:45 -0800,1373,4171 -6048,5190,2013-11-12 22:19:01 -0800,1373,4169 -6049,8391,2013-11-08 17:13:03 -0800,1373,4169 -6050,9672,2013-11-09 17:00:10 -0800,1375,4179 -6051,4720,2013-11-13 06:58:17 -0800,1375,4179 -6052,7470,2013-11-12 00:36:59 -0800,1376,4180 -6053,6731,2013-11-09 13:24:04 -0800,1377,4186 -6054,2957,2013-11-10 13:34:36 -0800,1377,4183 -6055,4730,2013-11-12 23:39:11 -0800,1377,4187 -6056,1264,2013-11-09 02:58:49 -0800,1377,4187 -6057,314,2013-11-13 01:49:00 -0800,1377,4186 -6058,8175,2013-11-06 10:46:13 -0800,1377,4187 -6059,1626,2013-11-13 07:02:15 -0800,1378,4188 -6060,5738,2013-11-10 14:44:07 -0800,1378,4190 -6061,4655,2013-11-13 02:12:01 -0800,1378,4189 -6062,172,2013-11-06 09:20:16 -0800,1378,4190 -6063,6600,2013-11-08 11:08:37 -0800,1378,4188 -6064,6279,2013-11-10 05:30:10 -0800,1378,4188 -6065,3434,2013-11-11 06:06:00 -0800,1378,4188 -6066,1789,2013-11-11 08:41:25 -0800,1379,4191 -6067,4928,2013-11-07 04:08:13 -0800,1381,4195 -6068,9566,2013-11-08 07:49:42 -0800,1381,4195 -6069,3625,2013-11-10 12:52:08 -0800,1381,4195 -6070,8692,2013-11-06 16:28:33 -0800,1381,4195 -6071,1675,2013-11-10 16:11:17 -0800,1381,4195 -6072,9126,2013-11-09 16:18:41 -0800,1381,4195 -6073,5860,2013-11-12 19:25:24 -0800,1381,4195 -6074,8262,2013-11-10 03:16:33 -0800,1381,4195 -6075,1429,2013-11-10 08:36:10 -0800,1382,4196 -6076,8570,2013-11-09 19:14:42 -0800,1382,4197 -6077,5371,2013-11-07 20:56:08 -0800,1382,4196 -6078,5630,2013-11-08 04:44:11 -0800,1382,4197 -6079,1435,2013-11-12 15:52:41 -0800,1382,4196 -6080,6997,2013-11-08 20:16:27 -0800,1382,4196 -6081,2467,2013-11-12 20:15:02 -0800,1383,4198 -6082,8063,2013-11-12 05:44:06 -0800,1383,4198 -6083,140,2013-11-08 12:28:01 -0800,1383,4198 -6084,2441,2013-11-08 03:41:28 -0800,1383,4199 -6085,7859,2013-11-13 03:03:04 -0800,1384,4202 -6086,1520,2013-11-08 20:21:11 -0800,1384,4204 -6087,7034,2013-11-11 10:39:01 -0800,1384,4201 -6088,1052,2013-11-08 08:40:09 -0800,1384,4200 -6089,8326,2013-11-06 15:10:15 -0800,1384,4202 -6090,8863,2013-11-07 17:07:49 -0800,1384,4204 -6091,9864,2013-11-08 08:11:45 -0800,1385,4205 -6092,6880,2013-11-09 12:03:02 -0800,1385,4205 -6093,6113,2013-11-12 07:30:51 -0800,1386,4209 -6094,2778,2013-11-06 18:39:30 -0800,1386,4207 -6095,9829,2013-11-10 20:54:30 -0800,1386,4208 -6096,673,2013-11-10 15:03:20 -0800,1386,4209 -6097,2578,2013-11-08 20:49:14 -0800,1387,4214 -6098,6680,2013-11-07 07:26:20 -0800,1387,4212 -6099,8194,2013-11-08 11:03:10 -0800,1387,4211 -6100,4540,2013-11-09 16:21:23 -0800,1387,4213 -6101,5619,2013-11-12 10:56:09 -0800,1387,4213 -6102,9254,2013-11-10 01:33:35 -0800,1387,4211 -6103,9000,2013-11-10 02:06:25 -0800,1387,4211 -6104,2932,2013-11-07 08:50:24 -0800,1388,4216 -6105,7491,2013-11-06 11:18:35 -0800,1388,4215 -6106,3610,2013-11-08 07:06:00 -0800,1388,4217 -6107,8952,2013-11-07 19:04:55 -0800,1388,4216 -6108,8969,2013-11-07 18:33:55 -0800,1388,4217 -6109,7169,2013-11-07 13:03:31 -0800,1388,4216 -6110,2536,2013-11-08 08:45:25 -0800,1389,4220 -6111,6158,2013-11-13 00:40:42 -0800,1390,4221 -6112,1957,2013-11-07 21:11:18 -0800,1390,4221 -6113,8267,2013-11-12 05:45:00 -0800,1390,4221 -6114,1964,2013-11-06 22:36:54 -0800,1390,4221 -6115,8009,2013-11-11 19:07:37 -0800,1390,4221 -6116,9890,2013-11-12 20:31:06 -0800,1390,4221 -6117,2182,2013-11-08 15:58:02 -0800,1390,4221 -6118,8621,2013-11-06 11:09:11 -0800,1390,4221 -6119,5270,2013-11-08 09:08:50 -0800,1391,4223 -6120,7277,2013-11-12 13:59:57 -0800,1391,4222 -6121,3327,2013-11-12 22:03:55 -0800,1391,4222 -6122,5770,2013-11-10 17:14:49 -0800,1392,4225 -6123,1550,2013-11-12 02:31:48 -0800,1393,4230 -6124,7054,2013-11-07 03:19:07 -0800,1393,4231 -6125,8317,2013-11-11 15:12:15 -0800,1393,4231 -6126,611,2013-11-06 12:43:18 -0800,1394,4233 -6127,162,2013-11-09 12:54:04 -0800,1394,4234 -6128,7752,2013-11-06 20:50:45 -0800,1394,4233 -6129,7638,2013-11-08 23:39:22 -0800,1394,4235 -6130,1713,2013-11-08 18:42:53 -0800,1394,4232 -6131,3472,2013-11-11 12:55:06 -0800,1394,4234 -6132,7936,2013-11-06 19:22:23 -0800,1394,4233 -6133,70,2013-11-12 16:07:50 -0800,1395,4241 -6134,9558,2013-11-11 11:06:11 -0800,1395,4239 -6135,1863,2013-11-07 00:46:50 -0800,1395,4238 -6136,3213,2013-11-08 08:41:57 -0800,1395,4240 -6137,8451,2013-11-11 09:05:12 -0800,1395,4240 -6138,810,2013-11-06 16:16:41 -0800,1395,4241 -6139,1466,2013-11-06 08:45:49 -0800,1395,4241 -6140,3878,2013-11-06 20:20:36 -0800,1395,4237 -6141,3020,2013-11-13 08:16:00 -0800,1396,4244 -6142,4880,2013-11-06 20:39:05 -0800,1396,4243 -6143,4730,2013-11-06 10:47:49 -0800,1396,4242 -6144,8521,2013-11-12 20:37:36 -0800,1396,4243 -6145,8137,2013-11-08 03:50:47 -0800,1396,4243 -6146,2266,2013-11-12 09:15:26 -0800,1396,4242 -6147,7612,2013-11-13 01:22:36 -0800,1397,4245 -6148,5375,2013-11-13 06:35:35 -0800,1397,4245 -6149,8614,2013-11-09 23:39:40 -0800,1397,4246 -6150,5693,2013-11-10 04:22:12 -0800,1397,4245 -6151,8198,2013-11-06 14:30:42 -0800,1397,4245 -6152,6989,2013-11-10 16:55:29 -0800,1398,4248 -6153,7362,2013-11-09 11:56:02 -0800,1399,4251 -6154,5413,2013-11-10 13:03:03 -0800,1399,4253 -6155,5543,2013-11-08 16:51:20 -0800,1399,4253 -6156,2571,2013-11-07 10:08:23 -0800,1399,4254 -6157,5049,2013-11-11 21:21:33 -0800,1400,4255 -6158,9638,2013-11-08 20:16:30 -0800,1400,4258 -6159,2185,2013-11-08 22:57:11 -0800,1400,4255 -6160,7944,2013-11-11 03:57:51 -0800,1400,4258 -6161,8280,2013-11-10 10:33:25 -0800,1400,4255 -6162,8477,2013-11-09 16:18:53 -0800,1400,4255 -6163,6164,2013-11-09 06:14:33 -0800,1400,4256 -6164,9864,2013-11-13 07:05:00 -0800,1400,4257 -6165,8858,2013-11-06 14:22:40 -0800,1401,4262 -6166,9578,2013-11-07 22:32:14 -0800,1401,4261 -6167,129,2013-11-09 04:36:27 -0800,1401,4260 -6168,2345,2013-11-13 00:18:39 -0800,1401,4262 -6169,8551,2013-11-10 04:58:48 -0800,1402,4265 -6170,4527,2013-11-09 16:45:57 -0800,1404,4272 -6171,1348,2013-11-08 12:18:53 -0800,1404,4272 -6172,9270,2013-11-11 10:15:24 -0800,1404,4272 -6173,2783,2013-11-09 16:07:49 -0800,1404,4272 -6174,2223,2013-11-08 21:55:49 -0800,1404,4273 -6175,2046,2013-11-10 02:05:03 -0800,1404,4273 -6176,8938,2013-11-10 19:51:31 -0800,1405,4276 -6177,1541,2013-11-12 23:47:40 -0800,1405,4278 -6178,8560,2013-11-13 05:55:29 -0800,1405,4278 -6179,9549,2013-11-06 11:43:08 -0800,1405,4275 -6180,1524,2013-11-08 03:08:48 -0800,1405,4277 -6181,217,2013-11-07 04:35:00 -0800,1405,4274 -6182,1398,2013-11-12 23:19:31 -0800,1406,4279 -6183,1646,2013-11-13 03:23:55 -0800,1406,4279 -6184,2410,2013-11-08 06:29:38 -0800,1406,4279 -6185,9441,2013-11-12 19:15:52 -0800,1406,4279 -6186,7563,2013-11-08 14:18:20 -0800,1406,4279 -6187,8730,2013-11-07 02:40:57 -0800,1406,4279 -6188,8095,2013-11-12 18:44:49 -0800,1406,4279 -6189,712,2013-11-06 22:05:05 -0800,1407,4281 -6190,1845,2013-11-07 07:53:57 -0800,1407,4280 -6191,9062,2013-11-09 04:08:13 -0800,1407,4281 -6192,7088,2013-11-09 14:35:33 -0800,1407,4281 -6193,8331,2013-11-07 21:55:42 -0800,1408,4284 -6194,6241,2013-11-10 15:47:30 -0800,1408,4284 -6195,7489,2013-11-07 15:37:36 -0800,1408,4283 -6196,4936,2013-11-09 13:23:36 -0800,1408,4284 -6197,1054,2013-11-10 06:11:35 -0800,1408,4284 -6198,1655,2013-11-12 13:34:34 -0800,1409,4285 -6199,8055,2013-11-10 17:36:40 -0800,1410,4286 -6200,9256,2013-11-12 15:33:05 -0800,1410,4286 -6201,3039,2013-11-08 13:30:57 -0800,1410,4287 -6202,7631,2013-11-11 14:05:25 -0800,1410,4290 -6203,8694,2013-11-13 01:21:52 -0800,1410,4289 -6204,7620,2013-11-06 12:47:00 -0800,1410,4287 -6205,3796,2013-11-07 11:17:48 -0800,1410,4286 -6206,5231,2013-11-08 15:16:24 -0800,1411,4295 -6207,8889,2013-11-10 02:24:44 -0800,1411,4291 -6208,3965,2013-11-10 05:21:41 -0800,1411,4291 -6209,3521,2013-11-10 20:22:32 -0800,1411,4294 -6210,6954,2013-11-11 02:22:27 -0800,1411,4294 -6211,8236,2013-11-10 17:13:23 -0800,1411,4295 -6212,5100,2013-11-11 05:40:15 -0800,1411,4291 -6213,6530,2013-11-11 00:31:08 -0800,1412,4296 -6214,7088,2013-11-10 16:15:11 -0800,1412,4296 -6215,3030,2013-11-11 21:39:57 -0800,1412,4296 -6216,5485,2013-11-10 10:15:09 -0800,1412,4296 -6217,8812,2013-11-10 22:45:40 -0800,1412,4296 -6218,8733,2013-11-09 07:45:56 -0800,1412,4296 -6219,2070,2013-11-13 06:38:58 -0800,1412,4296 -6220,955,2013-11-08 20:55:37 -0800,1412,4296 -6221,6594,2013-11-12 09:02:48 -0800,1413,4298 -6222,6050,2013-11-11 19:38:04 -0800,1413,4297 -6223,3474,2013-11-10 04:06:04 -0800,1413,4297 -6224,6242,2013-11-06 14:26:38 -0800,1413,4298 -6225,9265,2013-11-13 06:03:33 -0800,1413,4297 -6226,9760,2013-11-12 23:59:02 -0800,1413,4297 -6227,5811,2013-11-11 06:46:42 -0800,1413,4298 -6228,2874,2013-11-08 17:39:08 -0800,1413,4297 -6229,740,2013-11-09 09:18:08 -0800,1414,4301 -6230,3411,2013-11-10 05:21:13 -0800,1414,4301 -6231,4821,2013-11-12 03:27:40 -0800,1414,4300 -6232,4769,2013-11-11 04:44:58 -0800,1414,4301 -6233,494,2013-11-07 07:20:23 -0800,1415,4302 -6234,4641,2013-11-11 09:33:12 -0800,1415,4302 -6235,1337,2013-11-13 00:54:42 -0800,1415,4302 -6236,7559,2013-11-10 21:36:45 -0800,1415,4302 -6237,7616,2013-11-08 14:35:45 -0800,1415,4303 -6238,8168,2013-11-10 00:32:21 -0800,1416,4304 -6239,991,2013-11-06 19:19:54 -0800,1416,4304 -6240,8223,2013-11-07 12:32:30 -0800,1416,4304 -6241,9486,2013-11-09 05:16:17 -0800,1416,4304 -6242,9644,2013-11-10 19:09:34 -0800,1416,4304 -6243,7241,2013-11-06 08:41:33 -0800,1416,4304 -6244,6459,2013-11-10 19:01:41 -0800,1416,4304 -6245,4416,2013-11-10 13:26:05 -0800,1417,4305 -6246,2043,2013-11-07 00:54:13 -0800,1417,4305 -6247,3246,2013-11-11 07:38:31 -0800,1417,4306 -6248,5188,2013-11-10 06:10:40 -0800,1417,4305 -6249,7244,2013-11-08 21:02:19 -0800,1417,4305 -6250,9291,2013-11-09 02:27:34 -0800,1417,4305 -6251,9186,2013-11-12 20:57:52 -0800,1417,4305 -6252,8414,2013-11-06 14:50:47 -0800,1418,4307 -6253,2076,2013-11-09 22:02:17 -0800,1418,4307 -6254,4935,2013-11-09 00:56:32 -0800,1418,4308 -6255,4180,2013-11-11 08:06:30 -0800,1418,4307 -6256,3292,2013-11-09 06:56:54 -0800,1418,4307 -6257,8147,2013-11-11 15:22:42 -0800,1418,4308 -6258,6837,2013-11-08 02:42:09 -0800,1419,4310 -6259,9076,2013-11-11 06:11:54 -0800,1419,4309 -6260,379,2013-11-08 15:15:11 -0800,1419,4309 -6261,4115,2013-11-13 04:04:19 -0800,1419,4309 -6262,3011,2013-11-09 07:32:43 -0800,1419,4311 -6263,5693,2013-11-08 10:39:26 -0800,1419,4310 -6264,5858,2013-11-12 11:31:56 -0800,1419,4311 -6265,9690,2013-11-10 05:17:12 -0800,1420,4312 -6266,4589,2013-11-09 01:04:32 -0800,1420,4314 -6267,919,2013-11-12 12:52:38 -0800,1420,4312 -6268,7033,2013-11-10 14:06:30 -0800,1420,4314 -6269,4563,2013-11-10 12:55:39 -0800,1421,4315 -6270,7459,2013-11-06 19:57:10 -0800,1421,4315 -6271,8311,2013-11-09 21:03:39 -0800,1421,4315 -6272,9349,2013-11-11 05:32:04 -0800,1421,4315 -6273,770,2013-11-09 11:05:05 -0800,1421,4315 -6274,1616,2013-11-11 14:53:35 -0800,1421,4315 -6275,826,2013-11-10 17:12:28 -0800,1421,4315 -6276,5957,2013-11-07 22:46:52 -0800,1421,4315 -6277,4334,2013-11-10 23:53:54 -0800,1422,4317 -6278,4830,2013-11-10 03:44:02 -0800,1422,4317 -6279,6250,2013-11-11 11:43:24 -0800,1422,4317 -6280,6581,2013-11-07 14:45:29 -0800,1422,4316 -6281,7880,2013-11-07 21:30:49 -0800,1422,4317 -6282,5371,2013-11-12 03:10:34 -0800,1422,4317 -6283,9454,2013-11-07 06:51:57 -0800,1422,4316 -6284,1911,2013-11-08 18:51:02 -0800,1422,4316 -6285,4019,2013-11-06 12:54:51 -0800,1422,4318 -6286,7759,2013-11-12 07:33:12 -0800,1423,4319 -6287,3464,2013-11-12 12:30:44 -0800,1423,4319 -6288,6544,2013-11-07 18:04:07 -0800,1423,4320 -6289,6064,2013-11-06 16:13:11 -0800,1423,4320 -6290,198,2013-11-12 22:35:42 -0800,1423,4319 -6291,7266,2013-11-09 12:10:35 -0800,1423,4320 -6292,1271,2013-11-13 06:42:28 -0800,1423,4319 -6293,2133,2013-11-08 08:04:39 -0800,1423,4320 -6294,7479,2013-11-08 07:57:17 -0800,1424,4323 -6295,1751,2013-11-10 11:43:06 -0800,1424,4321 -6296,8250,2013-11-13 06:38:46 -0800,1424,4321 -6297,8884,2013-11-07 06:22:22 -0800,1424,4321 -6298,8633,2013-11-11 16:57:26 -0800,1425,4326 -6299,5438,2013-11-08 17:20:38 -0800,1425,4326 -6300,4758,2013-11-12 17:35:01 -0800,1426,4332 -6301,3460,2013-11-09 18:29:19 -0800,1426,4328 -6302,2049,2013-11-07 16:12:37 -0800,1426,4329 -6303,4850,2013-11-07 01:47:26 -0800,1426,4328 -6304,5024,2013-11-08 13:25:28 -0800,1426,4332 -6305,3410,2013-11-12 03:52:47 -0800,1426,4328 -6306,7350,2013-11-11 02:45:45 -0800,1426,4331 -6307,9081,2013-11-09 08:43:46 -0800,1426,4331 -6308,7650,2013-11-07 12:52:14 -0800,1427,4333 -6309,5485,2013-11-07 19:52:25 -0800,1427,4333 -6310,248,2013-11-11 03:23:17 -0800,1427,4334 -6311,1087,2013-11-10 02:02:04 -0800,1427,4335 -6312,6423,2013-11-08 16:03:30 -0800,1427,4334 -6313,6719,2013-11-11 22:15:20 -0800,1428,4339 -6314,4233,2013-11-08 09:58:58 -0800,1428,4339 -6315,5938,2013-11-11 11:03:35 -0800,1428,4338 -6316,3760,2013-11-11 04:39:22 -0800,1428,4338 -6317,3268,2013-11-08 05:47:19 -0800,1428,4338 -6318,2527,2013-11-09 03:34:14 -0800,1428,4339 -6319,1396,2013-11-07 07:51:39 -0800,1429,4341 -6320,2063,2013-11-07 05:31:11 -0800,1429,4341 -6321,6352,2013-11-10 19:30:44 -0800,1429,4340 -6322,9028,2013-11-10 11:38:50 -0800,1429,4340 -6323,7617,2013-11-06 11:49:05 -0800,1429,4341 -6324,9158,2013-11-10 15:05:10 -0800,1429,4341 -6325,500,2013-11-11 00:16:02 -0800,1429,4341 -6326,396,2013-11-12 02:37:55 -0800,1429,4341 -6327,5821,2013-11-08 13:15:49 -0800,1429,4340 -6328,4784,2013-11-12 11:06:50 -0800,1430,4342 -6329,660,2013-11-10 16:12:37 -0800,1430,4343 -6330,2270,2013-11-07 13:51:42 -0800,1430,4343 -6331,5880,2013-11-06 11:27:35 -0800,1430,4342 -6332,351,2013-11-10 09:16:41 -0800,1430,4343 -6333,1181,2013-11-10 19:42:15 -0800,1430,4343 -6334,2753,2013-11-11 09:32:03 -0800,1430,4342 -6335,7125,2013-11-07 14:56:23 -0800,1430,4342 -6336,7852,2013-11-12 16:47:09 -0800,1430,4342 -6337,1657,2013-11-08 09:05:31 -0800,1431,4344 -6338,5694,2013-11-11 20:39:37 -0800,1431,4344 -6339,7498,2013-11-07 15:48:01 -0800,1431,4345 -6340,5865,2013-11-07 00:59:44 -0800,1431,4344 -6341,8962,2013-11-09 05:28:27 -0800,1431,4345 -6342,9625,2013-11-11 01:56:10 -0800,1431,4345 -6343,9526,2013-11-06 23:51:50 -0800,1431,4345 -6344,6770,2013-11-11 04:34:26 -0800,1431,4344 -6345,7930,2013-11-10 03:06:57 -0800,1432,4346 -6346,8916,2013-11-12 03:29:10 -0800,1432,4346 -6347,1972,2013-11-08 22:29:14 -0800,1432,4346 -6348,3457,2013-11-09 02:12:50 -0800,1432,4346 -6349,2988,2013-11-08 08:32:02 -0800,1432,4346 -6350,5147,2013-11-07 21:59:12 -0800,1433,4348 -6351,5142,2013-11-06 22:20:40 -0800,1433,4347 -6352,4836,2013-11-10 12:54:17 -0800,1433,4348 -6353,299,2013-11-10 06:52:28 -0800,1433,4348 -6354,9824,2013-11-12 16:46:14 -0800,1433,4347 -6355,2521,2013-11-12 13:23:03 -0800,1434,4349 -6356,4987,2013-11-07 13:37:50 -0800,1434,4349 -6357,5136,2013-11-10 13:54:53 -0800,1435,4354 -6358,3300,2013-11-12 07:52:42 -0800,1435,4353 -6359,1714,2013-11-06 17:15:23 -0800,1435,4352 -6360,9287,2013-11-06 19:07:58 -0800,1435,4352 -6361,7186,2013-11-08 08:30:37 -0800,1435,4354 -6362,757,2013-11-12 23:06:46 -0800,1435,4353 -6363,2452,2013-11-12 22:48:10 -0800,1435,4354 -6364,6379,2013-11-10 00:32:48 -0800,1436,4355 -6365,1067,2013-11-10 22:20:43 -0800,1436,4355 -6366,9210,2013-11-08 12:58:22 -0800,1436,4357 -6367,4240,2013-11-08 11:34:57 -0800,1436,4359 -6368,7109,2013-11-10 21:58:03 -0800,1437,4360 -6369,5153,2013-11-12 17:42:09 -0800,1437,4361 -6370,7265,2013-11-12 02:55:06 -0800,1437,4360 -6371,9317,2013-11-08 22:14:35 -0800,1437,4361 -6372,3334,2013-11-08 14:40:04 -0800,1439,4365 -6373,574,2013-11-07 21:32:14 -0800,1439,4364 -6374,2418,2013-11-13 04:25:49 -0800,1439,4366 -6375,1595,2013-11-13 02:28:09 -0800,1439,4363 -6376,4281,2013-11-10 10:03:32 -0800,1439,4366 -6377,898,2013-11-11 03:06:07 -0800,1439,4366 -6378,4791,2013-11-09 15:43:31 -0800,1442,4379 -6379,8232,2013-11-12 15:16:02 -0800,1442,4378 -6380,6783,2013-11-09 22:03:29 -0800,1442,4378 -6381,4382,2013-11-06 09:03:32 -0800,1442,4377 -6382,9215,2013-11-10 01:35:10 -0800,1442,4377 -6383,7694,2013-11-10 21:59:45 -0800,1442,4377 -6384,7698,2013-11-10 02:02:58 -0800,1442,4378 -6385,2142,2013-11-07 04:44:01 -0800,1442,4378 -6386,7461,2013-11-09 10:26:41 -0800,1443,4382 -6387,4575,2013-11-06 22:36:51 -0800,1443,4383 -6388,1227,2013-11-10 10:07:50 -0800,1443,4381 -6389,2378,2013-11-12 02:20:47 -0800,1443,4383 -6390,3344,2013-11-07 05:04:06 -0800,1443,4382 -6391,758,2013-11-09 21:36:26 -0800,1443,4381 -6392,2174,2013-11-09 22:43:54 -0800,1444,4390 -6393,4320,2013-11-07 22:03:01 -0800,1444,4390 -6394,5260,2013-11-09 21:56:33 -0800,1444,4389 -6395,8134,2013-11-09 05:59:00 -0800,1444,4389 -6396,1329,2013-11-10 23:59:22 -0800,1444,4386 -6397,1257,2013-11-12 17:11:19 -0800,1445,4393 -6398,8814,2013-11-11 18:14:50 -0800,1445,4392 -6399,3081,2013-11-12 06:30:46 -0800,1445,4393 -6400,629,2013-11-06 13:40:40 -0800,1445,4394 -6401,6961,2013-11-06 17:47:15 -0800,1445,4391 -6402,6334,2013-11-06 21:36:33 -0800,1445,4394 -6403,1919,2013-11-12 16:38:08 -0800,1445,4392 -6404,1632,2013-11-12 00:31:52 -0800,1446,4395 -6405,2699,2013-11-13 06:56:10 -0800,1446,4395 -6406,910,2013-11-13 06:28:53 -0800,1446,4395 -6407,3429,2013-11-10 02:15:38 -0800,1446,4395 -6408,572,2013-11-07 22:43:53 -0800,1446,4395 -6409,6647,2013-11-08 06:55:20 -0800,1446,4395 -6410,8061,2013-11-08 15:41:08 -0800,1447,4397 -6411,6894,2013-11-10 16:36:59 -0800,1447,4397 -6412,7156,2013-11-10 22:45:08 -0800,1447,4398 -6413,4164,2013-11-11 02:21:47 -0800,1447,4398 -6414,3565,2013-11-10 09:14:38 -0800,1447,4398 -6415,89,2013-11-08 06:04:31 -0800,1447,4397 -6416,6856,2013-11-10 09:56:05 -0800,1448,4403 -6417,8271,2013-11-10 09:24:50 -0800,1448,4403 -6418,6239,2013-11-11 02:23:56 -0800,1448,4399 -6419,4345,2013-11-09 05:06:05 -0800,1448,4401 -6420,2569,2013-11-10 05:54:11 -0800,1448,4401 -6421,6476,2013-11-07 03:27:32 -0800,1449,4406 -6422,1169,2013-11-11 20:09:39 -0800,1449,4405 -6423,6998,2013-11-12 18:21:10 -0800,1449,4407 -6424,5859,2013-11-10 03:49:26 -0800,1449,4406 -6425,6244,2013-11-06 20:58:53 -0800,1449,4407 -6426,2830,2013-11-13 01:54:14 -0800,1450,4408 -6427,8443,2013-11-10 22:32:19 -0800,1450,4408 -6428,5195,2013-11-07 20:33:27 -0800,1450,4408 -6429,5631,2013-11-09 12:22:55 -0800,1450,4408 -6430,7022,2013-11-06 16:05:45 -0800,1450,4408 -6431,4417,2013-11-08 01:00:09 -0800,1450,4408 -6432,2244,2013-11-06 22:28:05 -0800,1450,4408 -6433,572,2013-11-08 20:40:53 -0800,1451,4409 -6434,7143,2013-11-13 04:05:11 -0800,1451,4409 -6435,4111,2013-11-12 07:39:00 -0800,1451,4409 -6436,4255,2013-11-13 05:57:27 -0800,1451,4409 -6437,7473,2013-11-08 11:18:54 -0800,1451,4409 -6438,7334,2013-11-08 20:16:53 -0800,1451,4410 -6439,6484,2013-11-09 22:21:01 -0800,1451,4409 -6440,5893,2013-11-11 15:24:07 -0800,1452,4411 -6441,1371,2013-11-12 04:14:05 -0800,1452,4412 -6442,4472,2013-11-07 08:14:14 -0800,1452,4412 -6443,2567,2013-11-06 17:34:55 -0800,1452,4414 -6444,6620,2013-11-06 11:19:01 -0800,1452,4412 -6445,4730,2013-11-09 12:30:35 -0800,1452,4413 -6446,7091,2013-11-11 09:05:16 -0800,1452,4414 -6447,8269,2013-11-10 00:57:51 -0800,1453,4415 -6448,2554,2013-11-10 17:08:23 -0800,1453,4415 -6449,5082,2013-11-11 21:08:27 -0800,1453,4415 -6450,2846,2013-11-09 16:42:29 -0800,1453,4415 -6451,3292,2013-11-09 10:58:07 -0800,1453,4415 -6452,3834,2013-11-06 21:14:28 -0800,1454,4417 -6453,6786,2013-11-07 01:19:08 -0800,1454,4419 -6454,6447,2013-11-10 20:40:18 -0800,1454,4418 -6455,6420,2013-11-07 13:00:29 -0800,1454,4416 -6456,2046,2013-11-12 18:48:46 -0800,1454,4419 -6457,8300,2013-11-08 23:42:49 -0800,1454,4419 -6458,9357,2013-11-09 09:24:17 -0800,1454,4417 -6459,5295,2013-11-07 20:21:18 -0800,1456,4429 -6460,9885,2013-11-08 10:47:29 -0800,1456,4428 -6461,9797,2013-11-12 11:42:55 -0800,1457,4430 -6462,9430,2013-11-12 20:45:50 -0800,1457,4430 -6463,524,2013-11-11 04:07:29 -0800,1459,4438 -6464,7173,2013-11-06 20:24:45 -0800,1459,4438 -6465,9511,2013-11-12 23:24:44 -0800,1459,4438 -6466,4565,2013-11-07 09:04:00 -0800,1459,4436 -6467,5341,2013-11-11 00:11:55 -0800,1459,4437 -6468,2531,2013-11-08 00:56:36 -0800,1459,4437 -6469,8774,2013-11-08 15:20:47 -0800,1459,4438 -6470,6869,2013-11-11 04:07:32 -0800,1459,4437 -6471,5280,2013-11-09 11:37:29 -0800,1460,4439 -6472,7211,2013-11-10 16:13:59 -0800,1460,4439 -6473,3828,2013-11-08 11:06:46 -0800,1460,4439 -6474,3797,2013-11-10 05:09:18 -0800,1460,4439 -6475,2424,2013-11-12 02:16:54 -0800,1461,4442 -6476,9230,2013-11-09 07:14:19 -0800,1461,4443 -6477,5154,2013-11-10 01:20:13 -0800,1461,4443 -6478,2922,2013-11-12 07:44:02 -0800,1462,4445 -6479,8591,2013-11-10 13:46:28 -0800,1462,4445 -6480,8816,2013-11-10 22:48:39 -0800,1462,4447 -6481,1327,2013-11-10 01:13:24 -0800,1462,4446 -6482,8563,2013-11-08 22:34:26 -0800,1462,4447 -6483,6611,2013-11-11 19:56:00 -0800,1462,4445 -6484,9478,2013-11-06 10:20:56 -0800,1462,4445 -6485,4991,2013-11-11 04:05:41 -0800,1462,4447 -6486,2180,2013-11-12 18:30:59 -0800,1462,4447 -6487,2872,2013-11-10 19:15:17 -0800,1463,4448 -6488,2493,2013-11-09 00:25:08 -0800,1463,4448 -6489,9331,2013-11-11 18:24:28 -0800,1463,4448 -6490,1898,2013-11-06 23:46:44 -0800,1464,4449 -6491,4615,2013-11-09 17:46:20 -0800,1464,4449 -6492,3336,2013-11-06 10:50:45 -0800,1464,4449 -6493,7741,2013-11-13 01:39:00 -0800,1464,4449 -6494,9029,2013-11-08 01:47:21 -0800,1464,4449 -6495,4896,2013-11-09 11:35:46 -0800,1465,4450 -6496,4116,2013-11-09 17:45:40 -0800,1465,4450 -6497,6852,2013-11-12 01:33:57 -0800,1465,4451 -6498,3693,2013-11-11 22:39:38 -0800,1465,4450 -6499,766,2013-11-08 11:17:02 -0800,1465,4452 -6500,4290,2013-11-11 12:15:42 -0800,1465,4451 -6501,6451,2013-11-11 08:51:14 -0800,1466,4454 -6502,6038,2013-11-12 10:41:58 -0800,1466,4454 -6503,1411,2013-11-08 17:06:37 -0800,1466,4453 -6504,6070,2013-11-11 17:42:09 -0800,1466,4454 -6505,6116,2013-11-12 22:56:48 -0800,1466,4454 -6506,8090,2013-11-07 06:08:42 -0800,1466,4453 -6507,8022,2013-11-13 07:03:09 -0800,1466,4453 -6508,213,2013-11-07 03:59:22 -0800,1466,4453 -6509,8069,2013-11-06 15:27:51 -0800,1467,4456 -6510,3434,2013-11-07 18:49:35 -0800,1467,4455 -6511,8188,2013-11-07 23:36:20 -0800,1467,4457 -6512,9785,2013-11-11 17:31:00 -0800,1467,4455 -6513,27,2013-11-11 11:49:32 -0800,1467,4458 -6514,8845,2013-11-06 11:51:22 -0800,1467,4456 -6515,3274,2013-11-06 09:32:10 -0800,1468,4460 -6516,2231,2013-11-06 20:43:08 -0800,1468,4460 -6517,2371,2013-11-10 15:39:30 -0800,1468,4460 -6518,4486,2013-11-13 08:02:27 -0800,1468,4460 -6519,3910,2013-11-09 22:17:23 -0800,1468,4460 -6520,7854,2013-11-07 01:07:29 -0800,1468,4460 -6521,210,2013-11-11 01:58:35 -0800,1469,4461 -6522,3354,2013-11-09 03:13:25 -0800,1469,4461 -6523,7254,2013-11-08 23:43:19 -0800,1469,4462 -6524,259,2013-11-11 15:32:15 -0800,1469,4461 -6525,2357,2013-11-10 10:25:00 -0800,1469,4461 -6526,8552,2013-11-09 02:00:22 -0800,1469,4461 -6527,3232,2013-11-09 09:14:02 -0800,1469,4461 -6528,9685,2013-11-08 13:03:46 -0800,1469,4462 -6529,278,2013-11-07 03:32:32 -0800,1470,4463 -6530,6927,2013-11-13 05:18:47 -0800,1471,4465 -6531,1389,2013-11-07 06:41:56 -0800,1471,4465 -6532,2578,2013-11-06 22:45:46 -0800,1471,4467 -6533,3390,2013-11-10 08:40:04 -0800,1471,4467 -6534,218,2013-11-13 01:46:18 -0800,1471,4467 -6535,3252,2013-11-11 00:04:17 -0800,1471,4466 -6536,2271,2013-11-10 05:55:35 -0800,1472,4469 -6537,3981,2013-11-07 12:17:39 -0800,1472,4470 -6538,5488,2013-11-10 08:06:07 -0800,1472,4468 -6539,1332,2013-11-13 06:34:20 -0800,1472,4469 -6540,6420,2013-11-08 21:48:14 -0800,1472,4471 -6541,3168,2013-11-09 07:57:11 -0800,1472,4468 -6542,5881,2013-11-10 09:19:16 -0800,1473,4472 -6543,7319,2013-11-12 16:00:25 -0800,1473,4472 -6544,7050,2013-11-07 03:21:26 -0800,1473,4472 -6545,799,2013-11-08 09:59:48 -0800,1473,4472 -6546,2215,2013-11-07 14:03:57 -0800,1473,4472 -6547,7754,2013-11-07 13:23:25 -0800,1473,4472 -6548,1471,2013-11-08 00:29:41 -0800,1473,4472 -6549,6322,2013-11-06 17:00:55 -0800,1474,4477 -6550,4672,2013-11-07 17:45:30 -0800,1474,4476 -6551,9221,2013-11-09 21:54:27 -0800,1474,4475 -6552,8518,2013-11-07 10:26:27 -0800,1474,4477 -6553,7009,2013-11-12 02:41:48 -0800,1474,4477 -6554,2940,2013-11-07 20:41:02 -0800,1474,4473 -6555,5670,2013-11-08 01:08:04 -0800,1475,4479 -6556,4226,2013-11-06 10:51:26 -0800,1476,4482 -6557,2065,2013-11-06 12:49:40 -0800,1476,4480 -6558,5150,2013-11-11 12:46:45 -0800,1476,4481 -6559,1116,2013-11-12 10:47:02 -0800,1476,4480 -6560,8184,2013-11-10 10:05:52 -0800,1477,4486 -6561,2234,2013-11-13 01:08:56 -0800,1478,4487 -6562,4881,2013-11-09 10:11:29 -0800,1478,4487 -6563,4394,2013-11-08 19:43:25 -0800,1479,4489 -6564,5575,2013-11-10 14:38:45 -0800,1479,4489 -6565,9359,2013-11-11 05:48:06 -0800,1479,4489 -6566,7343,2013-11-08 16:35:41 -0800,1479,4490 -6567,1170,2013-11-10 04:01:33 -0800,1479,4490 -6568,2359,2013-11-10 17:03:56 -0800,1480,4493 -6569,5910,2013-11-08 21:06:33 -0800,1480,4494 -6570,4050,2013-11-10 18:46:38 -0800,1480,4494 -6571,1992,2013-11-06 19:10:18 -0800,1480,4492 -6572,333,2013-11-13 03:00:24 -0800,1481,4497 -6573,3565,2013-11-07 13:46:15 -0800,1481,4497 -6574,8261,2013-11-12 00:34:53 -0800,1482,4499 -6575,622,2013-11-10 05:03:24 -0800,1482,4501 -6576,7244,2013-11-06 12:01:22 -0800,1482,4500 -6577,6042,2013-11-10 20:12:17 -0800,1482,4501 -6578,1350,2013-11-08 17:32:31 -0800,1483,4502 -6579,9183,2013-11-12 22:49:40 -0800,1483,4502 -6580,6281,2013-11-11 20:14:58 -0800,1483,4502 -6581,1830,2013-11-12 09:37:27 -0800,1483,4502 -6582,6620,2013-11-09 19:06:39 -0800,1483,4503 -6583,4145,2013-11-12 21:22:16 -0800,1483,4502 -6584,6670,2013-11-08 18:55:58 -0800,1484,4504 -6585,3191,2013-11-09 00:13:56 -0800,1484,4504 -6586,8739,2013-11-12 02:59:43 -0800,1485,4506 -6587,5092,2013-11-07 06:34:41 -0800,1485,4507 -6588,6527,2013-11-12 06:06:11 -0800,1486,4511 -6589,6765,2013-11-12 14:49:47 -0800,1486,4510 -6590,488,2013-11-12 14:33:50 -0800,1486,4510 -6591,3079,2013-11-06 16:12:48 -0800,1486,4510 -6592,4429,2013-11-07 11:43:04 -0800,1486,4511 -6593,8333,2013-11-12 22:09:01 -0800,1486,4511 -6594,4546,2013-11-07 18:06:45 -0800,1486,4509 -6595,8211,2013-11-09 20:28:47 -0800,1486,4508 -6596,818,2013-11-10 16:25:30 -0800,1487,4512 -6597,6631,2013-11-07 17:50:18 -0800,1487,4512 -6598,7288,2013-11-09 13:05:55 -0800,1487,4512 -6599,3786,2013-11-13 07:47:25 -0800,1487,4512 -6600,5930,2013-11-12 07:21:25 -0800,1487,4512 -6601,1730,2013-11-12 15:24:43 -0800,1487,4512 -6602,5625,2013-11-08 21:40:54 -0800,1487,4512 -6603,3844,2013-11-07 00:19:16 -0800,1487,4512 -6604,4485,2013-11-08 18:49:51 -0800,1487,4512 -6605,6763,2013-11-10 12:50:27 -0800,1488,4516 -6606,6581,2013-11-11 03:16:10 -0800,1488,4514 -6607,2926,2013-11-06 18:46:39 -0800,1489,4517 -6608,151,2013-11-08 06:29:05 -0800,1489,4517 -6609,8971,2013-11-08 23:57:01 -0800,1489,4517 -6610,3140,2013-11-09 19:34:06 -0800,1489,4517 -6611,4429,2013-11-09 03:18:42 -0800,1489,4517 -6612,4420,2013-11-09 06:16:22 -0800,1489,4517 -6613,4970,2013-11-10 12:21:22 -0800,1489,4517 -6614,5669,2013-11-10 00:31:00 -0800,1489,4517 -6615,4897,2013-11-08 19:49:32 -0800,1489,4517 -6616,8217,2013-11-07 05:26:28 -0800,1490,4518 -6617,6509,2013-11-06 22:26:36 -0800,1490,4521 -6618,8825,2013-11-11 20:39:31 -0800,1490,4522 -6619,6611,2013-11-13 05:47:05 -0800,1490,4522 -6620,9870,2013-11-07 19:22:00 -0800,1490,4520 -6621,69,2013-11-13 08:08:04 -0800,1490,4520 -6622,6016,2013-11-10 12:32:12 -0800,1490,4519 -6623,7880,2013-11-08 22:11:31 -0800,1490,4519 -6624,4840,2013-11-08 22:35:11 -0800,1491,4526 -6625,7172,2013-11-13 02:09:13 -0800,1491,4525 -6626,8289,2013-11-10 20:44:17 -0800,1491,4524 -6627,9046,2013-11-12 06:39:32 -0800,1491,4526 -6628,7380,2013-11-13 06:10:48 -0800,1491,4523 -6629,9635,2013-11-09 20:59:03 -0800,1493,4532 -6630,4986,2013-11-11 13:47:07 -0800,1494,4537 -6631,7352,2013-11-12 01:51:31 -0800,1495,4538 -6632,1531,2013-11-13 04:51:03 -0800,1495,4538 -6633,2379,2013-11-12 12:26:12 -0800,1495,4538 -6634,7753,2013-11-09 02:17:47 -0800,1495,4538 -6635,8126,2013-11-10 12:20:38 -0800,1495,4538 -6636,1816,2013-11-09 22:00:58 -0800,1495,4538 -6637,8521,2013-11-12 01:10:27 -0800,1495,4538 -6638,3744,2013-11-12 07:45:48 -0800,1496,4541 -6639,8712,2013-11-10 20:25:35 -0800,1497,4543 -6640,448,2013-11-10 04:36:50 -0800,1497,4543 -6641,3718,2013-11-10 10:51:53 -0800,1497,4543 -6642,3836,2013-11-11 10:15:24 -0800,1497,4543 -6643,2318,2013-11-06 12:23:30 -0800,1497,4543 -6644,5264,2013-11-08 13:05:36 -0800,1497,4543 -6645,3261,2013-11-07 11:37:31 -0800,1497,4543 -6646,4170,2013-11-08 11:38:14 -0800,1498,4545 -6647,4130,2013-11-08 18:18:11 -0800,1498,4544 -6648,9660,2013-11-13 07:47:18 -0800,1498,4547 -6649,1330,2013-11-11 08:08:55 -0800,1499,4549 -6650,7859,2013-11-11 22:35:38 -0800,1500,4551 -6651,28,2013-11-12 09:22:45 -0800,1500,4551 -6652,392,2013-11-06 15:34:47 -0800,1500,4551 -6653,3699,2013-11-06 13:37:43 -0800,1500,4551 -6654,7776,2013-11-11 13:25:55 -0800,1500,4551 -6655,2419,2013-11-08 22:18:35 -0800,1500,4551 -6656,3992,2013-11-10 20:11:43 -0800,1500,4551 -6657,2310,2013-11-07 17:27:19 -0800,1500,4551 -6658,6376,2013-11-08 01:08:54 -0800,1500,4551 -6659,761,2013-11-07 20:28:46 -0800,1501,4552 -6660,4650,2013-11-06 15:32:52 -0800,1501,4552 -6661,133,2013-11-09 10:49:59 -0800,1501,4552 -6662,9052,2013-11-12 15:05:04 -0800,1503,4556 -6663,9248,2013-11-09 03:26:16 -0800,1503,4556 -6664,3247,2013-11-12 03:47:26 -0800,1503,4556 -6665,5125,2013-11-11 22:06:13 -0800,1503,4557 -6666,2270,2013-11-06 19:37:24 -0800,1503,4557 -6667,4594,2013-11-10 01:41:36 -0800,1504,4558 -6668,8531,2013-11-10 20:29:25 -0800,1504,4558 -6669,7027,2013-11-08 01:58:43 -0800,1504,4558 -6670,6470,2013-11-07 08:13:03 -0800,1505,4563 -6671,9620,2013-11-07 10:10:29 -0800,1505,4561 -6672,7347,2013-11-12 11:41:17 -0800,1505,4561 -6673,2800,2013-11-07 21:06:06 -0800,1505,4561 -6674,2511,2013-11-06 09:38:09 -0800,1505,4561 -6675,4818,2013-11-09 02:10:40 -0800,1506,4564 -6676,5453,2013-11-08 22:12:10 -0800,1506,4564 -6677,3060,2013-11-12 02:05:02 -0800,1506,4564 -6678,9196,2013-11-06 13:22:20 -0800,1506,4564 -6679,2512,2013-11-11 21:49:24 -0800,1506,4564 -6680,191,2013-11-09 14:05:23 -0800,1506,4564 -6681,1349,2013-11-11 15:56:52 -0800,1506,4564 -6682,56,2013-11-12 05:13:31 -0800,1507,4566 -6683,3595,2013-11-08 09:55:42 -0800,1507,4565 -6684,277,2013-11-08 02:52:54 -0800,1507,4567 -6685,1220,2013-11-12 17:44:42 -0800,1507,4565 -6686,897,2013-11-13 00:13:18 -0800,1507,4566 -6687,7361,2013-11-12 22:55:14 -0800,1507,4567 -6688,880,2013-11-11 06:37:45 -0800,1507,4565 -6689,5946,2013-11-07 21:31:41 -0800,1507,4565 -6690,5776,2013-11-07 07:19:10 -0800,1507,4567 -6691,5740,2013-11-12 21:06:06 -0800,1508,4569 -6692,1843,2013-11-12 11:36:19 -0800,1508,4568 -6693,8009,2013-11-09 09:10:38 -0800,1509,4570 -6694,3354,2013-11-09 11:40:46 -0800,1509,4571 -6695,6060,2013-11-07 00:36:55 -0800,1509,4571 -6696,2872,2013-11-07 01:06:26 -0800,1509,4570 -6697,3942,2013-11-09 19:00:27 -0800,1509,4570 -6698,3771,2013-11-07 07:08:07 -0800,1509,4570 -6699,790,2013-11-09 06:32:32 -0800,1510,4572 -6700,46,2013-11-06 21:03:03 -0800,1510,4572 -6701,5383,2013-11-09 17:50:30 -0800,1510,4572 -6702,4388,2013-11-10 21:59:55 -0800,1510,4572 -6703,7423,2013-11-07 02:38:30 -0800,1510,4572 -6704,2029,2013-11-07 04:15:47 -0800,1510,4572 -6705,4221,2013-11-12 04:22:57 -0800,1510,4572 -6706,3857,2013-11-12 09:04:56 -0800,1510,4572 -6707,3979,2013-11-09 01:47:57 -0800,1511,4576 -6708,1967,2013-11-11 12:04:43 -0800,1511,4577 -6709,6916,2013-11-11 12:12:26 -0800,1511,4574 -6710,4269,2013-11-12 22:30:37 -0800,1511,4574 -6711,8492,2013-11-12 05:38:14 -0800,1511,4574 -6712,710,2013-11-12 08:23:27 -0800,1512,4578 -6713,3574,2013-11-11 14:10:33 -0800,1512,4581 -6714,1243,2013-11-12 22:37:12 -0800,1512,4580 -6715,4861,2013-11-11 06:27:23 -0800,1512,4582 -6716,960,2013-11-06 14:55:25 -0800,1512,4581 -6717,9385,2013-11-11 20:39:44 -0800,1512,4578 -6718,3813,2013-11-08 06:49:47 -0800,1512,4581 -6719,8682,2013-11-07 12:36:32 -0800,1512,4579 -6720,7154,2013-11-12 06:59:38 -0800,1513,4583 -6721,8840,2013-11-07 08:23:53 -0800,1513,4583 -6722,4089,2013-11-10 21:33:51 -0800,1514,4585 -6723,177,2013-11-07 14:16:46 -0800,1514,4586 -6724,9329,2013-11-08 20:45:06 -0800,1515,4587 -6725,2535,2013-11-10 23:56:14 -0800,1515,4587 -6726,7117,2013-11-07 04:53:52 -0800,1515,4589 -6727,7298,2013-11-07 05:01:26 -0800,1515,4587 -6728,4094,2013-11-12 19:51:21 -0800,1515,4587 -6729,799,2013-11-11 11:30:37 -0800,1516,4590 -6730,7650,2013-11-07 06:16:54 -0800,1516,4591 -6731,959,2013-11-07 10:16:21 -0800,1516,4590 -6732,568,2013-11-10 07:38:55 -0800,1516,4590 -6733,1163,2013-11-08 23:16:53 -0800,1516,4593 -6734,6668,2013-11-11 03:50:30 -0800,1516,4593 -6735,2889,2013-11-06 18:24:34 -0800,1516,4592 -6736,2679,2013-11-09 15:11:34 -0800,1517,4596 -6737,3465,2013-11-08 06:17:24 -0800,1517,4594 -6738,5191,2013-11-10 21:07:17 -0800,1517,4594 -6739,6539,2013-11-11 12:36:09 -0800,1518,4601 -6740,1650,2013-11-12 06:22:21 -0800,1518,4601 -6741,4569,2013-11-08 04:48:17 -0800,1518,4599 -6742,4252,2013-11-10 18:51:17 -0800,1518,4600 -6743,5793,2013-11-06 11:23:15 -0800,1518,4601 -6744,5466,2013-11-06 23:21:35 -0800,1518,4599 -6745,7266,2013-11-12 00:27:46 -0800,1519,4602 -6746,6249,2013-11-08 21:04:11 -0800,1519,4602 -6747,7898,2013-11-09 01:15:32 -0800,1519,4602 -6748,5374,2013-11-09 04:39:16 -0800,1519,4602 -6749,9445,2013-11-11 20:07:56 -0800,1519,4602 -6750,420,2013-11-11 18:42:29 -0800,1519,4602 -6751,7667,2013-11-10 12:03:42 -0800,1519,4602 -6752,6439,2013-11-10 07:27:33 -0800,1519,4602 -6753,4099,2013-11-07 15:05:34 -0800,1520,4603 -6754,2084,2013-11-11 14:25:50 -0800,1520,4603 -6755,823,2013-11-06 22:42:48 -0800,1520,4605 -6756,2248,2013-11-10 23:44:09 -0800,1520,4604 -6757,4596,2013-11-06 17:56:40 -0800,1520,4603 -6758,2728,2013-11-10 12:38:09 -0800,1520,4603 -6759,4142,2013-11-12 09:08:33 -0800,1520,4603 -6760,8040,2013-11-10 16:08:37 -0800,1520,4605 -6761,3710,2013-11-08 01:13:26 -0800,1522,4609 -6762,50,2013-11-07 09:17:12 -0800,1522,4609 -6763,3736,2013-11-09 20:23:30 -0800,1522,4609 -6764,219,2013-11-12 00:41:31 -0800,1522,4608 -6765,4137,2013-11-12 09:02:46 -0800,1522,4609 -6766,6350,2013-11-08 09:19:23 -0800,1522,4608 -6767,429,2013-11-10 09:59:44 -0800,1522,4609 -6768,1680,2013-11-09 02:20:24 -0800,1522,4610 -6769,5167,2013-11-10 16:59:31 -0800,1523,4611 -6770,9273,2013-11-11 16:25:51 -0800,1523,4611 -6771,3568,2013-11-10 01:33:32 -0800,1523,4611 -6772,622,2013-11-06 11:56:12 -0800,1523,4611 -6773,6294,2013-11-09 03:49:59 -0800,1523,4611 -6774,6184,2013-11-12 11:59:25 -0800,1523,4611 -6775,7129,2013-11-11 06:55:43 -0800,1523,4611 -6776,5258,2013-11-06 20:31:56 -0800,1524,4612 -6777,3286,2013-11-08 04:21:16 -0800,1524,4612 -6778,3059,2013-11-13 07:09:34 -0800,1524,4612 -6779,3838,2013-11-11 03:26:29 -0800,1524,4612 -6780,146,2013-11-10 08:33:29 -0800,1524,4612 -6781,1136,2013-11-12 18:25:25 -0800,1524,4612 -6782,4398,2013-11-11 06:06:39 -0800,1525,4614 -6783,9859,2013-11-08 23:10:25 -0800,1525,4613 -6784,2932,2013-11-11 09:30:31 -0800,1525,4614 -6785,9583,2013-11-06 12:59:34 -0800,1525,4613 -6786,2726,2013-11-09 16:38:35 -0800,1525,4614 -6787,5469,2013-11-09 07:27:17 -0800,1525,4614 -6788,4040,2013-11-07 02:36:08 -0800,1525,4613 -6789,5660,2013-11-08 23:02:13 -0800,1525,4614 -6790,6377,2013-11-07 22:15:48 -0800,1526,4615 -6791,8081,2013-11-07 06:40:52 -0800,1526,4615 -6792,9432,2013-11-08 12:32:24 -0800,1526,4615 -6793,8950,2013-11-08 04:45:27 -0800,1526,4615 -6794,6277,2013-11-07 09:28:43 -0800,1526,4615 -6795,5515,2013-11-11 22:49:05 -0800,1527,4616 -6796,8039,2013-11-09 19:58:25 -0800,1527,4617 -6797,9565,2013-11-07 05:51:35 -0800,1527,4617 -6798,5350,2013-11-06 14:25:34 -0800,1527,4616 -6799,2265,2013-11-07 15:29:39 -0800,1527,4616 -6800,5765,2013-11-07 03:18:51 -0800,1527,4616 -6801,5263,2013-11-10 05:43:27 -0800,1527,4616 -6802,5436,2013-11-08 23:11:38 -0800,1528,4619 -6803,6491,2013-11-11 20:31:48 -0800,1528,4619 -6804,8838,2013-11-07 13:34:11 -0800,1528,4619 -6805,9417,2013-11-07 08:22:07 -0800,1528,4618 -6806,9058,2013-11-11 06:55:15 -0800,1528,4618 -6807,6773,2013-11-06 23:07:43 -0800,1528,4619 -6808,1953,2013-11-09 20:26:55 -0800,1528,4618 -6809,3964,2013-11-12 11:50:59 -0800,1528,4618 -6810,3472,2013-11-12 20:14:13 -0800,1528,4619 -6811,8590,2013-11-11 07:39:28 -0800,1529,4621 -6812,5989,2013-11-06 11:57:11 -0800,1529,4620 -6813,9759,2013-11-11 03:33:02 -0800,1529,4622 -6814,9096,2013-11-10 03:35:07 -0800,1529,4622 -6815,6664,2013-11-09 10:32:41 -0800,1529,4621 -6816,3570,2013-11-10 16:28:57 -0800,1529,4621 -6817,1375,2013-11-09 04:26:13 -0800,1529,4622 -6818,4195,2013-11-11 16:37:02 -0800,1529,4622 -6819,7536,2013-11-11 12:34:39 -0800,1530,4625 -6820,5230,2013-11-08 20:24:55 -0800,1530,4624 -6821,2428,2013-11-13 00:00:52 -0800,1531,4628 -6822,9888,2013-11-08 07:35:12 -0800,1531,4628 -6823,3474,2013-11-06 11:26:57 -0800,1531,4629 -6824,5220,2013-11-11 09:29:26 -0800,1532,4633 -6825,364,2013-11-11 20:24:02 -0800,1532,4631 -6826,1562,2013-11-12 14:44:45 -0800,1532,4631 -6827,8152,2013-11-10 01:30:23 -0800,1533,4636 -6828,6438,2013-11-11 20:05:01 -0800,1533,4636 -6829,6820,2013-11-12 08:03:18 -0800,1533,4638 -6830,9175,2013-11-11 04:19:21 -0800,1534,4643 -6831,3800,2013-11-09 02:44:41 -0800,1534,4641 -6832,6115,2013-11-09 11:30:35 -0800,1534,4639 -6833,541,2013-11-12 00:12:56 -0800,1534,4639 -6834,8180,2013-11-12 12:44:16 -0800,1534,4642 -6835,6644,2013-11-06 17:13:05 -0800,1535,4645 -6836,1465,2013-11-12 18:35:22 -0800,1535,4647 -6837,5612,2013-11-09 05:09:06 -0800,1535,4644 -6838,1769,2013-11-11 21:13:53 -0800,1535,4646 -6839,9889,2013-11-11 04:52:30 -0800,1535,4647 -6840,6616,2013-11-06 15:08:11 -0800,1536,4648 -6841,3683,2013-11-06 11:42:43 -0800,1536,4648 -6842,4550,2013-11-06 12:37:00 -0800,1536,4648 -6843,3861,2013-11-09 17:35:22 -0800,1537,4650 -6844,6194,2013-11-10 20:46:01 -0800,1538,4655 -6845,3586,2013-11-10 22:12:39 -0800,1539,4658 -6846,8740,2013-11-10 02:54:07 -0800,1539,4662 -6847,4394,2013-11-12 16:45:14 -0800,1540,4667 -6848,8776,2013-11-10 23:43:33 -0800,1540,4665 -6849,5733,2013-11-12 12:46:27 -0800,1540,4664 -6850,3574,2013-11-13 06:04:42 -0800,1540,4667 -6851,869,2013-11-07 11:58:33 -0800,1540,4666 -6852,4192,2013-11-07 10:29:36 -0800,1540,4665 -6853,3944,2013-11-07 12:22:58 -0800,1540,4665 -6854,5264,2013-11-12 21:24:08 -0800,1541,4668 -6855,1220,2013-11-09 20:44:49 -0800,1541,4670 -6856,6111,2013-11-07 20:23:07 -0800,1541,4668 -6857,1544,2013-11-10 06:38:36 -0800,1541,4669 -6858,8876,2013-11-13 08:16:26 -0800,1542,4671 -6859,5766,2013-11-08 11:56:15 -0800,1543,4672 -6860,8518,2013-11-07 04:51:14 -0800,1543,4672 -6861,1281,2013-11-08 07:51:57 -0800,1543,4672 -6862,838,2013-11-08 07:16:02 -0800,1543,4672 -6863,166,2013-11-07 06:18:19 -0800,1544,4673 -6864,9315,2013-11-11 18:13:43 -0800,1544,4673 -6865,7823,2013-11-08 11:50:16 -0800,1544,4673 -6866,8067,2013-11-11 15:23:43 -0800,1544,4674 -6867,7137,2013-11-11 17:37:31 -0800,1544,4674 -6868,8795,2013-11-09 04:38:33 -0800,1544,4673 -6869,4045,2013-11-10 12:36:19 -0800,1544,4674 -6870,425,2013-11-08 21:58:30 -0800,1545,4676 -6871,2420,2013-11-10 22:11:56 -0800,1545,4677 -6872,7956,2013-11-06 16:55:58 -0800,1545,4677 -6873,9015,2013-11-07 22:07:39 -0800,1545,4677 -6874,2258,2013-11-09 12:00:15 -0800,1545,4678 -6875,9715,2013-11-10 13:50:28 -0800,1545,4677 -6876,5298,2013-11-06 11:03:54 -0800,1545,4675 -6877,4738,2013-11-11 22:03:32 -0800,1545,4676 -6878,2883,2013-11-06 16:25:54 -0800,1545,4678 -6879,1597,2013-11-12 04:34:22 -0800,1546,4680 -6880,932,2013-11-09 19:11:22 -0800,1546,4682 -6881,5378,2013-11-13 03:07:32 -0800,1547,4683 -6882,877,2013-11-11 16:53:52 -0800,1547,4685 -6883,1085,2013-11-12 17:27:06 -0800,1547,4685 -6884,7359,2013-11-11 18:48:55 -0800,1547,4685 -6885,828,2013-11-10 21:53:34 -0800,1547,4685 -6886,573,2013-11-09 21:29:59 -0800,1547,4684 -6887,7720,2013-11-12 14:00:21 -0800,1547,4683 -6888,3951,2013-11-10 06:53:31 -0800,1547,4684 -6889,9545,2013-11-09 15:29:33 -0800,1547,4685 -6890,4958,2013-11-10 09:59:21 -0800,1548,4686 -6891,4585,2013-11-12 12:53:34 -0800,1548,4689 -6892,1645,2013-11-11 07:04:48 -0800,1548,4689 -6893,3150,2013-11-06 22:32:59 -0800,1548,4688 -6894,3952,2013-11-06 16:13:18 -0800,1548,4687 -6895,9441,2013-11-08 18:55:26 -0800,1548,4688 -6896,247,2013-11-12 15:54:22 -0800,1548,4689 -6897,4783,2013-11-13 00:17:09 -0800,1548,4689 -6898,2799,2013-11-08 19:01:24 -0800,1548,4689 -6899,1315,2013-11-06 15:35:28 -0800,1549,4691 -6900,6539,2013-11-07 00:21:38 -0800,1549,4691 -6901,6367,2013-11-08 22:48:42 -0800,1549,4690 -6902,4757,2013-11-08 15:29:13 -0800,1549,4691 -6903,3988,2013-11-11 22:56:47 -0800,1549,4692 -6904,6135,2013-11-08 15:41:51 -0800,1550,4693 -6905,4919,2013-11-12 10:34:19 -0800,1550,4694 -6906,5397,2013-11-08 01:09:30 -0800,1550,4694 -6907,9121,2013-11-06 14:59:36 -0800,1550,4693 -6908,5600,2013-11-07 01:21:58 -0800,1550,4694 -6909,2880,2013-11-09 09:31:06 -0800,1551,4696 -6910,7366,2013-11-07 17:36:11 -0800,1551,4698 -6911,7880,2013-11-07 21:06:02 -0800,1551,4695 -6912,2224,2013-11-08 05:39:50 -0800,1551,4696 -6913,2636,2013-11-09 05:18:42 -0800,1551,4698 -6914,2629,2013-11-08 05:57:04 -0800,1551,4698 -6915,5852,2013-11-10 02:37:52 -0800,1551,4698 -6916,9813,2013-11-11 12:15:12 -0800,1551,4695 -6917,8018,2013-11-10 13:42:18 -0800,1551,4697 -6918,8430,2013-11-09 22:53:27 -0800,1552,4700 -6919,6054,2013-11-12 04:56:46 -0800,1552,4700 -6920,2885,2013-11-10 19:03:49 -0800,1552,4699 -6921,634,2013-11-12 19:46:18 -0800,1553,4702 -6922,2234,2013-11-08 09:49:19 -0800,1553,4702 -6923,8570,2013-11-11 10:33:26 -0800,1553,4703 -6924,5470,2013-11-07 09:40:28 -0800,1553,4703 -6925,7330,2013-11-10 12:16:23 -0800,1553,4703 -6926,6736,2013-11-07 05:24:11 -0800,1553,4702 -6927,9320,2013-11-12 15:36:01 -0800,1554,4704 -6928,2667,2013-11-08 01:13:54 -0800,1555,4709 -6929,8930,2013-11-10 16:36:01 -0800,1555,4706 -6930,6842,2013-11-10 17:20:39 -0800,1555,4708 -6931,211,2013-11-08 16:06:11 -0800,1555,4709 -6932,7623,2013-11-12 20:47:58 -0800,1555,4707 -6933,9130,2013-11-11 08:47:57 -0800,1555,4709 -6934,9356,2013-11-08 12:33:26 -0800,1556,4710 -6935,2412,2013-11-10 01:10:37 -0800,1556,4711 -6936,3799,2013-11-12 07:51:44 -0800,1556,4711 -6937,5653,2013-11-06 13:23:19 -0800,1556,4710 -6938,8083,2013-11-07 22:46:08 -0800,1556,4711 -6939,3210,2013-11-08 06:01:55 -0800,1556,4711 -6940,9790,2013-11-07 12:13:13 -0800,1557,4712 -6941,5380,2013-11-08 16:44:48 -0800,1557,4712 -6942,8534,2013-11-10 20:48:05 -0800,1558,4715 -6943,5179,2013-11-11 21:50:19 -0800,1558,4713 -6944,4717,2013-11-08 00:39:32 -0800,1559,4716 -6945,9765,2013-11-11 23:57:11 -0800,1559,4716 -6946,2979,2013-11-11 21:12:40 -0800,1559,4716 -6947,1422,2013-11-12 02:01:09 -0800,1560,4717 -6948,5945,2013-11-10 18:47:41 -0800,1560,4717 -6949,7239,2013-11-09 21:10:18 -0800,1560,4717 -6950,5655,2013-11-11 21:08:43 -0800,1561,4719 -6951,4267,2013-11-11 15:33:49 -0800,1562,4722 -6952,2575,2013-11-09 10:29:22 -0800,1562,4722 -6953,7400,2013-11-10 17:31:31 -0800,1562,4722 -6954,6373,2013-11-07 03:23:19 -0800,1562,4721 -6955,831,2013-11-08 11:22:02 -0800,1562,4722 -6956,9063,2013-11-12 05:53:13 -0800,1562,4722 -6957,7237,2013-11-11 09:21:41 -0800,1562,4720 -6958,9297,2013-11-06 23:39:25 -0800,1563,4724 -6959,3229,2013-11-12 10:25:20 -0800,1563,4723 -6960,9098,2013-11-06 20:27:07 -0800,1563,4724 -6961,43,2013-11-09 04:07:56 -0800,1563,4723 -6962,2520,2013-11-07 10:24:35 -0800,1563,4724 -6963,1100,2013-11-09 01:44:49 -0800,1563,4723 -6964,5370,2013-11-12 22:58:07 -0800,1563,4724 -6965,4774,2013-11-07 09:20:42 -0800,1564,4725 -6966,5435,2013-11-09 13:09:35 -0800,1564,4726 -6967,9890,2013-11-07 03:05:55 -0800,1564,4726 -6968,8724,2013-11-12 06:35:38 -0800,1564,4726 -6969,1935,2013-11-10 06:58:31 -0800,1564,4726 -6970,1597,2013-11-09 20:42:20 -0800,1564,4726 -6971,52,2013-11-12 16:57:26 -0800,1565,4727 -6972,2162,2013-11-13 03:18:13 -0800,1566,4731 -6973,6780,2013-11-09 19:06:56 -0800,1566,4732 -6974,8935,2013-11-06 16:37:35 -0800,1567,4736 -6975,7733,2013-11-13 06:39:33 -0800,1567,4735 -6976,4996,2013-11-06 19:05:01 -0800,1567,4734 -6977,6548,2013-11-13 05:58:50 -0800,1567,4737 -6978,1158,2013-11-11 06:50:05 -0800,1567,4736 -6979,8254,2013-11-07 08:20:36 -0800,1567,4734 -6980,1882,2013-11-13 07:00:36 -0800,1567,4734 -6981,8813,2013-11-12 01:14:46 -0800,1567,4737 -6982,1889,2013-11-08 00:51:58 -0800,1568,4738 -6983,3322,2013-11-12 20:50:25 -0800,1569,4743 -6984,3984,2013-11-07 14:26:29 -0800,1569,4744 -6985,1177,2013-11-10 22:43:32 -0800,1569,4746 -6986,7381,2013-11-10 10:19:46 -0800,1569,4746 -6987,7020,2013-11-12 14:45:58 -0800,1570,4747 -6988,6021,2013-11-08 04:24:56 -0800,1571,4751 -6989,6570,2013-11-10 21:27:46 -0800,1571,4749 -6990,5464,2013-11-11 14:20:49 -0800,1571,4749 -6991,7050,2013-11-11 04:56:23 -0800,1571,4749 -6992,4772,2013-11-07 14:39:04 -0800,1572,4752 -6993,8080,2013-11-09 15:57:29 -0800,1572,4753 -6994,2413,2013-11-11 22:45:24 -0800,1572,4753 -6995,8950,2013-11-09 23:35:04 -0800,1573,4757 -6996,4630,2013-11-11 07:01:53 -0800,1574,4760 -6997,5845,2013-11-08 12:21:22 -0800,1574,4761 -6998,8175,2013-11-12 17:20:04 -0800,1574,4760 -6999,1353,2013-11-13 05:49:02 -0800,1574,4758 -7000,6043,2013-11-08 19:17:37 -0800,1574,4760 -7001,7877,2013-11-06 15:41:33 -0800,1574,4761 -7002,3350,2013-11-10 15:41:35 -0800,1574,4758 -7003,8397,2013-11-09 17:00:41 -0800,1574,4758 -7004,6151,2013-11-07 01:03:41 -0800,1575,4762 -7005,277,2013-11-08 03:21:47 -0800,1575,4762 -7006,7684,2013-11-06 22:09:59 -0800,1575,4762 -7007,9267,2013-11-13 07:12:47 -0800,1575,4762 -7008,1632,2013-11-08 09:30:37 -0800,1575,4762 -7009,3765,2013-11-11 12:41:18 -0800,1575,4762 -7010,6828,2013-11-10 20:03:18 -0800,1575,4762 -7011,1216,2013-11-09 01:32:56 -0800,1575,4762 -7012,7561,2013-11-08 08:50:16 -0800,1576,4763 -7013,1827,2013-11-13 05:43:00 -0800,1576,4763 -7014,7392,2013-11-08 23:40:44 -0800,1577,4768 -7015,1362,2013-11-12 07:38:47 -0800,1577,4766 -7016,9649,2013-11-08 17:56:57 -0800,1577,4768 -7017,8009,2013-11-09 05:15:35 -0800,1577,4768 -7018,9441,2013-11-09 12:51:40 -0800,1577,4767 -7019,3677,2013-11-09 04:46:28 -0800,1577,4767 -7020,3710,2013-11-10 02:40:26 -0800,1577,4767 -7021,7588,2013-11-06 18:38:34 -0800,1577,4768 -7022,160,2013-11-10 02:40:11 -0800,1578,4771 -7023,550,2013-11-12 19:34:38 -0800,1578,4770 -7024,9446,2013-11-07 04:50:44 -0800,1578,4769 -7025,6591,2013-11-11 13:36:45 -0800,1578,4769 -7026,5822,2013-11-06 10:48:21 -0800,1578,4771 -7027,6064,2013-11-08 13:14:06 -0800,1578,4770 -7028,2813,2013-11-10 15:06:34 -0800,1578,4770 -7029,4758,2013-11-06 19:17:09 -0800,1578,4770 -7030,8261,2013-11-12 03:22:32 -0800,1579,4772 -7031,722,2013-11-09 14:33:36 -0800,1579,4772 -7032,9784,2013-11-10 07:58:54 -0800,1579,4772 -7033,9459,2013-11-08 22:25:55 -0800,1579,4772 -7034,4880,2013-11-11 10:48:02 -0800,1579,4772 -7035,4633,2013-11-10 06:09:03 -0800,1579,4772 -7036,1185,2013-11-10 10:20:45 -0800,1580,4774 -7037,1695,2013-11-10 01:18:51 -0800,1580,4773 -7038,3600,2013-11-09 05:43:50 -0800,1580,4773 -7039,1759,2013-11-09 10:14:22 -0800,1580,4775 -7040,3090,2013-11-06 16:00:33 -0800,1580,4774 -7041,8433,2013-11-11 15:25:58 -0800,1580,4776 -7042,7439,2013-11-06 16:07:43 -0800,1580,4773 -7043,7240,2013-11-07 03:19:18 -0800,1580,4774 -7044,3092,2013-11-07 01:23:17 -0800,1580,4776 -7045,9848,2013-11-10 09:22:11 -0800,1581,4777 -7046,6580,2013-11-10 15:50:53 -0800,1581,4778 -7047,8760,2013-11-07 08:07:50 -0800,1582,4781 -7048,4900,2013-11-08 04:29:29 -0800,1582,4781 -7049,5353,2013-11-11 18:28:07 -0800,1582,4783 -7050,3936,2013-11-10 21:36:59 -0800,1582,4781 -7051,869,2013-11-09 07:59:45 -0800,1582,4781 -7052,9285,2013-11-08 02:17:45 -0800,1582,4783 -7053,3415,2013-11-12 02:36:22 -0800,1582,4780 -7054,5689,2013-11-08 01:11:17 -0800,1583,4786 -7055,5920,2013-11-10 16:24:52 -0800,1583,4786 -7056,8889,2013-11-08 09:23:07 -0800,1583,4786 -7057,188,2013-11-06 15:07:36 -0800,1583,4785 -7058,6580,2013-11-12 00:11:17 -0800,1583,4786 -7059,6666,2013-11-09 14:00:50 -0800,1583,4788 -7060,354,2013-11-08 21:54:03 -0800,1584,4789 -7061,2956,2013-11-11 20:41:03 -0800,1584,4790 -7062,3968,2013-11-06 14:36:24 -0800,1584,4789 -7063,3936,2013-11-07 20:05:52 -0800,1584,4790 -7064,1538,2013-11-13 00:19:04 -0800,1584,4790 -7065,1320,2013-11-12 16:04:03 -0800,1584,4790 -7066,7412,2013-11-09 04:24:46 -0800,1584,4789 -7067,5688,2013-11-06 16:51:40 -0800,1585,4792 -7068,8519,2013-11-06 19:34:01 -0800,1585,4793 -7069,4221,2013-11-07 15:32:01 -0800,1585,4791 -7070,4281,2013-11-07 13:43:54 -0800,1585,4793 -7071,8223,2013-11-09 12:50:44 -0800,1586,4794 -7072,1461,2013-11-06 14:05:20 -0800,1586,4794 -7073,2214,2013-11-08 15:35:46 -0800,1587,4798 -7074,6744,2013-11-12 03:28:26 -0800,1587,4797 -7075,2442,2013-11-09 20:46:38 -0800,1587,4798 -7076,5431,2013-11-06 21:40:28 -0800,1587,4798 -7077,7929,2013-11-12 04:44:06 -0800,1587,4795 -7078,6043,2013-11-09 09:17:23 -0800,1587,4797 -7079,132,2013-11-06 19:10:57 -0800,1587,4797 -7080,3561,2013-11-12 06:20:13 -0800,1587,4797 -7081,2827,2013-11-12 05:35:12 -0800,1588,4799 -7082,9295,2013-11-07 01:18:06 -0800,1588,4800 -7083,6394,2013-11-12 08:16:49 -0800,1588,4802 -7084,6851,2013-11-07 21:27:26 -0800,1588,4800 -7085,2650,2013-11-06 17:26:01 -0800,1589,4806 -7086,5437,2013-11-08 09:50:08 -0800,1589,4807 -7087,7912,2013-11-06 09:54:38 -0800,1589,4803 -7088,5844,2013-11-06 23:08:49 -0800,1589,4805 -7089,6280,2013-11-08 18:44:02 -0800,1589,4804 -7090,6684,2013-11-10 22:13:32 -0800,1589,4807 -7091,8547,2013-11-11 16:33:14 -0800,1590,4808 -7092,7023,2013-11-08 21:22:34 -0800,1590,4808 -7093,6951,2013-11-12 20:54:44 -0800,1590,4808 -7094,872,2013-11-11 05:00:36 -0800,1590,4809 -7095,6320,2013-11-09 01:47:08 -0800,1591,4810 -7096,5271,2013-11-07 12:58:47 -0800,1591,4810 -7097,5500,2013-11-13 05:49:46 -0800,1591,4810 -7098,8986,2013-11-09 09:20:09 -0800,1591,4810 -7099,430,2013-11-09 03:15:24 -0800,1591,4810 -7100,2652,2013-11-07 19:52:15 -0800,1591,4810 -7101,169,2013-11-09 01:44:53 -0800,1591,4810 -7102,2191,2013-11-09 16:15:59 -0800,1592,4812 -7103,3790,2013-11-10 10:55:11 -0800,1592,4811 -7104,9167,2013-11-12 12:08:06 -0800,1592,4812 -7105,2963,2013-11-13 07:50:02 -0800,1592,4811 -7106,7634,2013-11-09 07:17:51 -0800,1592,4812 -7107,1764,2013-11-12 04:17:33 -0800,1592,4812 -7108,6174,2013-11-07 04:03:44 -0800,1592,4811 -7109,4031,2013-11-13 08:06:33 -0800,1592,4812 -7110,3486,2013-11-11 06:24:30 -0800,1592,4811 -7111,9128,2013-11-07 19:31:56 -0800,1593,4813 -7112,673,2013-11-06 21:19:14 -0800,1593,4814 -7113,1432,2013-11-06 20:49:28 -0800,1593,4814 -7114,7941,2013-11-10 21:39:37 -0800,1593,4813 -7115,621,2013-11-12 16:12:56 -0800,1593,4814 -7116,3757,2013-11-11 03:56:09 -0800,1593,4813 -7117,915,2013-11-06 09:57:10 -0800,1593,4814 -7118,4790,2013-11-06 17:11:18 -0800,1593,4815 -7119,3895,2013-11-12 10:28:54 -0800,1593,4814 -7120,1513,2013-11-06 10:25:53 -0800,1594,4816 -7121,4020,2013-11-12 11:55:50 -0800,1594,4817 -7122,9320,2013-11-08 08:00:56 -0800,1594,4818 -7123,635,2013-11-10 22:08:03 -0800,1594,4816 -7124,650,2013-11-11 04:50:30 -0800,1594,4818 -7125,3770,2013-11-12 01:18:03 -0800,1594,4818 -7126,9137,2013-11-10 08:22:41 -0800,1594,4818 -7127,675,2013-11-07 21:25:49 -0800,1594,4816 -7128,6451,2013-11-08 07:41:53 -0800,1594,4817 -7129,2156,2013-11-07 01:55:28 -0800,1595,4820 -7130,9058,2013-11-10 04:00:01 -0800,1595,4821 -7131,268,2013-11-12 07:15:44 -0800,1595,4819 -7132,246,2013-11-08 19:32:18 -0800,1595,4820 -7133,7748,2013-11-07 19:49:38 -0800,1595,4819 -7134,984,2013-11-11 09:13:10 -0800,1596,4825 -7135,9826,2013-11-09 13:21:16 -0800,1596,4822 -7136,8786,2013-11-09 11:56:41 -0800,1596,4824 -7137,4280,2013-11-07 02:06:37 -0800,1596,4824 -7138,2710,2013-11-08 08:52:43 -0800,1596,4822 -7139,7238,2013-11-12 22:32:33 -0800,1596,4823 -7140,8534,2013-11-08 10:06:03 -0800,1596,4822 -7141,457,2013-11-10 05:55:10 -0800,1596,4825 -7142,618,2013-11-07 20:38:23 -0800,1596,4824 -7143,5524,2013-11-07 07:12:31 -0800,1597,4826 -7144,6927,2013-11-10 18:09:21 -0800,1597,4826 -7145,9231,2013-11-13 06:52:21 -0800,1597,4826 -7146,3593,2013-11-07 03:07:50 -0800,1597,4826 -7147,7131,2013-11-09 08:04:37 -0800,1597,4826 -7148,1268,2013-11-12 15:02:48 -0800,1597,4826 -7149,8125,2013-11-11 21:24:02 -0800,1597,4826 -7150,3037,2013-11-13 08:31:18 -0800,1597,4826 -7151,5745,2013-11-12 21:51:22 -0800,1597,4826 -7152,4348,2013-11-07 15:15:31 -0800,1598,4828 -7153,7540,2013-11-12 21:36:50 -0800,1598,4828 -7154,5872,2013-11-12 22:36:39 -0800,1598,4829 -7155,6768,2013-11-12 08:50:19 -0800,1598,4828 -7156,9531,2013-11-07 04:10:52 -0800,1598,4829 -7157,1244,2013-11-11 00:24:45 -0800,1598,4828 -7158,3636,2013-11-12 09:50:18 -0800,1598,4827 -7159,7340,2013-11-09 11:56:36 -0800,1598,4829 -7160,4811,2013-11-11 02:52:36 -0800,1598,4827 -7161,7493,2013-11-09 15:22:24 -0800,1599,4834 -7162,1771,2013-11-10 05:16:11 -0800,1599,4831 -7163,5550,2013-11-12 19:26:31 -0800,1599,4834 -7164,8253,2013-11-11 07:45:01 -0800,1599,4833 -7165,3559,2013-11-09 07:54:43 -0800,1599,4830 -7166,4682,2013-11-07 04:26:19 -0800,1599,4833 -7167,4237,2013-11-12 07:53:37 -0800,1599,4832 -7168,6254,2013-11-08 13:08:02 -0800,1599,4834 -7169,1697,2013-11-10 19:13:39 -0800,1600,4838 -7170,9026,2013-11-06 13:13:07 -0800,1600,4836 -7171,8246,2013-11-08 06:22:31 -0800,1601,4840 -7172,727,2013-11-11 13:48:40 -0800,1601,4840 -7173,5981,2013-11-08 09:10:13 -0800,1601,4840 -7174,7579,2013-11-07 12:47:55 -0800,1601,4840 -7175,2434,2013-11-09 17:36:04 -0800,1601,4840 -7176,3041,2013-11-13 02:12:26 -0800,1601,4840 -7177,4678,2013-11-10 17:20:57 -0800,1601,4840 -7178,3156,2013-11-10 15:36:00 -0800,1601,4841 -7179,3854,2013-11-07 03:28:41 -0800,1602,4842 -7180,6175,2013-11-12 11:40:23 -0800,1602,4842 -7181,6390,2013-11-06 17:07:21 -0800,1603,4843 -7182,8817,2013-11-13 04:28:21 -0800,1603,4843 -7183,7366,2013-11-08 01:55:14 -0800,1603,4843 -7184,5181,2013-11-07 13:46:12 -0800,1603,4843 -7185,2295,2013-11-11 16:05:17 -0800,1604,4846 -7186,9244,2013-11-13 07:51:15 -0800,1604,4844 -7187,487,2013-11-08 22:32:01 -0800,1604,4844 -7188,2724,2013-11-07 01:30:31 -0800,1604,4846 -7189,7817,2013-11-12 15:16:38 -0800,1604,4846 -7190,7927,2013-11-09 23:35:11 -0800,1605,4849 -7191,2527,2013-11-07 06:34:14 -0800,1605,4850 -7192,6720,2013-11-08 08:27:22 -0800,1605,4851 -7193,320,2013-11-11 16:37:45 -0800,1605,4849 -7194,130,2013-11-09 12:55:19 -0800,1605,4848 -7195,8990,2013-11-08 12:11:04 -0800,1605,4851 -7196,2075,2013-11-12 05:39:06 -0800,1605,4851 -7197,731,2013-11-09 15:40:15 -0800,1605,4850 -7198,578,2013-11-07 02:53:56 -0800,1606,4855 -7199,3247,2013-11-13 04:35:05 -0800,1606,4852 -7200,8678,2013-11-07 12:54:42 -0800,1606,4852 -7201,6781,2013-11-08 22:16:25 -0800,1606,4853 -7202,694,2013-11-12 21:25:32 -0800,1607,4858 -7203,991,2013-11-07 20:07:09 -0800,1607,4861 -7204,9324,2013-11-10 01:20:48 -0800,1607,4858 -7205,3844,2013-11-12 10:08:35 -0800,1607,4859 -7206,5545,2013-11-11 15:30:18 -0800,1609,4867 -7207,31,2013-11-10 18:05:48 -0800,1609,4867 -7208,250,2013-11-09 08:49:23 -0800,1610,4871 -7209,4300,2013-11-08 06:17:47 -0800,1610,4870 -7210,3225,2013-11-12 00:16:34 -0800,1610,4871 -7211,6376,2013-11-07 01:38:37 -0800,1611,4875 -7212,661,2013-11-13 01:39:13 -0800,1611,4876 -7213,9365,2013-11-09 02:12:55 -0800,1611,4875 -7214,2622,2013-11-08 07:09:28 -0800,1611,4875 -7215,1389,2013-11-11 16:22:31 -0800,1611,4877 -7216,2543,2013-11-06 17:18:33 -0800,1611,4875 -7217,6790,2013-11-08 07:05:23 -0800,1611,4877 -7218,2978,2013-11-10 05:14:15 -0800,1611,4878 -7219,5050,2013-11-06 09:04:30 -0800,1613,4884 -7220,1813,2013-11-07 17:05:00 -0800,1614,4889 -7221,9531,2013-11-11 05:03:17 -0800,1614,4885 -7222,4895,2013-11-13 04:02:00 -0800,1614,4888 -7223,284,2013-11-06 11:06:34 -0800,1615,4890 -7224,548,2013-11-12 17:04:45 -0800,1615,4892 -7225,3215,2013-11-08 14:01:59 -0800,1615,4891 -7226,2080,2013-11-13 07:53:10 -0800,1615,4890 -7227,2929,2013-11-11 16:01:05 -0800,1615,4892 -7228,3225,2013-11-12 06:02:44 -0800,1615,4891 -7229,9214,2013-11-08 14:13:41 -0800,1615,4890 -7230,7634,2013-11-12 22:24:39 -0800,1615,4891 -7231,2351,2013-11-08 22:45:11 -0800,1615,4890 -7232,9293,2013-11-08 02:06:32 -0800,1616,4893 -7233,5857,2013-11-08 18:30:45 -0800,1616,4893 -7234,1580,2013-11-08 12:05:33 -0800,1616,4893 -7235,9833,2013-11-13 06:31:35 -0800,1616,4893 -7236,4346,2013-11-12 03:04:56 -0800,1616,4893 -7237,6140,2013-11-09 09:11:14 -0800,1617,4894 -7238,8720,2013-11-10 14:43:41 -0800,1617,4894 -7239,5232,2013-11-07 14:29:21 -0800,1617,4894 -7240,3286,2013-11-11 07:57:11 -0800,1618,4898 -7241,9357,2013-11-12 23:15:53 -0800,1618,4899 -7242,6920,2013-11-12 02:56:42 -0800,1618,4895 -7243,6177,2013-11-11 15:14:14 -0800,1618,4897 -7244,2680,2013-11-06 10:39:35 -0800,1618,4897 -7245,1410,2013-11-11 05:33:11 -0800,1618,4896 -7246,8372,2013-11-13 06:21:44 -0800,1619,4900 -7247,3486,2013-11-11 22:30:29 -0800,1619,4902 -7248,1011,2013-11-06 17:52:09 -0800,1619,4902 -7249,5023,2013-11-12 08:56:37 -0800,1619,4900 -7250,5922,2013-11-09 21:12:30 -0800,1620,4903 -7251,3225,2013-11-07 00:03:47 -0800,1620,4903 -7252,4583,2013-11-12 04:55:00 -0800,1620,4903 -7253,8580,2013-11-10 01:37:53 -0800,1623,4912 -7254,8667,2013-11-12 00:36:56 -0800,1623,4915 -7255,5621,2013-11-12 04:17:18 -0800,1624,4918 -7256,6578,2013-11-06 14:25:53 -0800,1624,4920 -7257,2993,2013-11-11 10:08:42 -0800,1625,4921 -7258,2028,2013-11-08 01:19:41 -0800,1625,4922 -7259,2327,2013-11-07 09:16:38 -0800,1626,4923 -7260,2032,2013-11-07 01:48:31 -0800,1626,4923 -7261,5235,2013-11-10 04:47:03 -0800,1626,4923 -7262,1256,2013-11-09 19:57:04 -0800,1626,4924 -7263,6581,2013-11-12 08:35:10 -0800,1626,4923 -7264,9278,2013-11-08 02:48:28 -0800,1626,4923 -7265,8595,2013-11-07 23:45:05 -0800,1626,4924 -7266,7877,2013-11-08 08:02:26 -0800,1626,4924 -7267,8746,2013-11-08 08:15:41 -0800,1627,4925 -7268,622,2013-11-08 10:49:09 -0800,1627,4926 -7269,7290,2013-11-08 18:34:56 -0800,1627,4926 -7270,6909,2013-11-09 15:03:54 -0800,1627,4928 -7271,1386,2013-11-09 22:41:31 -0800,1627,4925 -7272,2345,2013-11-09 16:47:28 -0800,1627,4926 -7273,1780,2013-11-12 16:22:22 -0800,1627,4928 -7274,7227,2013-11-10 03:14:58 -0800,1627,4926 -7275,9455,2013-11-09 18:01:29 -0800,1628,4930 -7276,9845,2013-11-12 09:49:57 -0800,1628,4930 -7277,1171,2013-11-08 08:12:08 -0800,1628,4930 -7278,8466,2013-11-08 13:34:02 -0800,1629,4933 -7279,6981,2013-11-12 12:15:42 -0800,1629,4932 -7280,396,2013-11-11 12:12:53 -0800,1630,4934 -7281,3697,2013-11-09 00:18:52 -0800,1630,4934 -7282,6894,2013-11-11 09:10:21 -0800,1630,4934 -7283,2171,2013-11-11 18:52:02 -0800,1630,4934 -7284,5344,2013-11-11 03:03:04 -0800,1630,4934 -7285,5082,2013-11-09 10:33:18 -0800,1630,4934 -7286,3986,2013-11-06 19:00:07 -0800,1631,4939 -7287,917,2013-11-08 20:04:09 -0800,1631,4935 -7288,8715,2013-11-07 06:43:43 -0800,1631,4937 -7289,8387,2013-11-11 17:59:56 -0800,1631,4935 -7290,8640,2013-11-12 07:05:32 -0800,1631,4938 -7291,8557,2013-11-11 01:39:37 -0800,1631,4937 -7292,624,2013-11-08 06:48:13 -0800,1631,4936 -7293,9511,2013-11-08 12:30:26 -0800,1631,4935 -7294,1043,2013-11-10 06:26:59 -0800,1632,4940 -7295,5489,2013-11-11 17:23:26 -0800,1632,4943 -7296,1453,2013-11-11 02:16:37 -0800,1632,4942 -7297,6795,2013-11-10 05:33:28 -0800,1632,4940 -7298,4482,2013-11-10 23:05:16 -0800,1632,4941 -7299,6698,2013-11-07 22:28:27 -0800,1632,4941 -7300,9584,2013-11-10 02:47:06 -0800,1632,4941 -7301,7876,2013-11-09 04:21:37 -0800,1632,4941 -7302,3078,2013-11-10 00:48:49 -0800,1633,4945 -7303,9083,2013-11-12 18:45:04 -0800,1633,4945 -7304,5950,2013-11-09 13:08:19 -0800,1633,4946 -7305,8690,2013-11-07 11:50:58 -0800,1633,4945 -7306,5500,2013-11-07 01:28:23 -0800,1634,4949 -7307,6258,2013-11-11 20:56:01 -0800,1634,4947 -7308,4490,2013-11-07 04:44:49 -0800,1634,4948 -7309,140,2013-11-07 11:31:03 -0800,1634,4948 -7310,9390,2013-11-07 18:07:32 -0800,1634,4949 -7311,2544,2013-11-09 05:12:51 -0800,1634,4948 -7312,2896,2013-11-11 19:35:13 -0800,1634,4949 -7313,8722,2013-11-07 14:50:42 -0800,1635,4951 -7314,5789,2013-11-11 23:23:02 -0800,1635,4950 -7315,9382,2013-11-12 09:59:24 -0800,1636,4955 -7316,5260,2013-11-09 00:24:04 -0800,1637,4957 -7317,7212,2013-11-07 18:30:48 -0800,1637,4958 -7318,5514,2013-11-06 18:41:38 -0800,1637,4958 -7319,4231,2013-11-06 17:11:22 -0800,1637,4958 -7320,6210,2013-11-08 07:43:44 -0800,1637,4957 -7321,6900,2013-11-10 18:02:56 -0800,1637,4958 -7322,3778,2013-11-08 12:55:23 -0800,1638,4963 -7323,9343,2013-11-07 02:01:07 -0800,1638,4960 -7324,5958,2013-11-08 10:15:50 -0800,1638,4960 -7325,696,2013-11-11 18:20:56 -0800,1638,4963 -7326,1142,2013-11-09 17:09:31 -0800,1638,4963 -7327,8014,2013-11-10 11:27:25 -0800,1638,4961 -7328,4656,2013-11-12 03:33:17 -0800,1638,4959 -7329,5662,2013-11-07 12:29:25 -0800,1638,4961 -7330,265,2013-11-10 15:26:23 -0800,1639,4964 -7331,9373,2013-11-10 10:33:39 -0800,1639,4964 -7332,9884,2013-11-11 06:03:21 -0800,1639,4965 -7333,719,2013-11-12 15:51:16 -0800,1639,4965 -7334,9865,2013-11-09 13:42:25 -0800,1640,4967 -7335,413,2013-11-11 05:07:10 -0800,1640,4967 -7336,1844,2013-11-10 12:11:02 -0800,1640,4966 -7337,5639,2013-11-10 16:27:59 -0800,1640,4967 -7338,8280,2013-11-08 05:00:12 -0800,1640,4966 -7339,8774,2013-11-12 10:05:43 -0800,1640,4967 -7340,3790,2013-11-11 17:33:34 -0800,1640,4966 -7341,2421,2013-11-09 10:52:44 -0800,1641,4968 -7342,2670,2013-11-07 21:19:01 -0800,1641,4969 -7343,7898,2013-11-12 19:24:05 -0800,1641,4969 -7344,8385,2013-11-07 19:28:52 -0800,1641,4969 -7345,1469,2013-11-11 13:17:54 -0800,1641,4968 -7346,5128,2013-11-07 20:17:39 -0800,1641,4969 -7347,3872,2013-11-06 15:57:24 -0800,1641,4969 -7348,7725,2013-11-11 09:09:34 -0800,1641,4969 -7349,1920,2013-11-06 13:18:48 -0800,1642,4971 -7350,6770,2013-11-09 06:43:23 -0800,1643,4976 -7351,5735,2013-11-10 22:39:32 -0800,1643,4975 -7352,1192,2013-11-12 14:54:23 -0800,1643,4975 -7353,1053,2013-11-13 05:22:14 -0800,1643,4976 -7354,2260,2013-11-10 05:56:05 -0800,1644,4978 -7355,7083,2013-11-08 21:02:06 -0800,1644,4979 -7356,4954,2013-11-07 10:10:13 -0800,1644,4981 -7357,3133,2013-11-08 19:53:41 -0800,1645,4982 -7358,8913,2013-11-12 16:48:35 -0800,1645,4982 -7359,6198,2013-11-12 05:11:01 -0800,1645,4984 -7360,7063,2013-11-09 02:51:13 -0800,1645,4983 -7361,6159,2013-11-06 10:47:46 -0800,1645,4982 -7362,811,2013-11-11 17:59:20 -0800,1645,4982 -7363,9399,2013-11-09 22:32:26 -0800,1645,4982 -7364,932,2013-11-10 07:21:08 -0800,1646,4989 -7365,7273,2013-11-12 01:19:19 -0800,1646,4989 -7366,4854,2013-11-10 15:51:25 -0800,1646,4988 -7367,7014,2013-11-08 00:30:07 -0800,1646,4990 -7368,4598,2013-11-07 16:46:16 -0800,1646,4988 -7369,5695,2013-11-11 07:38:08 -0800,1646,4987 -7370,3950,2013-11-06 18:55:15 -0800,1646,4990 -7371,2114,2013-11-12 15:03:49 -0800,1648,4995 -7372,4815,2013-11-08 21:18:42 -0800,1648,4994 -7373,9812,2013-11-09 13:33:48 -0800,1648,4993 -7374,5985,2013-11-10 06:57:18 -0800,1648,4995 -7375,40,2013-11-10 23:43:41 -0800,1648,4992 -7376,7583,2013-11-09 22:37:07 -0800,1649,4999 -7377,1678,2013-11-09 18:41:03 -0800,1649,4996 -7378,8836,2013-11-12 18:01:49 -0800,1649,4996 -7379,2789,2013-11-08 13:39:54 -0800,1649,4996 -7380,6912,2013-11-10 04:15:44 -0800,1649,4999 -7381,5513,2013-11-11 01:50:15 -0800,1650,5001 -7382,7318,2013-11-10 06:03:33 -0800,1650,5001 -7383,4538,2013-11-07 21:07:13 -0800,1650,5002 -7384,9810,2013-11-08 12:49:42 -0800,1651,5006 -7385,424,2013-11-09 09:37:37 -0800,1651,5006 -7386,2714,2013-11-10 16:59:35 -0800,1651,5005 -7387,1198,2013-11-09 04:44:56 -0800,1651,5006 -7388,580,2013-11-12 04:11:32 -0800,1651,5005 -7389,350,2013-11-07 16:25:48 -0800,1652,5009 -7390,4563,2013-11-07 09:03:43 -0800,1652,5009 -7391,6351,2013-11-10 17:51:10 -0800,1652,5007 -7392,1234,2013-11-12 22:01:14 -0800,1652,5007 -7393,331,2013-11-12 06:29:25 -0800,1652,5009 -7394,7945,2013-11-10 20:08:51 -0800,1652,5011 -7395,8636,2013-11-11 13:41:45 -0800,1652,5007 -7396,7956,2013-11-10 23:43:26 -0800,1652,5008 -7397,18,2013-11-08 20:20:56 -0800,1652,5009 -7398,5375,2013-11-11 11:15:37 -0800,1653,5012 -7399,5176,2013-11-10 21:51:02 -0800,1653,5013 -7400,1314,2013-11-09 20:40:03 -0800,1653,5012 -7401,4872,2013-11-10 22:35:38 -0800,1653,5012 -7402,5625,2013-11-06 23:15:55 -0800,1653,5012 -7403,3989,2013-11-11 02:11:57 -0800,1653,5013 -7404,4477,2013-11-12 23:40:00 -0800,1653,5012 -7405,6831,2013-11-12 07:50:16 -0800,1654,5017 -7406,1230,2013-11-07 09:14:48 -0800,1654,5017 -7407,3315,2013-11-10 20:19:19 -0800,1654,5017 -7408,2939,2013-11-13 06:35:34 -0800,1655,5022 -7409,8774,2013-11-07 18:41:18 -0800,1657,5025 -7410,385,2013-11-10 14:34:47 -0800,1657,5025 -7411,2748,2013-11-12 08:51:44 -0800,1657,5025 -7412,9463,2013-11-07 01:08:19 -0800,1657,5025 -7413,4312,2013-11-09 19:51:59 -0800,1657,5025 -7414,2457,2013-11-08 13:10:34 -0800,1657,5025 -7415,9514,2013-11-10 00:07:04 -0800,1657,5025 -7416,861,2013-11-11 20:31:11 -0800,1657,5025 -7417,3411,2013-11-07 14:42:57 -0800,1658,5026 -7418,7043,2013-11-09 07:48:44 -0800,1658,5027 -7419,7643,2013-11-09 14:28:00 -0800,1658,5027 -7420,7678,2013-11-07 13:06:48 -0800,1658,5026 -7421,3936,2013-11-11 16:25:03 -0800,1658,5026 -7422,4789,2013-11-12 05:49:42 -0800,1658,5026 -7423,1312,2013-11-09 01:28:17 -0800,1658,5026 -7424,5126,2013-11-07 10:53:42 -0800,1658,5026 -7425,9214,2013-11-06 12:35:27 -0800,1659,5029 -7426,3518,2013-11-10 21:35:33 -0800,1659,5029 -7427,8610,2013-11-07 18:50:13 -0800,1659,5030 -7428,1932,2013-11-11 05:58:20 -0800,1659,5030 -7429,7370,2013-11-08 21:19:52 -0800,1659,5030 -7430,9440,2013-11-07 14:07:26 -0800,1659,5030 -7431,921,2013-11-07 02:03:49 -0800,1660,5032 -7432,7578,2013-11-08 23:34:30 -0800,1660,5031 -7433,5760,2013-11-09 06:30:57 -0800,1661,5034 -7434,3450,2013-11-09 18:42:27 -0800,1661,5034 -7435,598,2013-11-08 23:45:50 -0800,1661,5034 -7436,2074,2013-11-12 05:16:35 -0800,1662,5035 -7437,1044,2013-11-11 07:15:46 -0800,1662,5035 -7438,2843,2013-11-12 00:03:30 -0800,1662,5035 -7439,9322,2013-11-10 10:27:47 -0800,1663,5039 -7440,6377,2013-11-09 23:04:23 -0800,1663,5039 -7441,8627,2013-11-11 13:22:16 -0800,1663,5037 -7442,4743,2013-11-06 18:43:39 -0800,1663,5037 -7443,340,2013-11-12 02:41:58 -0800,1663,5039 -7444,6975,2013-11-08 16:58:41 -0800,1664,5041 -7445,1130,2013-11-06 11:01:01 -0800,1664,5040 -7446,4132,2013-11-11 07:10:24 -0800,1664,5041 -7447,1240,2013-11-11 15:03:01 -0800,1664,5040 -7448,8529,2013-11-12 12:42:53 -0800,1664,5040 -7449,649,2013-11-11 16:06:31 -0800,1665,5043 -7450,7819,2013-11-08 03:48:11 -0800,1665,5045 -7451,3379,2013-11-09 18:31:48 -0800,1665,5045 -7452,3664,2013-11-08 00:16:20 -0800,1665,5042 -7453,9154,2013-11-07 08:59:50 -0800,1666,5046 -7454,371,2013-11-10 01:25:07 -0800,1667,5050 -7455,2320,2013-11-07 07:12:42 -0800,1667,5051 -7456,794,2013-11-10 18:53:49 -0800,1667,5053 -7457,4433,2013-11-10 10:39:19 -0800,1667,5053 -7458,7754,2013-11-12 18:12:34 -0800,1667,5051 -7459,2256,2013-11-13 04:37:39 -0800,1667,5053 -7460,4019,2013-11-11 16:10:09 -0800,1668,5054 -7461,1692,2013-11-12 20:49:38 -0800,1668,5054 -7462,5873,2013-11-11 00:39:05 -0800,1668,5054 -7463,5194,2013-11-08 03:05:39 -0800,1668,5054 -7464,7273,2013-11-11 05:29:52 -0800,1668,5054 -7465,9564,2013-11-10 06:01:53 -0800,1668,5054 -7466,2955,2013-11-07 03:05:38 -0800,1668,5054 -7467,9860,2013-11-08 01:08:42 -0800,1669,5058 -7468,9720,2013-11-09 15:08:51 -0800,1669,5058 -7469,8625,2013-11-09 07:54:01 -0800,1669,5059 -7470,9141,2013-11-11 13:24:52 -0800,1669,5055 -7471,3561,2013-11-13 03:22:30 -0800,1670,5060 -7472,6441,2013-11-09 16:27:34 -0800,1670,5060 -7473,273,2013-11-07 17:48:52 -0800,1670,5060 -7474,9823,2013-11-09 04:31:19 -0800,1670,5060 -7475,2386,2013-11-13 02:53:06 -0800,1671,5062 -7476,876,2013-11-09 22:13:34 -0800,1671,5063 -7477,3790,2013-11-06 21:10:50 -0800,1671,5063 -7478,747,2013-11-11 21:35:21 -0800,1671,5062 -7479,1543,2013-11-09 22:55:40 -0800,1671,5063 -7480,5197,2013-11-10 09:35:33 -0800,1671,5061 -7481,7528,2013-11-10 14:57:25 -0800,1671,5061 -7482,5215,2013-11-09 12:11:25 -0800,1671,5063 -7483,2859,2013-11-10 13:35:10 -0800,1672,5065 -7484,6263,2013-11-11 10:27:05 -0800,1672,5066 -7485,5180,2013-11-09 10:10:49 -0800,1672,5064 -7486,5911,2013-11-09 08:21:35 -0800,1672,5064 -7487,3797,2013-11-12 07:34:07 -0800,1672,5064 -7488,726,2013-11-08 16:52:40 -0800,1672,5064 -7489,496,2013-11-10 16:17:14 -0800,1672,5065 -7490,2733,2013-11-10 22:00:01 -0800,1673,5068 -7491,5541,2013-11-11 04:40:28 -0800,1673,5068 -7492,6088,2013-11-07 09:44:30 -0800,1673,5068 -7493,6831,2013-11-09 02:15:59 -0800,1673,5068 -7494,1620,2013-11-09 15:06:20 -0800,1673,5068 -7495,6645,2013-11-12 14:16:45 -0800,1673,5068 -7496,5435,2013-11-11 07:59:57 -0800,1674,5070 -7497,980,2013-11-11 12:01:50 -0800,1674,5071 -7498,3720,2013-11-13 02:30:02 -0800,1674,5069 -7499,358,2013-11-12 18:27:45 -0800,1674,5070 -7500,8974,2013-11-07 11:47:50 -0800,1674,5070 -7501,2689,2013-11-07 11:40:28 -0800,1674,5071 -7502,5853,2013-11-11 11:42:42 -0800,1674,5070 -7503,2740,2013-11-12 17:42:14 -0800,1674,5071 -7504,1424,2013-11-09 02:22:58 -0800,1675,5072 -7505,1295,2013-11-08 20:01:07 -0800,1675,5073 -7506,1470,2013-11-08 16:55:56 -0800,1675,5073 -7507,3482,2013-11-08 00:58:12 -0800,1675,5072 -7508,6288,2013-11-13 01:43:25 -0800,1675,5073 -7509,3970,2013-11-08 05:57:06 -0800,1675,5073 -7510,5459,2013-11-11 19:45:15 -0800,1675,5073 -7511,8164,2013-11-08 06:20:02 -0800,1675,5073 -7512,6075,2013-11-11 10:48:22 -0800,1677,5083 -7513,913,2013-11-12 10:20:26 -0800,1677,5080 -7514,1024,2013-11-08 05:38:36 -0800,1677,5081 -7515,476,2013-11-09 16:02:46 -0800,1677,5082 -7516,2741,2013-11-07 06:48:37 -0800,1678,5085 -7517,3792,2013-11-11 05:23:25 -0800,1679,5089 -7518,7669,2013-11-07 03:17:58 -0800,1679,5089 -7519,362,2013-11-07 17:47:23 -0800,1679,5090 -7520,5838,2013-11-12 17:26:34 -0800,1679,5089 -7521,6868,2013-11-11 03:02:54 -0800,1679,5089 -7522,4972,2013-11-10 08:31:23 -0800,1679,5090 -7523,6859,2013-11-08 09:52:22 -0800,1679,5090 -7524,6110,2013-11-08 10:57:57 -0800,1679,5090 -7525,6934,2013-11-11 10:48:03 -0800,1680,5092 -7526,3779,2013-11-10 23:05:19 -0800,1680,5091 -7527,4423,2013-11-09 07:44:26 -0800,1680,5091 -7528,1276,2013-11-06 20:26:31 -0800,1680,5091 -7529,1585,2013-11-07 20:11:14 -0800,1681,5095 -7530,6073,2013-11-11 22:13:28 -0800,1681,5093 -7531,9645,2013-11-09 13:39:21 -0800,1681,5093 -7532,3329,2013-11-10 07:17:16 -0800,1682,5098 -7533,8384,2013-11-11 10:30:28 -0800,1682,5098 -7534,5851,2013-11-10 12:29:09 -0800,1682,5098 -7535,8436,2013-11-07 03:51:43 -0800,1682,5098 -7536,4256,2013-11-11 20:43:57 -0800,1682,5098 -7537,5451,2013-11-09 03:01:23 -0800,1682,5098 -7538,589,2013-11-08 23:06:01 -0800,1682,5098 -7539,5929,2013-11-12 12:51:40 -0800,1682,5098 -7540,3714,2013-11-07 00:39:53 -0800,1682,5098 -7541,5982,2013-11-07 07:28:31 -0800,1684,5104 -7542,2687,2013-11-07 15:53:10 -0800,1684,5105 -7543,1661,2013-11-11 09:59:42 -0800,1684,5105 -7544,1196,2013-11-11 09:47:44 -0800,1684,5105 -7545,3950,2013-11-12 07:35:37 -0800,1684,5105 -7546,2643,2013-11-09 15:41:45 -0800,1684,5104 -7547,2633,2013-11-09 11:15:44 -0800,1684,5104 -7548,1623,2013-11-12 05:30:05 -0800,1685,5107 -7549,150,2013-11-06 09:05:06 -0800,1685,5109 -7550,5070,2013-11-08 11:30:19 -0800,1686,5112 -7551,5925,2013-11-06 14:32:04 -0800,1686,5111 -7552,5945,2013-11-13 04:00:28 -0800,1686,5111 -7553,2974,2013-11-11 19:14:48 -0800,1686,5113 -7554,149,2013-11-09 23:30:07 -0800,1687,5116 -7555,450,2013-11-09 15:00:53 -0800,1687,5115 -7556,2724,2013-11-10 01:17:04 -0800,1688,5119 -7557,823,2013-11-06 18:30:57 -0800,1688,5119 -7558,9728,2013-11-12 14:14:26 -0800,1688,5121 -7559,271,2013-11-08 02:58:45 -0800,1688,5120 -7560,3452,2013-11-12 17:02:20 -0800,1688,5121 -7561,4065,2013-11-06 13:25:51 -0800,1688,5119 -7562,7551,2013-11-11 10:15:07 -0800,1688,5119 -7563,8479,2013-11-12 19:20:42 -0800,1689,5123 -7564,5439,2013-11-12 15:20:23 -0800,1691,5125 -7565,9445,2013-11-12 19:29:26 -0800,1691,5125 -7566,7240,2013-11-12 06:43:27 -0800,1691,5125 -7567,1370,2013-11-09 01:46:12 -0800,1691,5125 -7568,6554,2013-11-07 09:31:18 -0800,1691,5125 -7569,1867,2013-11-12 01:38:41 -0800,1691,5125 -7570,6725,2013-11-13 00:57:04 -0800,1691,5125 -7571,1947,2013-11-08 15:02:25 -0800,1691,5125 -7572,2251,2013-11-07 19:24:57 -0800,1691,5125 -7573,1675,2013-11-13 07:44:09 -0800,1692,5127 -7574,2969,2013-11-06 13:22:49 -0800,1692,5126 -7575,176,2013-11-07 04:10:31 -0800,1692,5127 -7576,1800,2013-11-13 01:11:57 -0800,1692,5126 -7577,9793,2013-11-13 07:51:17 -0800,1692,5126 -7578,243,2013-11-10 08:17:02 -0800,1693,5128 -7579,1258,2013-11-09 18:31:45 -0800,1693,5128 -7580,4957,2013-11-07 03:33:37 -0800,1693,5128 -7581,73,2013-11-11 09:47:59 -0800,1694,5130 -7582,6598,2013-11-06 19:32:04 -0800,1695,5132 -7583,8880,2013-11-08 21:59:01 -0800,1695,5133 -7584,7667,2013-11-09 18:14:10 -0800,1695,5134 -7585,5060,2013-11-10 19:19:22 -0800,1695,5134 -7586,7578,2013-11-13 07:01:27 -0800,1695,5134 -7587,9865,2013-11-12 05:02:05 -0800,1695,5132 -7588,8009,2013-11-10 17:00:46 -0800,1696,5135 -7589,2383,2013-11-09 19:47:32 -0800,1696,5136 -7590,2119,2013-11-08 07:09:37 -0800,1698,5142 -7591,4533,2013-11-09 23:20:19 -0800,1698,5142 -7592,9617,2013-11-07 20:34:29 -0800,1698,5141 -7593,848,2013-11-13 02:27:58 -0800,1698,5142 -7594,9222,2013-11-10 12:51:17 -0800,1698,5141 -7595,9356,2013-11-10 18:34:23 -0800,1699,5143 -7596,8960,2013-11-12 15:50:04 -0800,1699,5143 -7597,632,2013-11-07 23:32:54 -0800,1699,5143 -7598,5554,2013-11-11 21:39:58 -0800,1700,5145 -7599,6129,2013-11-13 02:59:28 -0800,1700,5144 -7600,3546,2013-11-12 07:59:40 -0800,1700,5144 -7601,5514,2013-11-08 13:47:18 -0800,1701,5149 -7602,4174,2013-11-08 03:32:18 -0800,1701,5149 -7603,3313,2013-11-10 22:01:26 -0800,1701,5147 -7604,1182,2013-11-12 09:37:19 -0800,1701,5150 -7605,6272,2013-11-12 18:36:41 -0800,1703,5159 -7606,9312,2013-11-08 02:40:44 -0800,1703,5159 -7607,3217,2013-11-11 02:07:19 -0800,1704,5163 -7608,2980,2013-11-09 18:12:56 -0800,1704,5164 -7609,5637,2013-11-10 20:55:32 -0800,1704,5165 -7610,754,2013-11-10 16:52:32 -0800,1706,5170 -7611,5985,2013-11-11 06:23:49 -0800,1706,5169 -7612,9639,2013-11-09 21:30:58 -0800,1706,5169 -7613,7888,2013-11-08 07:49:38 -0800,1707,5176 -7614,4373,2013-11-11 09:25:29 -0800,1707,5173 -7615,8480,2013-11-12 04:13:24 -0800,1707,5172 -7616,6169,2013-11-06 20:33:24 -0800,1707,5175 -7617,7788,2013-11-08 21:31:19 -0800,1707,5175 -7618,9288,2013-11-10 08:56:07 -0800,1707,5175 -7619,3845,2013-11-08 08:44:42 -0800,1707,5176 -7620,4636,2013-11-06 22:07:57 -0800,1707,5174 -7621,688,2013-11-08 22:08:32 -0800,1707,5173 -7622,2552,2013-11-10 12:52:41 -0800,1708,5179 -7623,1430,2013-11-09 12:55:14 -0800,1708,5178 -7624,459,2013-11-07 02:30:37 -0800,1708,5179 -7625,8782,2013-11-08 23:53:06 -0800,1709,5181 -7626,9777,2013-11-09 23:18:32 -0800,1709,5181 -7627,9223,2013-11-06 15:35:39 -0800,1709,5181 -7628,8723,2013-11-12 11:45:12 -0800,1709,5181 -7629,5220,2013-11-12 09:44:11 -0800,1709,5181 -7630,2119,2013-11-12 03:30:52 -0800,1709,5181 -7631,2798,2013-11-07 23:42:32 -0800,1709,5181 -7632,1350,2013-11-08 06:52:27 -0800,1710,5183 -7633,7969,2013-11-09 11:39:23 -0800,1710,5182 -7634,7840,2013-11-07 14:34:26 -0800,1710,5185 -7635,8830,2013-11-11 00:32:49 -0800,1710,5185 -7636,3157,2013-11-06 21:44:54 -0800,1710,5184 -7637,3786,2013-11-12 11:04:21 -0800,1710,5182 -7638,2039,2013-11-07 04:55:45 -0800,1710,5185 -7639,5746,2013-11-06 15:42:13 -0800,1711,5186 -7640,749,2013-11-09 12:24:55 -0800,1711,5188 -7641,1325,2013-11-07 05:08:10 -0800,1711,5190 -7642,8974,2013-11-11 04:57:09 -0800,1711,5187 -7643,4883,2013-11-08 18:26:31 -0800,1711,5189 -7644,9759,2013-11-09 04:19:15 -0800,1711,5189 -7645,3529,2013-11-09 17:53:51 -0800,1711,5186 -7646,6759,2013-11-08 18:18:28 -0800,1711,5190 -7647,3456,2013-11-11 18:07:14 -0800,1711,5187 -7648,222,2013-11-08 15:31:22 -0800,1712,5192 -7649,4875,2013-11-06 12:11:05 -0800,1712,5194 -7650,3917,2013-11-12 00:12:37 -0800,1712,5191 -7651,723,2013-11-07 06:50:27 -0800,1712,5193 -7652,8760,2013-11-06 14:37:11 -0800,1712,5194 -7653,4580,2013-11-08 09:25:06 -0800,1712,5192 -7654,3062,2013-11-11 20:22:34 -0800,1712,5194 -7655,4798,2013-11-12 00:52:49 -0800,1712,5192 -7656,1221,2013-11-10 14:55:09 -0800,1714,5200 -7657,9610,2013-11-06 12:45:34 -0800,1714,5201 -7658,6371,2013-11-12 19:22:38 -0800,1714,5201 -7659,3422,2013-11-12 19:23:05 -0800,1714,5200 -7660,1023,2013-11-09 06:40:07 -0800,1714,5201 -7661,4388,2013-11-11 03:19:44 -0800,1715,5205 -7662,9196,2013-11-12 00:57:52 -0800,1715,5202 -7663,9181,2013-11-08 13:37:56 -0800,1715,5202 -7664,7528,2013-11-09 10:42:45 -0800,1715,5203 -7665,3753,2013-11-11 16:48:00 -0800,1715,5205 -7666,6459,2013-11-08 11:35:11 -0800,1715,5205 -7667,2039,2013-11-12 13:24:27 -0800,1717,5211 -7668,7513,2013-11-12 09:47:47 -0800,1717,5213 -7669,4724,2013-11-11 08:46:09 -0800,1717,5212 -7670,1019,2013-11-11 06:53:55 -0800,1717,5212 -7671,4378,2013-11-09 11:06:21 -0800,1717,5213 -7672,4320,2013-11-12 01:19:26 -0800,1717,5212 -7673,7678,2013-11-10 19:39:27 -0800,1717,5213 -7674,1229,2013-11-12 08:32:19 -0800,1717,5212 -7675,7864,2013-11-09 12:48:55 -0800,1718,5215 -7676,4043,2013-11-12 03:04:28 -0800,1718,5215 -7677,5976,2013-11-09 19:55:38 -0800,1718,5218 -7678,3377,2013-11-10 16:29:52 -0800,1718,5216 -7679,6453,2013-11-11 00:42:53 -0800,1718,5219 -7680,1782,2013-11-11 13:55:09 -0800,1718,5217 -7681,6759,2013-11-12 16:15:27 -0800,1719,5224 -7682,3690,2013-11-09 05:04:43 -0800,1719,5222 -7683,7900,2013-11-07 21:03:56 -0800,1719,5224 -7684,6238,2013-11-08 18:38:50 -0800,1719,5223 -7685,2787,2013-11-09 09:58:56 -0800,1719,5222 -7686,5270,2013-11-08 22:18:50 -0800,1719,5222 -7687,7581,2013-11-11 19:04:49 -0800,1720,5228 -7688,6633,2013-11-09 12:01:45 -0800,1720,5226 -7689,7342,2013-11-11 08:27:47 -0800,1720,5227 -7690,7780,2013-11-09 08:20:17 -0800,1720,5227 -7691,5895,2013-11-07 03:50:14 -0800,1720,5227 -7692,6367,2013-11-08 07:59:10 -0800,1720,5227 -7693,8547,2013-11-12 05:21:13 -0800,1721,5229 -7694,7270,2013-11-11 08:03:59 -0800,1721,5229 -7695,6579,2013-11-10 06:12:49 -0800,1721,5229 -7696,827,2013-11-11 02:54:05 -0800,1721,5229 -7697,2245,2013-11-13 01:23:00 -0800,1721,5229 -7698,4412,2013-11-10 18:49:12 -0800,1722,5230 -7699,2080,2013-11-06 17:39:51 -0800,1722,5230 -7700,6783,2013-11-07 12:54:18 -0800,1722,5230 -7701,5852,2013-11-10 21:10:11 -0800,1722,5230 -7702,1723,2013-11-13 01:53:59 -0800,1722,5230 -7703,4567,2013-11-07 17:08:14 -0800,1723,5231 -7704,270,2013-11-13 07:16:28 -0800,1723,5231 -7705,4430,2013-11-12 18:44:07 -0800,1723,5231 -7706,4280,2013-11-11 10:12:33 -0800,1723,5231 -7707,6124,2013-11-12 04:44:53 -0800,1723,5231 -7708,7234,2013-11-08 05:48:54 -0800,1723,5231 -7709,6200,2013-11-07 21:13:54 -0800,1723,5231 -7710,2210,2013-11-06 16:20:00 -0800,1723,5231 -7711,9356,2013-11-12 08:16:25 -0800,1724,5235 -7712,9375,2013-11-12 16:02:00 -0800,1724,5233 -7713,8845,2013-11-07 13:59:19 -0800,1724,5234 -7714,67,2013-11-12 06:39:12 -0800,1724,5236 -7715,2153,2013-11-08 22:51:17 -0800,1725,5237 -7716,5864,2013-11-07 13:46:41 -0800,1725,5237 -7717,2397,2013-11-09 04:40:46 -0800,1726,5239 -7718,9068,2013-11-09 05:47:10 -0800,1726,5240 -7719,4298,2013-11-09 05:38:53 -0800,1726,5239 -7720,1446,2013-11-10 23:59:00 -0800,1726,5241 -7721,1150,2013-11-07 19:50:07 -0800,1726,5241 -7722,7287,2013-11-07 20:58:07 -0800,1726,5239 -7723,7179,2013-11-13 07:55:22 -0800,1726,5240 -7724,9436,2013-11-12 21:42:48 -0800,1727,5244 -7725,5130,2013-11-10 04:27:26 -0800,1727,5243 -7726,7817,2013-11-09 05:29:22 -0800,1727,5243 -7727,6840,2013-11-12 20:34:24 -0800,1727,5244 -7728,381,2013-11-07 09:22:57 -0800,1727,5244 -7729,3215,2013-11-11 05:41:44 -0800,1728,5247 -7730,9795,2013-11-10 21:11:21 -0800,1728,5247 -7731,8433,2013-11-08 04:43:57 -0800,1729,5248 -7732,9015,2013-11-08 21:56:31 -0800,1729,5248 -7733,9831,2013-11-11 05:54:25 -0800,1729,5248 -7734,140,2013-11-09 03:18:08 -0800,1729,5248 -7735,1711,2013-11-07 21:39:58 -0800,1729,5248 -7736,1115,2013-11-11 11:19:27 -0800,1729,5248 -7737,1399,2013-11-09 03:56:36 -0800,1730,5251 -7738,2688,2013-11-08 14:44:04 -0800,1730,5250 -7739,9792,2013-11-06 18:16:43 -0800,1730,5250 -7740,6119,2013-11-10 08:00:16 -0800,1730,5250 -7741,5460,2013-11-06 09:11:34 -0800,1730,5251 -7742,585,2013-11-07 17:05:39 -0800,1731,5252 -7743,2277,2013-11-11 12:09:28 -0800,1731,5252 -7744,4271,2013-11-08 10:52:28 -0800,1731,5252 -7745,2290,2013-11-08 20:00:18 -0800,1731,5252 -7746,535,2013-11-07 19:54:15 -0800,1731,5252 -7747,8063,2013-11-07 05:10:27 -0800,1731,5252 -7748,8595,2013-11-09 21:37:53 -0800,1731,5252 -7749,949,2013-11-09 07:12:38 -0800,1731,5252 -7750,2665,2013-11-10 17:43:25 -0800,1731,5252 -7751,5350,2013-11-09 03:55:57 -0800,1732,5257 -7752,8698,2013-11-09 15:53:03 -0800,1732,5255 -7753,7000,2013-11-12 09:16:30 -0800,1732,5253 -7754,3375,2013-11-11 01:39:13 -0800,1732,5256 -7755,7695,2013-11-09 04:13:17 -0800,1732,5256 -7756,1892,2013-11-11 00:16:53 -0800,1733,5260 -7757,4436,2013-11-12 06:35:12 -0800,1733,5262 -7758,8112,2013-11-08 04:27:01 -0800,1733,5260 -7759,9361,2013-11-09 17:29:15 -0800,1733,5260 -7760,5691,2013-11-10 21:20:23 -0800,1733,5261 -7761,1471,2013-11-12 16:26:02 -0800,1733,5261 -7762,2275,2013-11-12 14:10:48 -0800,1733,5258 -7763,2827,2013-11-08 23:13:43 -0800,1733,5260 -7764,6563,2013-11-07 12:34:03 -0800,1733,5262 -7765,8983,2013-11-09 09:31:35 -0800,1734,5263 -7766,6231,2013-11-06 23:41:09 -0800,1734,5263 -7767,3250,2013-11-07 02:38:40 -0800,1734,5263 -7768,2636,2013-11-12 14:05:17 -0800,1734,5263 -7769,2320,2013-11-09 11:33:36 -0800,1734,5263 -7770,9570,2013-11-08 06:46:10 -0800,1734,5263 -7771,2496,2013-11-10 21:01:44 -0800,1734,5263 -7772,8190,2013-11-07 19:50:12 -0800,1735,5267 -7773,7948,2013-11-09 01:10:15 -0800,1735,5265 -7774,9447,2013-11-08 10:25:24 -0800,1735,5264 -7775,8214,2013-11-10 21:22:44 -0800,1736,5271 -7776,7091,2013-11-08 18:41:26 -0800,1736,5271 -7777,5180,2013-11-11 01:24:32 -0800,1737,5273 -7778,746,2013-11-11 10:59:58 -0800,1738,5278 -7779,8239,2013-11-08 00:57:36 -0800,1738,5275 -7780,1378,2013-11-10 04:36:05 -0800,1738,5276 -7781,3670,2013-11-10 19:53:24 -0800,1738,5278 -7782,3925,2013-11-07 07:20:08 -0800,1738,5276 -7783,2010,2013-11-06 10:37:21 -0800,1738,5277 -7784,9050,2013-11-12 15:55:34 -0800,1738,5275 -7785,8900,2013-11-11 21:47:30 -0800,1738,5278 -7786,886,2013-11-06 19:16:19 -0800,1738,5276 -7787,7151,2013-11-07 02:06:25 -0800,1739,5279 -7788,2194,2013-11-10 19:30:56 -0800,1739,5279 -7789,8560,2013-11-13 00:56:18 -0800,1739,5279 -7790,7350,2013-11-12 22:23:38 -0800,1739,5280 -7791,2620,2013-11-08 05:01:58 -0800,1739,5280 -7792,7795,2013-11-08 18:25:03 -0800,1739,5279 -7793,9316,2013-11-07 01:18:57 -0800,1740,5281 -7794,9825,2013-11-13 01:54:50 -0800,1741,5286 -7795,5575,2013-11-08 06:38:02 -0800,1741,5286 -7796,4342,2013-11-07 01:15:17 -0800,1741,5286 -7797,2090,2013-11-09 20:30:06 -0800,1742,5287 -7798,8248,2013-11-07 18:58:09 -0800,1742,5290 -7799,4397,2013-11-06 21:38:59 -0800,1742,5287 -7800,7772,2013-11-10 03:37:16 -0800,1743,5292 -7801,7791,2013-11-12 20:36:52 -0800,1743,5291 -7802,8926,2013-11-07 08:13:32 -0800,1743,5293 -7803,1627,2013-11-13 04:57:05 -0800,1743,5292 -7804,6163,2013-11-10 00:56:40 -0800,1743,5292 -7805,3375,2013-11-12 10:05:15 -0800,1743,5293 -7806,6623,2013-11-07 15:28:01 -0800,1743,5292 -7807,3010,2013-11-11 14:13:31 -0800,1744,5294 -7808,1957,2013-11-08 04:26:14 -0800,1744,5294 -7809,167,2013-11-10 00:16:29 -0800,1744,5294 -7810,7458,2013-11-09 10:42:48 -0800,1744,5294 -7811,5774,2013-11-06 15:25:50 -0800,1744,5294 -7812,1464,2013-11-09 01:03:59 -0800,1744,5294 -7813,1173,2013-11-09 16:03:56 -0800,1744,5294 -7814,1585,2013-11-11 06:31:32 -0800,1744,5294 -7815,7130,2013-11-07 23:47:00 -0800,1744,5294 -7816,2178,2013-11-10 21:54:01 -0800,1745,5298 -7817,5819,2013-11-12 19:55:34 -0800,1745,5297 -7818,3775,2013-11-12 07:02:37 -0800,1745,5296 -7819,1560,2013-11-07 07:57:36 -0800,1745,5297 -7820,6516,2013-11-10 12:05:29 -0800,1745,5296 -7821,7166,2013-11-10 22:01:08 -0800,1745,5296 -7822,9777,2013-11-08 18:07:16 -0800,1745,5298 -7823,9275,2013-11-12 15:56:48 -0800,1745,5297 -7824,486,2013-11-10 05:49:48 -0800,1746,5301 -7825,6945,2013-11-06 20:51:24 -0800,1746,5300 -7826,8583,2013-11-10 06:50:42 -0800,1746,5301 -7827,7875,2013-11-07 22:39:39 -0800,1747,5302 -7828,5392,2013-11-11 22:07:14 -0800,1747,5302 -7829,7487,2013-11-10 11:39:38 -0800,1748,5303 -7830,4550,2013-11-12 16:34:07 -0800,1748,5303 -7831,3299,2013-11-12 14:51:52 -0800,1748,5303 -7832,4860,2013-11-12 10:55:32 -0800,1748,5303 -7833,1660,2013-11-11 09:16:21 -0800,1748,5303 -7834,5185,2013-11-10 18:50:46 -0800,1748,5303 -7835,334,2013-11-07 14:15:08 -0800,1748,5303 -7836,9521,2013-11-11 15:40:00 -0800,1748,5303 -7837,4876,2013-11-07 08:50:59 -0800,1749,5304 -7838,9680,2013-11-13 06:25:53 -0800,1749,5304 -7839,312,2013-11-08 13:47:03 -0800,1749,5304 -7840,11,2013-11-08 04:46:23 -0800,1749,5304 -7841,2761,2013-11-11 08:47:44 -0800,1749,5304 -7842,3761,2013-11-11 18:48:02 -0800,1749,5304 -7843,5323,2013-11-11 05:49:31 -0800,1749,5304 -7844,7686,2013-11-07 11:15:26 -0800,1749,5304 -7845,5467,2013-11-09 13:11:21 -0800,1749,5304 -7846,7794,2013-11-10 03:17:46 -0800,1750,5306 -7847,4983,2013-11-07 07:17:45 -0800,1750,5306 -7848,600,2013-11-09 08:19:36 -0800,1751,5308 -7849,7255,2013-11-09 11:24:12 -0800,1751,5307 -7850,3914,2013-11-11 01:50:21 -0800,1751,5307 -7851,4981,2013-11-08 21:08:16 -0800,1751,5309 -7852,124,2013-11-13 08:23:17 -0800,1752,5311 -7853,2395,2013-11-10 02:15:38 -0800,1752,5311 -7854,4547,2013-11-06 16:30:02 -0800,1752,5310 -7855,1323,2013-11-08 15:15:03 -0800,1752,5312 -7856,597,2013-11-07 18:31:21 -0800,1753,5313 -7857,4989,2013-11-10 07:34:59 -0800,1753,5314 -7858,1698,2013-11-09 19:36:45 -0800,1753,5315 -7859,7876,2013-11-11 01:16:13 -0800,1753,5313 -7860,9561,2013-11-09 17:20:25 -0800,1754,5318 -7861,3994,2013-11-07 22:49:12 -0800,1754,5318 -7862,2550,2013-11-07 11:11:03 -0800,1754,5317 -7863,3229,2013-11-10 09:26:26 -0800,1754,5316 -7864,8065,2013-11-09 22:47:32 -0800,1754,5317 -7865,8962,2013-11-09 05:20:05 -0800,1754,5320 -7866,9837,2013-11-13 07:01:38 -0800,1754,5318 -7867,381,2013-11-08 05:04:06 -0800,1755,5323 -7868,7709,2013-11-06 10:19:02 -0800,1755,5323 -7869,3850,2013-11-07 12:31:23 -0800,1755,5321 -7870,8354,2013-11-11 19:34:22 -0800,1755,5322 -7871,8495,2013-11-11 23:28:41 -0800,1755,5323 -7872,9429,2013-11-12 17:07:14 -0800,1755,5322 -7873,8150,2013-11-09 07:18:21 -0800,1755,5321 -7874,2518,2013-11-13 05:27:05 -0800,1755,5321 -7875,3636,2013-11-09 08:13:41 -0800,1756,5324 -7876,2116,2013-11-11 04:59:06 -0800,1756,5325 -7877,5335,2013-11-12 03:07:03 -0800,1756,5325 -7878,2788,2013-11-08 01:29:13 -0800,1756,5325 -7879,1913,2013-11-11 09:47:10 -0800,1757,5331 -7880,7858,2013-11-08 03:50:46 -0800,1757,5330 -7881,9835,2013-11-12 23:51:14 -0800,1757,5327 -7882,4167,2013-11-09 19:40:18 -0800,1757,5328 -7883,9827,2013-11-12 18:29:02 -0800,1757,5328 -7884,8016,2013-11-08 16:20:51 -0800,1757,5328 -7885,9630,2013-11-07 22:00:14 -0800,1757,5328 -7886,6876,2013-11-12 12:21:01 -0800,1757,5328 -7887,7827,2013-11-12 04:30:25 -0800,1758,5332 -7888,3579,2013-11-11 03:46:52 -0800,1758,5332 -7889,5879,2013-11-10 19:42:17 -0800,1758,5332 -7890,6374,2013-11-12 06:35:37 -0800,1758,5332 -7891,1726,2013-11-11 21:31:22 -0800,1758,5332 -7892,9491,2013-11-12 18:10:10 -0800,1758,5332 -7893,5557,2013-11-07 16:14:23 -0800,1758,5332 -7894,3234,2013-11-07 16:45:21 -0800,1758,5332 -7895,4480,2013-11-10 07:07:44 -0800,1759,5334 -7896,7163,2013-11-06 12:15:23 -0800,1761,5339 -7897,1966,2013-11-07 04:40:03 -0800,1761,5339 -7898,9026,2013-11-11 07:45:34 -0800,1761,5339 -7899,7097,2013-11-09 02:25:29 -0800,1761,5339 -7900,3376,2013-11-09 04:47:04 -0800,1761,5339 -7901,9173,2013-11-06 19:26:21 -0800,1761,5339 -7902,953,2013-11-08 18:50:58 -0800,1761,5339 -7903,5338,2013-11-11 22:35:18 -0800,1762,5341 -7904,5256,2013-11-07 21:52:15 -0800,1763,5345 -7905,1265,2013-11-06 18:23:04 -0800,1765,5350 -7906,9510,2013-11-08 15:33:54 -0800,1765,5349 -7907,6628,2013-11-07 20:10:00 -0800,1765,5351 -7908,5878,2013-11-07 19:13:45 -0800,1765,5350 -7909,385,2013-11-12 23:44:12 -0800,1765,5349 -7910,7350,2013-11-06 22:59:32 -0800,1765,5350 -7911,7866,2013-11-12 16:43:24 -0800,1766,5353 -7912,4733,2013-11-08 23:03:49 -0800,1766,5352 -7913,5615,2013-11-11 17:07:17 -0800,1768,5360 -7914,578,2013-11-10 22:26:05 -0800,1769,5362 -7915,7453,2013-11-06 18:56:44 -0800,1769,5361 -7916,9289,2013-11-08 22:40:51 -0800,1769,5361 -7917,4823,2013-11-06 18:10:35 -0800,1769,5364 -7918,1175,2013-11-10 04:52:21 -0800,1769,5363 -7919,3834,2013-11-11 06:02:41 -0800,1769,5364 -7920,4645,2013-11-07 02:11:17 -0800,1769,5363 -7921,2520,2013-11-08 12:38:24 -0800,1770,5366 -7922,7698,2013-11-12 19:45:58 -0800,1770,5367 -7923,1720,2013-11-11 04:34:20 -0800,1772,5372 -7924,4526,2013-11-12 23:43:42 -0800,1772,5372 -7925,3518,2013-11-12 22:27:46 -0800,1772,5372 -7926,8267,2013-11-07 02:10:30 -0800,1772,5372 -7927,9012,2013-11-13 00:28:41 -0800,1772,5372 -7928,994,2013-11-06 20:10:55 -0800,1772,5372 -7929,1160,2013-11-11 11:02:07 -0800,1772,5372 -7930,2080,2013-11-09 03:11:58 -0800,1772,5372 -7931,471,2013-11-07 18:19:27 -0800,1773,5373 -7932,227,2013-11-11 18:17:25 -0800,1773,5373 -7933,5940,2013-11-12 07:49:14 -0800,1773,5375 -7934,3040,2013-11-09 02:58:08 -0800,1773,5374 -7935,6060,2013-11-10 02:03:56 -0800,1773,5375 -7936,6983,2013-11-10 04:56:04 -0800,1773,5373 -7937,1117,2013-11-08 16:11:52 -0800,1773,5374 -7938,9588,2013-11-11 03:25:39 -0800,1773,5373 -7939,2290,2013-11-09 18:43:58 -0800,1774,5376 -7940,9330,2013-11-07 20:41:15 -0800,1774,5376 -7941,4424,2013-11-08 14:24:53 -0800,1774,5376 -7942,5191,2013-11-10 06:14:02 -0800,1774,5376 -7943,3198,2013-11-09 02:35:06 -0800,1774,5376 -7944,9553,2013-11-13 02:11:08 -0800,1774,5376 -7945,3360,2013-11-11 00:14:54 -0800,1775,5379 -7946,7727,2013-11-07 07:26:09 -0800,1775,5380 -7947,616,2013-11-08 07:32:44 -0800,1775,5378 -7948,3438,2013-11-09 00:09:19 -0800,1775,5379 -7949,5212,2013-11-07 08:20:48 -0800,1775,5381 -7950,827,2013-11-06 14:02:54 -0800,1775,5381 -7951,2782,2013-11-10 07:02:53 -0800,1775,5379 -7952,4470,2013-11-06 12:36:15 -0800,1776,5384 -7953,88,2013-11-09 07:56:38 -0800,1776,5385 -7954,6768,2013-11-13 07:51:54 -0800,1776,5382 -7955,8974,2013-11-12 07:46:21 -0800,1776,5382 -7956,3383,2013-11-10 13:27:19 -0800,1776,5383 -7957,7150,2013-11-12 15:57:52 -0800,1776,5384 -7958,5851,2013-11-12 18:01:13 -0800,1776,5384 -7959,925,2013-11-07 00:58:56 -0800,1776,5385 -7960,8245,2013-11-07 11:27:55 -0800,1777,5386 -7961,8017,2013-11-09 17:27:56 -0800,1777,5386 -7962,4595,2013-11-11 12:06:27 -0800,1777,5386 -7963,4520,2013-11-07 21:46:47 -0800,1777,5386 -7964,3667,2013-11-12 20:07:51 -0800,1777,5386 -7965,7094,2013-11-09 17:10:05 -0800,1777,5386 -7966,9714,2013-11-12 01:49:55 -0800,1777,5386 -7967,6478,2013-11-09 18:57:41 -0800,1777,5386 -7968,3976,2013-11-13 02:46:03 -0800,1779,5393 -7969,1532,2013-11-08 23:50:07 -0800,1779,5393 -7970,5073,2013-11-11 13:23:00 -0800,1779,5393 -7971,9144,2013-11-10 07:34:11 -0800,1779,5393 -7972,4526,2013-11-12 04:15:16 -0800,1779,5393 -7973,7533,2013-11-09 09:07:33 -0800,1779,5395 -7974,3310,2013-11-12 01:29:13 -0800,1779,5395 -7975,4258,2013-11-08 01:09:36 -0800,1779,5393 -7976,6186,2013-11-13 02:20:59 -0800,1780,5396 -7977,747,2013-11-07 01:10:16 -0800,1780,5399 -7978,4815,2013-11-06 10:56:14 -0800,1780,5396 -7979,112,2013-11-10 02:41:07 -0800,1780,5398 -7980,7509,2013-11-07 07:35:50 -0800,1780,5398 -7981,8255,2013-11-11 04:06:54 -0800,1780,5399 -7982,1885,2013-11-07 19:29:47 -0800,1781,5400 -7983,3393,2013-11-12 22:00:41 -0800,1781,5400 -7984,8674,2013-11-07 20:14:07 -0800,1781,5400 -7985,4433,2013-11-12 15:45:07 -0800,1781,5401 -7986,9769,2013-11-08 14:36:49 -0800,1781,5400 -7987,760,2013-11-12 12:33:34 -0800,1781,5401 -7988,4331,2013-11-07 20:17:08 -0800,1781,5402 -7989,5618,2013-11-09 16:07:18 -0800,1781,5402 -7990,5739,2013-11-10 05:42:53 -0800,1782,5403 -7991,1811,2013-11-11 05:46:12 -0800,1782,5406 -7992,8313,2013-11-08 21:26:56 -0800,1782,5404 -7993,6683,2013-11-12 20:32:17 -0800,1782,5404 -7994,8062,2013-11-08 23:45:48 -0800,1782,5403 -7995,1775,2013-11-08 10:46:36 -0800,1784,5412 -7996,5950,2013-11-09 15:33:55 -0800,1784,5412 -7997,2453,2013-11-12 21:11:36 -0800,1784,5412 -7998,6909,2013-11-09 04:42:23 -0800,1784,5412 -7999,6958,2013-11-07 11:11:05 -0800,1784,5412 -8000,6081,2013-11-11 15:08:47 -0800,1785,5414 -8001,2235,2013-11-13 05:18:30 -0800,1785,5414 -8002,9088,2013-11-06 20:34:26 -0800,1785,5414 -8003,7184,2013-11-11 05:52:38 -0800,1785,5413 -8004,1873,2013-11-06 16:36:46 -0800,1785,5414 -8005,7663,2013-11-13 04:31:37 -0800,1785,5414 -8006,7379,2013-11-11 05:26:25 -0800,1786,5415 -8007,2341,2013-11-07 16:07:03 -0800,1786,5415 -8008,1876,2013-11-11 22:34:10 -0800,1786,5417 -8009,9727,2013-11-09 01:31:02 -0800,1787,5420 -8010,8133,2013-11-10 10:48:59 -0800,1787,5421 -8011,7427,2013-11-06 22:51:50 -0800,1787,5419 -8012,7553,2013-11-12 17:59:47 -0800,1788,5422 -8013,7851,2013-11-06 19:24:03 -0800,1788,5425 -8014,9226,2013-11-09 02:01:00 -0800,1788,5422 -8015,8563,2013-11-07 16:27:50 -0800,1788,5424 -8016,409,2013-11-13 06:57:48 -0800,1788,5423 -8017,955,2013-11-13 06:27:30 -0800,1788,5425 -8018,98,2013-11-12 14:10:07 -0800,1788,5422 -8019,9555,2013-11-06 17:13:52 -0800,1789,5426 -8020,1971,2013-11-10 11:09:08 -0800,1790,5431 -8021,8391,2013-11-10 19:16:18 -0800,1790,5431 -8022,3894,2013-11-06 10:52:50 -0800,1791,5432 -8023,9869,2013-11-06 13:24:25 -0800,1791,5433 -8024,6328,2013-11-08 23:33:01 -0800,1791,5435 -8025,4914,2013-11-10 08:30:40 -0800,1791,5435 -8026,3281,2013-11-09 07:48:49 -0800,1792,5437 -8027,9336,2013-11-10 19:22:45 -0800,1792,5438 -8028,7220,2013-11-08 07:37:12 -0800,1792,5437 -8029,6639,2013-11-08 22:17:56 -0800,1792,5437 -8030,1027,2013-11-10 20:41:08 -0800,1792,5437 -8031,3426,2013-11-10 13:25:26 -0800,1793,5442 -8032,7384,2013-11-12 23:09:34 -0800,1793,5440 -8033,5682,2013-11-11 21:11:47 -0800,1793,5441 -8034,7315,2013-11-09 20:20:19 -0800,1793,5443 -8035,5080,2013-11-12 10:02:00 -0800,1796,5449 -8036,6750,2013-11-10 13:04:22 -0800,1796,5449 -8037,3171,2013-11-06 10:41:05 -0800,1796,5447 -8038,6354,2013-11-12 19:28:33 -0800,1797,5452 -8039,4040,2013-11-10 08:14:24 -0800,1797,5452 -8040,7964,2013-11-12 18:59:29 -0800,1797,5451 -8041,4821,2013-11-06 19:50:16 -0800,1797,5451 -8042,3278,2013-11-12 11:22:07 -0800,1797,5452 -8043,2613,2013-11-11 13:06:33 -0800,1798,5453 -8044,7919,2013-11-12 12:26:58 -0800,1798,5453 -8045,3988,2013-11-12 16:07:45 -0800,1799,5454 -8046,2924,2013-11-08 15:55:13 -0800,1799,5454 -8047,5381,2013-11-06 22:07:53 -0800,1799,5454 -8048,5575,2013-11-11 20:35:20 -0800,1799,5454 -8049,4790,2013-11-10 14:05:18 -0800,1799,5454 -8050,6841,2013-11-10 15:08:07 -0800,1799,5454 -8051,3540,2013-11-06 09:14:46 -0800,1799,5454 -8052,5192,2013-11-08 11:01:30 -0800,1800,5458 -8053,3697,2013-11-06 15:15:13 -0800,1800,5459 -8054,8230,2013-11-12 04:25:41 -0800,1801,5460 -8055,9513,2013-11-09 20:52:05 -0800,1801,5460 -8056,3950,2013-11-06 19:11:46 -0800,1801,5460 -8057,1494,2013-11-12 08:48:11 -0800,1801,5460 -8058,3270,2013-11-10 01:08:32 -0800,1801,5460 -8059,2313,2013-11-07 20:21:58 -0800,1801,5460 -8060,4535,2013-11-07 03:39:51 -0800,1801,5460 -8061,7914,2013-11-11 14:14:38 -0800,1801,5460 -8062,9616,2013-11-06 14:12:53 -0800,1801,5460 -8063,6520,2013-11-13 00:44:49 -0800,1802,5461 -8064,1982,2013-11-10 20:28:51 -0800,1802,5461 -8065,5873,2013-11-08 18:53:53 -0800,1802,5461 -8066,4224,2013-11-11 12:40:16 -0800,1802,5461 -8067,3030,2013-11-10 05:58:56 -0800,1802,5461 -8068,1977,2013-11-07 08:28:29 -0800,1803,5462 -8069,8223,2013-11-12 03:37:32 -0800,1803,5462 -8070,8590,2013-11-11 22:26:51 -0800,1803,5462 -8071,3536,2013-11-13 07:25:46 -0800,1803,5463 -8072,6670,2013-11-12 19:19:07 -0800,1803,5463 -8073,7530,2013-11-11 07:44:30 -0800,1804,5464 -8074,7622,2013-11-08 03:17:13 -0800,1804,5464 -8075,7341,2013-11-09 00:55:11 -0800,1804,5465 -8076,8897,2013-11-12 04:23:05 -0800,1804,5465 -8077,1531,2013-11-12 12:44:48 -0800,1804,5465 -8078,4829,2013-11-07 06:34:50 -0800,1804,5464 -8079,5857,2013-11-12 15:18:19 -0800,1804,5465 -8080,135,2013-11-10 18:53:42 -0800,1804,5465 -8081,4243,2013-11-12 04:48:07 -0800,1805,5468 -8082,7726,2013-11-11 02:53:32 -0800,1805,5468 -8083,1625,2013-11-13 08:32:31 -0800,1805,5468 -8084,6054,2013-11-13 07:05:41 -0800,1805,5467 -8085,4461,2013-11-11 23:51:11 -0800,1806,5469 -8086,4291,2013-11-06 21:39:36 -0800,1807,5474 -8087,8034,2013-11-10 20:43:55 -0800,1807,5474 -8088,6063,2013-11-09 21:03:06 -0800,1807,5474 -8089,1760,2013-11-11 10:06:29 -0800,1807,5474 -8090,1864,2013-11-13 07:49:45 -0800,1807,5474 -8091,5490,2013-11-11 03:23:52 -0800,1807,5474 -8092,3990,2013-11-13 03:46:54 -0800,1808,5477 -8093,3358,2013-11-08 03:49:11 -0800,1808,5479 -8094,1069,2013-11-10 19:11:52 -0800,1808,5475 -8095,9087,2013-11-07 08:01:43 -0800,1809,5483 -8096,1841,2013-11-09 07:47:17 -0800,1809,5480 -8097,4294,2013-11-12 20:46:43 -0800,1809,5482 -8098,5913,2013-11-12 02:10:00 -0800,1809,5480 -8099,831,2013-11-12 12:37:37 -0800,1809,5481 -8100,3742,2013-11-09 14:11:09 -0800,1809,5480 -8101,6442,2013-11-09 20:36:04 -0800,1809,5482 -8102,1574,2013-11-12 13:12:01 -0800,1809,5482 -8103,810,2013-11-07 12:54:43 -0800,1809,5481 -8104,5665,2013-11-13 07:07:28 -0800,1811,5487 -8105,1942,2013-11-10 11:00:00 -0800,1811,5487 -8106,1353,2013-11-06 18:07:47 -0800,1811,5490 -8107,1070,2013-11-12 20:23:37 -0800,1811,5489 -8108,5286,2013-11-12 00:11:51 -0800,1811,5490 -8109,9488,2013-11-09 23:06:33 -0800,1811,5487 -8110,3645,2013-11-08 22:02:45 -0800,1811,5489 -8111,8549,2013-11-07 16:54:37 -0800,1811,5488 -8112,9747,2013-11-07 17:51:49 -0800,1811,5490 -8113,7083,2013-11-12 02:28:43 -0800,1812,5491 -8114,9455,2013-11-09 05:47:22 -0800,1812,5493 -8115,1231,2013-11-07 15:24:54 -0800,1812,5493 -8116,6279,2013-11-08 20:57:45 -0800,1812,5495 -8117,950,2013-11-11 21:16:55 -0800,1813,5496 -8118,2935,2013-11-13 01:48:47 -0800,1813,5496 -8119,2877,2013-11-09 12:54:29 -0800,1813,5496 -8120,8094,2013-11-07 14:25:07 -0800,1813,5496 -8121,741,2013-11-09 22:57:41 -0800,1813,5496 -8122,6770,2013-11-10 09:07:27 -0800,1813,5496 -8123,7295,2013-11-08 12:45:52 -0800,1813,5496 -8124,5449,2013-11-13 03:09:57 -0800,1814,5497 -8125,9811,2013-11-06 17:25:37 -0800,1816,5503 -8126,1539,2013-11-07 14:30:23 -0800,1816,5502 -8127,3358,2013-11-11 15:13:05 -0800,1816,5502 -8128,7322,2013-11-11 09:49:16 -0800,1816,5503 -8129,5920,2013-11-07 07:27:09 -0800,1817,5504 -8130,8794,2013-11-09 03:19:04 -0800,1817,5505 -8131,6149,2013-11-07 06:02:20 -0800,1817,5505 -8132,2766,2013-11-07 07:21:54 -0800,1817,5505 -8133,3992,2013-11-09 18:06:05 -0800,1818,5507 -8134,8782,2013-11-09 11:43:58 -0800,1818,5507 -8135,3800,2013-11-12 20:14:50 -0800,1818,5508 -8136,4098,2013-11-11 06:39:14 -0800,1818,5507 -8137,3719,2013-11-12 18:53:48 -0800,1819,5512 -8138,5360,2013-11-07 15:10:51 -0800,1819,5511 -8139,4450,2013-11-11 08:30:12 -0800,1819,5512 -8140,189,2013-11-11 13:39:32 -0800,1819,5511 -8141,2115,2013-11-06 23:07:18 -0800,1819,5514 -8142,272,2013-11-11 00:51:21 -0800,1819,5513 -8143,9610,2013-11-08 21:38:16 -0800,1819,5514 -8144,3371,2013-11-06 10:18:43 -0800,1819,5513 -8145,3957,2013-11-12 08:52:49 -0800,1819,5514 -8146,1987,2013-11-07 23:20:54 -0800,1820,5519 -8147,9453,2013-11-12 00:31:34 -0800,1820,5518 -8148,8714,2013-11-07 21:37:55 -0800,1820,5516 -8149,6662,2013-11-11 09:40:24 -0800,1820,5519 -8150,4236,2013-11-07 18:23:58 -0800,1820,5515 -8151,2689,2013-11-08 08:16:59 -0800,1820,5516 -8152,5450,2013-11-11 17:38:45 -0800,1820,5515 -8153,9625,2013-11-12 00:31:58 -0800,1821,5520 -8154,7430,2013-11-08 18:46:44 -0800,1821,5520 -8155,8131,2013-11-08 02:36:29 -0800,1821,5520 -8156,9187,2013-11-12 17:35:54 -0800,1821,5520 -8157,6414,2013-11-07 19:36:05 -0800,1821,5520 -8158,638,2013-11-08 17:12:54 -0800,1822,5521 -8159,4685,2013-11-12 11:10:08 -0800,1822,5521 -8160,1192,2013-11-09 06:17:28 -0800,1822,5521 -8161,7990,2013-11-10 19:54:35 -0800,1822,5522 -8162,3229,2013-11-13 05:40:35 -0800,1822,5522 -8163,5982,2013-11-12 15:03:53 -0800,1822,5522 -8164,6065,2013-11-07 02:07:32 -0800,1822,5522 -8165,5469,2013-11-13 03:20:11 -0800,1823,5524 -8166,9821,2013-11-10 10:57:50 -0800,1823,5523 -8167,7883,2013-11-09 23:35:56 -0800,1823,5523 -8168,8331,2013-11-08 23:25:04 -0800,1823,5526 -8169,4530,2013-11-10 00:44:26 -0800,1823,5525 -8170,444,2013-11-07 02:35:34 -0800,1823,5526 -8171,7677,2013-11-10 22:14:22 -0800,1824,5528 -8172,7531,2013-11-09 00:53:55 -0800,1824,5528 -8173,429,2013-11-13 05:07:01 -0800,1824,5527 -8174,9534,2013-11-13 04:28:08 -0800,1824,5528 -8175,1780,2013-11-09 09:39:43 -0800,1824,5527 -8176,6085,2013-11-10 10:05:53 -0800,1825,5530 -8177,8988,2013-11-12 07:13:15 -0800,1825,5529 -8178,835,2013-11-08 11:25:15 -0800,1825,5530 -8179,2286,2013-11-10 04:48:50 -0800,1825,5529 -8180,5937,2013-11-13 01:38:55 -0800,1825,5530 -8181,4365,2013-11-08 10:35:34 -0800,1826,5531 -8182,8472,2013-11-10 07:32:56 -0800,1826,5534 -8183,4623,2013-11-08 03:14:27 -0800,1826,5532 -8184,5457,2013-11-11 07:09:51 -0800,1826,5533 -8185,7115,2013-11-13 03:44:24 -0800,1826,5531 -8186,1959,2013-11-08 03:13:02 -0800,1826,5533 -8187,3864,2013-11-08 09:15:19 -0800,1826,5534 -8188,8459,2013-11-10 21:44:15 -0800,1826,5532 -8189,125,2013-11-11 11:48:03 -0800,1827,5535 -8190,2513,2013-11-12 19:21:29 -0800,1827,5535 -8191,5353,2013-11-08 12:26:08 -0800,1827,5535 -8192,9532,2013-11-10 19:12:42 -0800,1827,5535 -8193,2915,2013-11-13 06:44:50 -0800,1827,5535 -8194,1647,2013-11-09 15:18:36 -0800,1827,5535 -8195,2086,2013-11-11 01:52:32 -0800,1827,5535 -8196,2513,2013-11-11 00:57:42 -0800,1827,5535 -8197,6640,2013-11-09 19:14:21 -0800,1827,5535 -8198,3633,2013-11-09 23:20:31 -0800,1828,5537 -8199,1630,2013-11-08 03:29:52 -0800,1829,5544 -8200,1213,2013-11-10 09:34:12 -0800,1829,5543 -8201,2897,2013-11-09 09:46:34 -0800,1829,5542 -8202,1043,2013-11-11 08:20:22 -0800,1829,5544 -8203,9569,2013-11-12 23:57:55 -0800,1829,5543 -8204,5377,2013-11-07 21:08:00 -0800,1829,5544 -8205,259,2013-11-06 21:08:24 -0800,1829,5544 -8206,570,2013-11-11 16:53:15 -0800,1829,5543 -8207,7563,2013-11-06 15:50:19 -0800,1829,5544 -8208,2700,2013-11-07 08:06:17 -0800,1830,5545 -8209,891,2013-11-09 17:19:26 -0800,1830,5546 -8210,9778,2013-11-09 05:26:59 -0800,1830,5546 -8211,2075,2013-11-12 23:40:34 -0800,1830,5546 -8212,666,2013-11-06 15:18:55 -0800,1830,5545 -8213,7552,2013-11-10 01:19:32 -0800,1830,5546 -8214,861,2013-11-08 19:40:01 -0800,1830,5545 -8215,7450,2013-11-12 22:53:18 -0800,1830,5545 -8216,7566,2013-11-11 06:03:56 -0800,1832,5553 -8217,2564,2013-11-11 17:36:39 -0800,1832,5549 -8218,2291,2013-11-11 13:53:06 -0800,1832,5552 -8219,6736,2013-11-07 06:08:54 -0800,1832,5551 -8220,7931,2013-11-12 19:32:32 -0800,1832,5550 -8221,4014,2013-11-10 01:03:41 -0800,1832,5552 -8222,2543,2013-11-07 02:14:47 -0800,1832,5552 -8223,7434,2013-11-11 09:58:10 -0800,1832,5551 -8224,8690,2013-11-10 12:00:42 -0800,1832,5550 -8225,2888,2013-11-11 05:44:15 -0800,1833,5554 -8226,991,2013-11-12 09:41:57 -0800,1834,5556 -8227,3188,2013-11-13 01:06:02 -0800,1834,5559 -8228,9232,2013-11-12 06:40:52 -0800,1835,5562 -8229,9643,2013-11-12 13:15:17 -0800,1835,5564 -8230,9117,2013-11-09 04:53:20 -0800,1835,5564 -8231,3078,2013-11-06 20:08:42 -0800,1835,5564 -8232,6979,2013-11-12 08:47:09 -0800,1835,5560 -8233,4420,2013-11-10 21:58:09 -0800,1835,5562 -8234,1972,2013-11-09 11:57:56 -0800,1835,5560 -8235,7770,2013-11-08 13:28:06 -0800,1835,5562 -8236,7748,2013-11-07 00:12:42 -0800,1835,5562 -8237,8889,2013-11-11 19:20:52 -0800,1836,5567 -8238,8952,2013-11-10 10:06:39 -0800,1836,5566 -8239,1664,2013-11-10 01:00:49 -0800,1836,5566 -8240,7973,2013-11-13 03:55:04 -0800,1836,5569 -8241,7417,2013-11-11 22:25:35 -0800,1836,5567 -8242,5510,2013-11-10 23:01:37 -0800,1836,5568 -8243,3411,2013-11-10 17:26:13 -0800,1836,5566 -8244,4252,2013-11-07 04:15:43 -0800,1837,5572 -8245,6690,2013-11-08 05:27:52 -0800,1837,5573 -8246,8184,2013-11-13 02:08:39 -0800,1838,5575 -8247,1987,2013-11-11 02:21:16 -0800,1838,5575 -8248,8350,2013-11-11 02:32:57 -0800,1838,5575 -8249,5016,2013-11-12 12:38:48 -0800,1838,5575 -8250,9680,2013-11-09 05:51:34 -0800,1838,5575 -8251,5170,2013-11-06 17:26:52 -0800,1838,5575 -8252,3832,2013-11-09 09:50:26 -0800,1838,5575 -8253,1189,2013-11-08 17:55:00 -0800,1838,5575 -8254,3820,2013-11-11 21:33:12 -0800,1838,5575 -8255,6751,2013-11-07 21:30:12 -0800,1839,5579 -8256,9037,2013-11-09 18:17:28 -0800,1839,5576 -8257,3583,2013-11-07 14:11:59 -0800,1839,5579 -8258,2276,2013-11-08 11:50:13 -0800,1839,5580 -8259,5976,2013-11-11 13:31:43 -0800,1839,5576 -8260,3279,2013-11-06 15:20:39 -0800,1839,5579 -8261,7765,2013-11-10 15:45:48 -0800,1840,5582 -8262,612,2013-11-09 11:15:18 -0800,1840,5583 -8263,7558,2013-11-10 16:18:29 -0800,1840,5585 -8264,3661,2013-11-06 13:52:59 -0800,1840,5584 -8265,5137,2013-11-11 09:23:10 -0800,1840,5584 -8266,8898,2013-11-12 07:46:09 -0800,1840,5582 -8267,5342,2013-11-12 02:29:17 -0800,1840,5583 -8268,7462,2013-11-07 07:48:17 -0800,1840,5581 -8269,6300,2013-11-12 20:34:20 -0800,1841,5587 -8270,9567,2013-11-13 03:43:10 -0800,1841,5586 -8271,7223,2013-11-12 15:51:45 -0800,1842,5589 -8272,6614,2013-11-11 11:26:32 -0800,1842,5589 -8273,1385,2013-11-06 10:14:01 -0800,1843,5593 -8274,1835,2013-11-12 09:19:16 -0800,1844,5597 -8275,4630,2013-11-09 07:24:28 -0800,1844,5596 -8276,3319,2013-11-12 07:10:39 -0800,1845,5598 -8277,5665,2013-11-09 03:01:51 -0800,1845,5598 -8278,2793,2013-11-12 02:42:30 -0800,1846,5600 -8279,8837,2013-11-07 10:17:33 -0800,1846,5600 -8280,8468,2013-11-08 07:19:18 -0800,1846,5600 -8281,319,2013-11-09 01:11:28 -0800,1846,5600 -8282,4324,2013-11-09 10:24:57 -0800,1846,5599 -8283,1087,2013-11-07 14:53:18 -0800,1846,5600 -8284,742,2013-11-07 10:57:41 -0800,1847,5601 -8285,8324,2013-11-11 11:06:28 -0800,1847,5601 -8286,2087,2013-11-08 03:16:45 -0800,1847,5601 -8287,5154,2013-11-13 03:23:16 -0800,1847,5601 -8288,591,2013-11-09 11:29:54 -0800,1848,5602 -8289,1083,2013-11-09 22:35:56 -0800,1848,5603 -8290,254,2013-11-09 17:24:13 -0800,1849,5604 -8291,5028,2013-11-11 23:22:09 -0800,1849,5604 -8292,7022,2013-11-08 23:11:40 -0800,1849,5604 -8293,9700,2013-11-10 11:39:03 -0800,1849,5604 -8294,1625,2013-11-11 03:30:48 -0800,1850,5606 -8295,3783,2013-11-09 01:25:37 -0800,1850,5607 -8296,9300,2013-11-12 17:47:39 -0800,1850,5606 -8297,9241,2013-11-10 17:06:02 -0800,1850,5609 -8298,9491,2013-11-11 13:13:29 -0800,1850,5605 -8299,8722,2013-11-10 11:01:11 -0800,1850,5605 -8300,2020,2013-11-10 04:18:24 -0800,1851,5611 -8301,2216,2013-11-11 07:14:01 -0800,1851,5610 -8302,2120,2013-11-06 10:07:43 -0800,1852,5612 -8303,361,2013-11-09 12:31:32 -0800,1852,5612 -8304,7022,2013-11-10 10:17:00 -0800,1852,5612 -8305,9240,2013-11-08 13:54:31 -0800,1852,5613 -8306,2892,2013-11-08 20:35:50 -0800,1852,5612 -8307,4847,2013-11-10 04:29:21 -0800,1852,5613 -8308,3260,2013-11-07 20:06:32 -0800,1852,5613 -8309,4859,2013-11-11 22:39:30 -0800,1853,5614 -8310,3492,2013-11-11 01:54:58 -0800,1853,5614 -8311,2755,2013-11-08 13:08:19 -0800,1853,5614 -8312,6579,2013-11-12 22:54:46 -0800,1854,5615 -8313,9135,2013-11-07 23:29:43 -0800,1854,5619 -8314,8520,2013-11-11 18:04:27 -0800,1854,5619 -8315,2466,2013-11-12 18:01:11 -0800,1854,5619 -8316,1967,2013-11-13 01:56:36 -0800,1855,5621 -8317,5076,2013-11-10 05:58:45 -0800,1855,5620 -8318,2552,2013-11-12 17:43:29 -0800,1855,5620 -8319,5139,2013-11-11 03:30:50 -0800,1855,5621 -8320,2230,2013-11-11 06:25:35 -0800,1855,5621 -8321,3461,2013-11-10 18:46:29 -0800,1855,5621 -8322,282,2013-11-11 11:39:43 -0800,1855,5620 -8323,8070,2013-11-07 06:09:02 -0800,1855,5620 -8324,6781,2013-11-12 17:31:47 -0800,1855,5620 -8325,7041,2013-11-10 02:07:29 -0800,1856,5625 -8326,9228,2013-11-08 10:46:48 -0800,1856,5625 -8327,7073,2013-11-07 17:00:04 -0800,1856,5624 -8328,8891,2013-11-09 08:14:12 -0800,1856,5625 -8329,2777,2013-11-08 08:22:43 -0800,1856,5623 -8330,8497,2013-11-09 12:01:31 -0800,1856,5624 -8331,5963,2013-11-09 21:18:48 -0800,1858,5634 -8332,2227,2013-11-10 19:19:52 -0800,1858,5633 -8333,1156,2013-11-10 08:36:47 -0800,1858,5632 -8334,9465,2013-11-11 21:09:48 -0800,1858,5636 -8335,27,2013-11-12 12:10:19 -0800,1858,5636 -8336,3290,2013-11-09 04:41:32 -0800,1858,5634 -8337,2840,2013-11-13 05:24:42 -0800,1859,5641 -8338,6447,2013-11-07 10:10:42 -0800,1859,5638 -8339,110,2013-11-08 08:34:18 -0800,1859,5640 -8340,4671,2013-11-10 19:29:26 -0800,1859,5638 -8341,4479,2013-11-09 11:36:45 -0800,1859,5638 -8342,5157,2013-11-13 07:48:21 -0800,1859,5640 -8343,3460,2013-11-12 19:53:58 -0800,1859,5638 -8344,5048,2013-11-07 00:35:42 -0800,1859,5637 -8345,6476,2013-11-06 20:56:33 -0800,1860,5643 -8346,3882,2013-11-09 20:28:08 -0800,1860,5643 -8347,2618,2013-11-08 17:54:47 -0800,1861,5644 -8348,3020,2013-11-10 03:36:06 -0800,1861,5644 -8349,6047,2013-11-07 03:02:04 -0800,1861,5645 -8350,3094,2013-11-08 02:16:05 -0800,1861,5644 -8351,4134,2013-11-09 02:19:21 -0800,1861,5645 -8352,5140,2013-11-12 07:20:09 -0800,1862,5646 -8353,5929,2013-11-09 02:32:34 -0800,1862,5646 -8354,8166,2013-11-08 20:00:15 -0800,1862,5646 -8355,7236,2013-11-07 00:34:05 -0800,1862,5646 -8356,1124,2013-11-09 22:49:17 -0800,1862,5646 -8357,9657,2013-11-10 05:44:04 -0800,1863,5648 -8358,9638,2013-11-12 20:02:42 -0800,1863,5647 -8359,1598,2013-11-08 10:46:43 -0800,1863,5648 -8360,560,2013-11-09 06:25:59 -0800,1863,5648 -8361,2597,2013-11-12 11:27:59 -0800,1864,5653 -8362,1068,2013-11-12 09:37:57 -0800,1864,5651 -8363,815,2013-11-08 19:12:22 -0800,1865,5658 -8364,5341,2013-11-06 15:29:31 -0800,1866,5660 -8365,5487,2013-11-06 09:07:42 -0800,1866,5661 -8366,44,2013-11-06 16:41:08 -0800,1866,5660 -8367,5033,2013-11-08 19:23:13 -0800,1866,5659 -8368,9446,2013-11-10 12:24:16 -0800,1866,5661 -8369,4522,2013-11-08 05:02:00 -0800,1866,5662 -8370,6952,2013-11-09 01:56:02 -0800,1867,5665 -8371,8645,2013-11-11 22:05:30 -0800,1867,5663 -8372,4894,2013-11-10 10:11:53 -0800,1867,5666 -8373,5421,2013-11-07 05:08:41 -0800,1868,5668 -8374,4689,2013-11-12 04:47:55 -0800,1868,5669 -8375,9357,2013-11-06 19:34:13 -0800,1868,5668 -8376,532,2013-11-12 01:48:30 -0800,1868,5668 -8377,3130,2013-11-07 03:22:55 -0800,1868,5668 -8378,9582,2013-11-12 07:13:45 -0800,1868,5668 -8379,7640,2013-11-11 20:36:49 -0800,1868,5668 -8380,8523,2013-11-11 03:16:46 -0800,1870,5671 -8381,4153,2013-11-12 01:33:03 -0800,1870,5671 -8382,2554,2013-11-12 11:38:48 -0800,1870,5671 -8383,3167,2013-11-09 09:26:02 -0800,1870,5671 -8384,2429,2013-11-06 18:15:48 -0800,1873,5676 -8385,6541,2013-11-07 00:25:39 -0800,1873,5676 -8386,9483,2013-11-08 13:40:10 -0800,1874,5680 -8387,9076,2013-11-12 23:32:41 -0800,1874,5680 -8388,6362,2013-11-10 15:49:04 -0800,1874,5679 -8389,1536,2013-11-07 17:17:49 -0800,1874,5679 -8390,210,2013-11-12 04:58:21 -0800,1874,5678 -8391,1461,2013-11-07 09:49:05 -0800,1874,5678 -8392,300,2013-11-11 22:07:19 -0800,1874,5680 -8393,3490,2013-11-11 14:45:46 -0800,1874,5678 -8394,639,2013-11-08 15:59:06 -0800,1874,5680 -8395,7290,2013-11-07 22:41:45 -0800,1875,5683 -8396,9530,2013-11-09 02:18:16 -0800,1875,5681 -8397,3229,2013-11-11 06:07:28 -0800,1876,5685 -8398,7566,2013-11-06 22:08:05 -0800,1876,5686 -8399,4718,2013-11-09 09:57:30 -0800,1876,5686 -8400,2254,2013-11-11 23:53:04 -0800,1876,5685 -8401,5130,2013-11-09 16:10:28 -0800,1876,5686 -8402,4390,2013-11-10 20:25:51 -0800,1876,5686 -8403,5489,2013-11-10 10:01:12 -0800,1876,5686 -8404,6956,2013-11-12 19:48:37 -0800,1877,5687 -8405,4219,2013-11-12 10:14:21 -0800,1877,5687 -8406,3544,2013-11-11 22:35:27 -0800,1877,5687 -8407,1829,2013-11-11 21:21:38 -0800,1877,5687 -8408,6130,2013-11-07 08:30:13 -0800,1877,5687 -8409,3878,2013-11-08 13:02:44 -0800,1877,5687 -8410,3089,2013-11-09 00:47:42 -0800,1877,5687 -8411,4723,2013-11-11 16:22:22 -0800,1877,5687 -8412,5111,2013-11-08 07:15:29 -0800,1878,5688 -8413,2554,2013-11-12 12:05:50 -0800,1878,5688 -8414,8316,2013-11-06 11:22:48 -0800,1878,5688 -8415,6163,2013-11-11 19:25:00 -0800,1878,5688 -8416,12,2013-11-08 16:49:19 -0800,1878,5688 -8417,9656,2013-11-09 20:02:58 -0800,1878,5688 -8418,6483,2013-11-11 18:29:15 -0800,1878,5688 -8419,6833,2013-11-11 22:04:34 -0800,1878,5688 -8420,7025,2013-11-07 11:03:16 -0800,1878,5688 -8421,2897,2013-11-11 07:07:45 -0800,1879,5690 -8422,8360,2013-11-11 16:35:42 -0800,1879,5691 -8423,530,2013-11-10 23:59:25 -0800,1879,5691 -8424,4836,2013-11-11 11:45:57 -0800,1879,5691 -8425,8996,2013-11-07 05:09:26 -0800,1879,5691 -8426,4683,2013-11-07 08:37:27 -0800,1880,5694 -8427,1591,2013-11-11 12:41:57 -0800,1880,5695 -8428,790,2013-11-10 03:51:06 -0800,1880,5695 -8429,6719,2013-11-13 08:14:28 -0800,1881,5699 -8430,1939,2013-11-11 08:27:45 -0800,1881,5697 -8431,8330,2013-11-12 00:33:59 -0800,1881,5698 -8432,9512,2013-11-08 01:23:06 -0800,1882,5700 -8433,6430,2013-11-13 07:31:23 -0800,1883,5704 -8434,4164,2013-11-11 06:32:34 -0800,1883,5704 -8435,8712,2013-11-07 00:16:28 -0800,1883,5704 -8436,9113,2013-11-12 04:08:34 -0800,1884,5708 -8437,9486,2013-11-09 09:14:11 -0800,1884,5707 -8438,682,2013-11-13 04:15:13 -0800,1884,5708 -8439,8393,2013-11-09 09:52:27 -0800,1884,5706 -8440,4718,2013-11-09 21:06:24 -0800,1884,5705 -8441,9751,2013-11-11 08:48:52 -0800,1885,5713 -8442,4345,2013-11-07 14:40:37 -0800,1885,5713 -8443,4553,2013-11-12 16:01:57 -0800,1886,5719 -8444,1384,2013-11-08 15:58:22 -0800,1886,5719 -8445,5146,2013-11-07 12:20:28 -0800,1886,5715 -8446,3276,2013-11-12 17:29:26 -0800,1887,5722 -8447,1747,2013-11-11 08:36:53 -0800,1887,5723 -8448,6884,2013-11-11 15:45:34 -0800,1887,5720 -8449,4025,2013-11-10 19:13:47 -0800,1887,5723 -8450,7790,2013-11-10 22:28:45 -0800,1887,5721 -8451,6767,2013-11-11 13:42:12 -0800,1889,5729 -8452,413,2013-11-12 17:28:49 -0800,1889,5728 -8453,38,2013-11-08 05:45:12 -0800,1889,5729 -8454,8599,2013-11-12 22:22:07 -0800,1890,5735 -8455,1450,2013-11-12 05:24:58 -0800,1890,5733 -8456,9359,2013-11-11 14:43:12 -0800,1890,5734 -8457,8262,2013-11-06 17:09:03 -0800,1890,5733 -8458,4645,2013-11-09 11:21:34 -0800,1890,5734 -8459,7953,2013-11-10 10:04:45 -0800,1890,5736 -8460,7443,2013-11-06 23:39:33 -0800,1891,5737 -8461,6122,2013-11-12 19:13:00 -0800,1891,5737 -8462,4955,2013-11-11 19:10:16 -0800,1891,5737 -8463,3049,2013-11-09 08:34:57 -0800,1891,5737 -8464,9240,2013-11-08 04:09:51 -0800,1891,5737 -8465,7833,2013-11-08 14:43:27 -0800,1893,5743 -8466,7088,2013-11-10 00:47:55 -0800,1893,5743 -8467,9288,2013-11-11 05:05:16 -0800,1893,5742 -8468,7198,2013-11-11 03:10:21 -0800,1893,5743 -8469,7086,2013-11-06 11:26:43 -0800,1893,5742 -8470,1798,2013-11-09 03:29:06 -0800,1894,5745 -8471,4083,2013-11-10 22:09:53 -0800,1894,5744 -8472,3094,2013-11-09 19:27:17 -0800,1894,5745 -8473,7734,2013-11-06 22:27:09 -0800,1894,5746 -8474,9515,2013-11-09 15:11:30 -0800,1894,5745 -8475,1839,2013-11-10 05:11:16 -0800,1894,5746 -8476,8130,2013-11-12 09:25:06 -0800,1894,5744 -8477,2718,2013-11-06 22:55:13 -0800,1894,5745 -8478,9266,2013-11-06 13:36:05 -0800,1895,5749 -8479,7056,2013-11-09 13:51:55 -0800,1895,5747 -8480,8759,2013-11-10 19:18:55 -0800,1895,5749 -8481,6627,2013-11-08 19:51:30 -0800,1896,5750 -8482,9198,2013-11-08 11:53:33 -0800,1896,5750 -8483,9422,2013-11-12 14:06:46 -0800,1898,5757 -8484,8280,2013-11-11 19:50:21 -0800,1899,5764 -8485,9393,2013-11-12 00:13:45 -0800,1899,5765 -8486,5473,2013-11-11 05:24:06 -0800,1899,5764 -8487,8869,2013-11-12 17:26:39 -0800,1899,5764 -8488,5916,2013-11-13 06:34:03 -0800,1899,5761 -8489,9772,2013-11-13 06:57:48 -0800,1899,5762 -8490,1062,2013-11-06 23:30:03 -0800,1899,5761 -8491,6827,2013-11-08 14:27:55 -0800,1899,5763 -8492,9752,2013-11-11 12:04:42 -0800,1899,5763 -8493,6751,2013-11-11 01:04:57 -0800,1900,5766 -8494,6142,2013-11-09 16:09:25 -0800,1900,5766 -8495,5658,2013-11-06 10:58:33 -0800,1900,5766 -8496,1300,2013-11-07 08:57:57 -0800,1900,5766 -8497,8712,2013-11-10 00:39:37 -0800,1901,5767 -8498,3027,2013-11-13 04:49:54 -0800,1901,5767 -8499,8268,2013-11-09 16:31:08 -0800,1901,5767 -8500,7112,2013-11-08 11:10:38 -0800,1901,5767 -8501,3193,2013-11-07 17:16:40 -0800,1901,5767 -8502,5067,2013-11-12 13:25:53 -0800,1901,5767 -8503,2970,2013-11-11 11:06:13 -0800,1901,5767 -8504,9452,2013-11-07 04:15:35 -0800,1901,5767 -8505,3453,2013-11-10 18:10:10 -0800,1903,5771 -8506,4240,2013-11-12 14:10:50 -0800,1903,5771 -8507,9495,2013-11-06 22:06:17 -0800,1903,5771 -8508,9180,2013-11-07 02:25:15 -0800,1903,5771 -8509,9165,2013-11-11 01:32:31 -0800,1904,5772 -8510,7381,2013-11-11 05:58:28 -0800,1904,5773 -8511,3545,2013-11-08 21:00:46 -0800,1904,5772 -8512,6617,2013-11-06 11:26:41 -0800,1904,5773 -8513,4910,2013-11-13 04:47:54 -0800,1904,5773 -8514,7120,2013-11-06 22:28:24 -0800,1904,5773 -8515,8257,2013-11-11 17:51:59 -0800,1906,5780 -8516,6980,2013-11-06 15:39:57 -0800,1906,5778 -8517,7848,2013-11-06 21:15:57 -0800,1906,5778 -8518,2471,2013-11-10 03:17:36 -0800,1906,5778 -8519,6141,2013-11-10 04:39:05 -0800,1907,5782 -8520,8430,2013-11-11 11:39:46 -0800,1909,5785 -8521,3215,2013-11-12 09:05:04 -0800,1909,5786 -8522,4679,2013-11-08 22:13:55 -0800,1909,5784 -8523,6645,2013-11-09 23:02:50 -0800,1910,5787 -8524,2600,2013-11-09 02:59:26 -0800,1910,5788 -8525,2414,2013-11-10 18:13:21 -0800,1910,5788 -8526,6374,2013-11-09 12:17:31 -0800,1910,5787 -8527,8181,2013-11-07 06:45:07 -0800,1911,5790 -8528,1535,2013-11-11 15:49:48 -0800,1911,5790 -8529,2590,2013-11-11 06:22:37 -0800,1911,5791 -8530,3540,2013-11-11 09:07:41 -0800,1911,5791 -8531,8763,2013-11-12 20:55:10 -0800,1911,5791 -8532,7684,2013-11-11 06:09:59 -0800,1911,5789 -8533,5851,2013-11-07 00:22:37 -0800,1912,5792 -8534,1661,2013-11-08 23:36:43 -0800,1912,5792 -8535,2670,2013-11-10 01:55:46 -0800,1912,5792 -8536,6262,2013-11-10 10:31:59 -0800,1912,5792 -8537,40,2013-11-07 23:06:38 -0800,1912,5792 -8538,1970,2013-11-06 11:11:58 -0800,1912,5792 -8539,1535,2013-11-11 13:57:39 -0800,1913,5794 -8540,6677,2013-11-09 11:02:43 -0800,1913,5795 -8541,1913,2013-11-06 23:17:54 -0800,1913,5794 -8542,657,2013-11-07 04:55:09 -0800,1913,5795 -8543,8650,2013-11-06 16:10:31 -0800,1913,5793 -8544,1748,2013-11-11 21:50:49 -0800,1913,5795 -8545,9249,2013-11-06 08:40:02 -0800,1913,5793 -8546,9591,2013-11-09 22:22:56 -0800,1914,5797 -8547,811,2013-11-07 22:19:40 -0800,1914,5799 -8548,7055,2013-11-07 00:35:23 -0800,1914,5797 -8549,1780,2013-11-10 17:07:51 -0800,1914,5797 -8550,3482,2013-11-10 21:09:16 -0800,1915,5800 -8551,8884,2013-11-09 05:31:50 -0800,1915,5802 -8552,1117,2013-11-08 22:10:30 -0800,1915,5802 -8553,1738,2013-11-07 07:17:49 -0800,1915,5800 -8554,3786,2013-11-10 14:54:26 -0800,1915,5800 -8555,5479,2013-11-09 08:37:51 -0800,1915,5800 -8556,3032,2013-11-13 08:25:29 -0800,1916,5803 -8557,9116,2013-11-08 00:49:53 -0800,1916,5805 -8558,9122,2013-11-10 22:33:40 -0800,1916,5804 -8559,4730,2013-11-06 10:01:18 -0800,1916,5806 -8560,3794,2013-11-11 20:36:29 -0800,1916,5807 -8561,4476,2013-11-07 06:05:56 -0800,1916,5805 -8562,6160,2013-11-09 22:02:16 -0800,1916,5805 -8563,9743,2013-11-08 05:25:34 -0800,1916,5805 -8564,9286,2013-11-12 05:09:47 -0800,1916,5807 -8565,1239,2013-11-13 08:12:28 -0800,1918,5811 -8566,3014,2013-11-11 01:14:39 -0800,1918,5812 -8567,617,2013-11-12 16:14:49 -0800,1918,5810 -8568,5222,2013-11-07 10:28:01 -0800,1918,5809 -8569,4640,2013-11-10 16:29:33 -0800,1918,5812 -8570,1520,2013-11-11 12:53:13 -0800,1918,5812 -8571,1326,2013-11-09 08:00:37 -0800,1918,5811 -8572,1847,2013-11-10 06:58:42 -0800,1918,5809 -8573,7723,2013-11-07 11:50:22 -0800,1918,5812 -8574,1571,2013-11-06 10:17:30 -0800,1920,5818 -8575,9111,2013-11-06 08:59:46 -0800,1920,5819 -8576,4940,2013-11-07 20:14:34 -0800,1920,5818 -8577,5910,2013-11-10 04:40:38 -0800,1920,5818 -8578,5127,2013-11-07 13:01:58 -0800,1920,5819 -8579,249,2013-11-10 13:14:55 -0800,1920,5819 -8580,8391,2013-11-09 12:53:48 -0800,1921,5820 -8581,4056,2013-11-08 18:59:23 -0800,1921,5823 -8582,3976,2013-11-07 10:40:47 -0800,1921,5823 -8583,840,2013-11-07 15:32:19 -0800,1921,5822 -8584,644,2013-11-08 01:59:58 -0800,1921,5820 -8585,549,2013-11-12 11:35:50 -0800,1921,5823 -8586,5756,2013-11-07 21:55:54 -0800,1921,5823 -8587,754,2013-11-12 01:35:21 -0800,1922,5825 -8588,5553,2013-11-09 16:48:59 -0800,1922,5825 -8589,8696,2013-11-07 13:20:09 -0800,1923,5826 -8590,7967,2013-11-11 08:14:22 -0800,1923,5826 -8591,2641,2013-11-12 07:19:05 -0800,1923,5826 -8592,2654,2013-11-12 19:36:50 -0800,1923,5826 -8593,5070,2013-11-07 23:04:35 -0800,1923,5826 -8594,6071,2013-11-07 19:18:04 -0800,1923,5826 -8595,7255,2013-11-08 16:58:41 -0800,1923,5826 -8596,7913,2013-11-06 10:34:41 -0800,1923,5826 -8597,5992,2013-11-11 01:54:34 -0800,1924,5827 -8598,8287,2013-11-10 09:57:55 -0800,1924,5827 -8599,753,2013-11-07 00:53:32 -0800,1926,5834 -8600,9116,2013-11-07 23:47:46 -0800,1926,5833 -8601,9835,2013-11-13 04:03:36 -0800,1926,5833 -8602,1476,2013-11-12 07:35:47 -0800,1926,5833 -8603,1069,2013-11-06 10:54:43 -0800,1926,5834 -8604,8242,2013-11-07 00:59:22 -0800,1926,5834 -8605,5766,2013-11-11 19:04:41 -0800,1926,5834 -8606,5877,2013-11-07 06:02:35 -0800,1926,5834 -8607,2435,2013-11-13 04:12:19 -0800,1927,5836 -8608,9523,2013-11-12 12:44:54 -0800,1927,5836 -8609,9486,2013-11-07 16:39:32 -0800,1927,5835 -8610,6681,2013-11-08 03:23:21 -0800,1927,5836 -8611,8058,2013-11-12 05:05:55 -0800,1927,5836 -8612,2175,2013-11-07 12:23:25 -0800,1927,5835 -8613,7030,2013-11-06 11:23:21 -0800,1928,5839 -8614,3031,2013-11-10 21:33:23 -0800,1928,5840 -8615,4096,2013-11-07 11:05:54 -0800,1928,5840 -8616,1093,2013-11-11 21:43:11 -0800,1928,5838 -8617,140,2013-11-12 15:55:16 -0800,1928,5840 -8618,9350,2013-11-08 23:26:34 -0800,1928,5838 -8619,5478,2013-11-12 08:35:52 -0800,1928,5837 -8620,7144,2013-11-12 01:58:10 -0800,1929,5842 -8621,4533,2013-11-10 19:46:51 -0800,1929,5841 -8622,3945,2013-11-12 05:43:31 -0800,1929,5842 -8623,637,2013-11-10 03:38:12 -0800,1929,5841 -8624,7884,2013-11-07 23:52:48 -0800,1929,5841 -8625,2177,2013-11-06 23:23:05 -0800,1929,5841 -8626,567,2013-11-09 12:53:09 -0800,1929,5842 -8627,935,2013-11-08 20:50:36 -0800,1930,5843 -8628,8190,2013-11-09 00:41:22 -0800,1930,5844 -8629,6082,2013-11-12 16:37:51 -0800,1930,5845 -8630,2684,2013-11-08 12:38:52 -0800,1930,5843 -8631,6568,2013-11-06 17:09:52 -0800,1930,5844 -8632,5676,2013-11-11 07:39:19 -0800,1931,5849 -8633,6260,2013-11-11 13:14:00 -0800,1931,5848 -8634,781,2013-11-11 06:55:27 -0800,1931,5847 -8635,2377,2013-11-07 07:07:11 -0800,1931,5849 -8636,3384,2013-11-11 11:00:52 -0800,1931,5847 -8637,9824,2013-11-11 17:58:04 -0800,1932,5852 -8638,5000,2013-11-12 16:58:49 -0800,1932,5853 -8639,6266,2013-11-12 07:19:36 -0800,1932,5852 -8640,6741,2013-11-09 18:49:17 -0800,1932,5853 -8641,7656,2013-11-08 11:56:17 -0800,1933,5857 -8642,1417,2013-11-09 04:09:38 -0800,1933,5857 -8643,8415,2013-11-08 13:41:18 -0800,1933,5857 -8644,2777,2013-11-06 10:50:47 -0800,1933,5856 -8645,2920,2013-11-08 02:37:49 -0800,1933,5856 -8646,1789,2013-11-10 05:03:35 -0800,1933,5857 -8647,450,2013-11-11 11:37:05 -0800,1933,5855 -8648,9181,2013-11-11 09:49:23 -0800,1933,5857 -8649,1771,2013-11-12 11:40:01 -0800,1933,5854 -8650,3925,2013-11-08 16:55:48 -0800,1934,5858 -8651,8196,2013-11-09 17:23:35 -0800,1934,5858 -8652,6972,2013-11-11 02:24:42 -0800,1934,5858 -8653,3269,2013-11-10 17:37:15 -0800,1934,5858 -8654,9638,2013-11-11 05:10:39 -0800,1935,5860 -8655,2716,2013-11-09 02:04:57 -0800,1935,5861 -8656,6890,2013-11-12 01:05:29 -0800,1935,5859 -8657,4166,2013-11-10 03:21:29 -0800,1935,5859 -8658,796,2013-11-12 17:52:56 -0800,1935,5860 -8659,459,2013-11-10 04:57:49 -0800,1935,5861 -8660,3536,2013-11-10 02:58:30 -0800,1935,5860 -8661,8918,2013-11-12 15:24:12 -0800,1935,5860 -8662,7652,2013-11-11 07:17:56 -0800,1936,5865 -8663,5970,2013-11-10 16:04:10 -0800,1937,5869 -8664,4819,2013-11-07 01:23:01 -0800,1939,5877 -8665,933,2013-11-10 02:55:54 -0800,1939,5875 -8666,5323,2013-11-09 17:03:11 -0800,1940,5880 -8667,3645,2013-11-08 18:21:04 -0800,1940,5879 -8668,3372,2013-11-07 03:40:27 -0800,1941,5882 -8669,4659,2013-11-10 03:37:00 -0800,1942,5884 -8670,5630,2013-11-09 13:52:01 -0800,1942,5884 -8671,4764,2013-11-07 16:00:35 -0800,1942,5883 -8672,4533,2013-11-09 23:22:35 -0800,1942,5883 -8673,4052,2013-11-09 06:22:59 -0800,1942,5884 -8674,2039,2013-11-07 06:21:02 -0800,1942,5883 -8675,2290,2013-11-08 01:53:48 -0800,1942,5883 -8676,8479,2013-11-10 15:39:33 -0800,1943,5886 -8677,1964,2013-11-08 02:11:35 -0800,1944,5889 -8678,2497,2013-11-09 03:40:06 -0800,1944,5889 -8679,8258,2013-11-07 16:22:18 -0800,1944,5890 -8680,5350,2013-11-12 22:29:34 -0800,1944,5889 -8681,1147,2013-11-11 14:25:09 -0800,1944,5888 -8682,1220,2013-11-06 18:39:32 -0800,1944,5889 -8683,5880,2013-11-12 02:12:39 -0800,1944,5889 -8684,5481,2013-11-07 20:13:59 -0800,1944,5890 -8685,7045,2013-11-11 14:47:18 -0800,1945,5892 -8686,2826,2013-11-09 13:22:22 -0800,1945,5892 -8687,4337,2013-11-06 21:45:24 -0800,1945,5891 -8688,2348,2013-11-11 14:52:10 -0800,1945,5892 -8689,4929,2013-11-12 22:21:41 -0800,1945,5892 -8690,5050,2013-11-09 04:17:03 -0800,1945,5891 -8691,3361,2013-11-11 14:22:41 -0800,1945,5893 -8692,4291,2013-11-13 00:37:18 -0800,1945,5893 -8693,3954,2013-11-10 22:31:02 -0800,1945,5892 -8694,2720,2013-11-12 04:10:12 -0800,1946,5899 -8695,117,2013-11-09 10:38:46 -0800,1946,5898 -8696,9881,2013-11-11 05:55:11 -0800,1946,5898 -8697,7715,2013-11-09 01:58:43 -0800,1946,5895 -8698,4661,2013-11-09 18:02:36 -0800,1946,5897 -8699,5736,2013-11-10 01:51:14 -0800,1946,5899 -8700,5927,2013-11-07 21:07:26 -0800,1946,5895 -8701,4933,2013-11-12 12:47:42 -0800,1946,5896 -8702,9284,2013-11-10 18:27:31 -0800,1947,5900 -8703,7200,2013-11-07 14:11:44 -0800,1947,5900 -8704,1789,2013-11-08 20:44:49 -0800,1947,5901 -8705,978,2013-11-07 14:37:57 -0800,1947,5900 -8706,3044,2013-11-11 14:04:35 -0800,1947,5901 -8707,5022,2013-11-08 15:20:07 -0800,1947,5901 -8708,4691,2013-11-07 05:31:11 -0800,1947,5900 -8709,3775,2013-11-08 10:10:27 -0800,1947,5900 -8710,2526,2013-11-12 22:21:48 -0800,1949,5909 -8711,1914,2013-11-10 09:46:42 -0800,1949,5908 -8712,6693,2013-11-09 00:50:25 -0800,1949,5907 -8713,4889,2013-11-12 03:28:30 -0800,1950,5910 -8714,4134,2013-11-12 22:07:22 -0800,1950,5910 -8715,8442,2013-11-08 20:07:58 -0800,1950,5910 -8716,7419,2013-11-09 20:25:58 -0800,1950,5910 -8717,3736,2013-11-09 05:43:36 -0800,1951,5915 -8718,6300,2013-11-10 18:40:56 -0800,1951,5913 -8719,5632,2013-11-11 11:56:44 -0800,1951,5914 -8720,9828,2013-11-13 06:40:44 -0800,1951,5913 -8721,8382,2013-11-07 07:20:37 -0800,1951,5914 -8722,8093,2013-11-07 14:03:34 -0800,1952,5920 -8723,9670,2013-11-08 12:07:41 -0800,1953,5921 -8724,3613,2013-11-10 18:08:08 -0800,1953,5924 -8725,7778,2013-11-09 17:51:51 -0800,1953,5922 -8726,9089,2013-11-10 00:58:06 -0800,1953,5921 -8727,839,2013-11-12 14:27:35 -0800,1953,5923 -8728,2454,2013-11-11 16:15:25 -0800,1954,5926 -8729,1700,2013-11-10 07:32:26 -0800,1954,5925 -8730,4117,2013-11-08 04:29:16 -0800,1954,5925 -8731,7155,2013-11-07 17:15:37 -0800,1955,5931 -8732,4786,2013-11-13 04:44:14 -0800,1955,5929 -8733,5383,2013-11-10 06:13:52 -0800,1955,5932 -8734,956,2013-11-10 18:49:57 -0800,1955,5932 -8735,6723,2013-11-06 23:17:30 -0800,1956,5937 -8736,7484,2013-11-09 08:50:30 -0800,1957,5940 -8737,7423,2013-11-09 14:31:44 -0800,1957,5941 -8738,8030,2013-11-12 10:33:01 -0800,1957,5940 -8739,5811,2013-11-06 12:07:09 -0800,1957,5941 -8740,157,2013-11-12 09:20:15 -0800,1957,5941 -8741,4939,2013-11-11 12:54:21 -0800,1957,5939 -8742,6027,2013-11-08 05:44:53 -0800,1957,5941 -8743,5726,2013-11-07 22:43:40 -0800,1958,5944 -8744,7483,2013-11-08 17:43:24 -0800,1958,5942 -8745,1714,2013-11-12 02:45:40 -0800,1958,5942 -8746,6199,2013-11-12 00:17:29 -0800,1958,5942 -8747,5823,2013-11-08 17:16:55 -0800,1958,5943 -8748,8344,2013-11-06 12:11:13 -0800,1958,5942 -8749,5449,2013-11-09 12:49:35 -0800,1958,5942 -8750,4982,2013-11-07 07:07:19 -0800,1959,5946 -8751,9689,2013-11-08 07:15:56 -0800,1959,5947 -8752,6789,2013-11-13 04:32:34 -0800,1959,5947 -8753,6651,2013-11-13 00:00:50 -0800,1959,5947 -8754,6559,2013-11-11 11:40:46 -0800,1959,5945 -8755,9489,2013-11-06 16:44:54 -0800,1960,5948 -8756,7967,2013-11-12 10:01:43 -0800,1960,5948 -8757,210,2013-11-12 13:16:47 -0800,1960,5949 -8758,5526,2013-11-07 13:25:09 -0800,1960,5948 -8759,6397,2013-11-11 22:54:20 -0800,1960,5948 -8760,3822,2013-11-09 12:00:50 -0800,1960,5949 -8761,9177,2013-11-13 06:57:19 -0800,1961,5951 -8762,9085,2013-11-09 17:27:06 -0800,1961,5950 -8763,9778,2013-11-10 16:01:35 -0800,1961,5950 -8764,1551,2013-11-12 11:57:38 -0800,1961,5950 -8765,4792,2013-11-11 02:26:40 -0800,1961,5950 -8766,1091,2013-11-11 02:27:54 -0800,1962,5957 -8767,5149,2013-11-12 09:03:51 -0800,1962,5956 -8768,2816,2013-11-10 22:53:11 -0800,1962,5953 -8769,8075,2013-11-09 20:03:33 -0800,1962,5953 -8770,6380,2013-11-07 09:21:08 -0800,1962,5953 -8771,117,2013-11-12 01:27:36 -0800,1962,5955 -8772,6626,2013-11-09 12:39:32 -0800,1962,5954 -8773,9142,2013-11-09 10:16:50 -0800,1962,5953 -8774,5775,2013-11-11 05:37:51 -0800,1963,5959 -8775,7034,2013-11-09 13:07:20 -0800,1963,5959 -8776,3084,2013-11-09 14:40:59 -0800,1963,5958 -8777,178,2013-11-08 01:46:11 -0800,1963,5960 -8778,1882,2013-11-09 12:03:17 -0800,1963,5959 -8779,2297,2013-11-07 13:00:19 -0800,1963,5959 -8780,9010,2013-11-11 03:15:22 -0800,1963,5958 -8781,6830,2013-11-07 19:46:39 -0800,1963,5959 -8782,1493,2013-11-07 08:50:01 -0800,1963,5958 -8783,9859,2013-11-08 06:29:50 -0800,1964,5962 -8784,2677,2013-11-09 20:13:16 -0800,1964,5961 -8785,1180,2013-11-08 16:19:15 -0800,1964,5961 -8786,7013,2013-11-07 12:40:25 -0800,1964,5962 -8787,1572,2013-11-12 18:10:59 -0800,1964,5961 -8788,4226,2013-11-08 15:31:18 -0800,1964,5962 -8789,8280,2013-11-09 04:35:05 -0800,1965,5966 -8790,9415,2013-11-09 15:31:47 -0800,1965,5963 -8791,6659,2013-11-12 11:45:14 -0800,1965,5963 -8792,2555,2013-11-08 23:26:32 -0800,1965,5963 -8793,3154,2013-11-11 10:10:14 -0800,1965,5967 -8794,7666,2013-11-09 18:46:59 -0800,1966,5968 -8795,7575,2013-11-09 07:58:12 -0800,1966,5970 -8796,9415,2013-11-06 17:09:54 -0800,1966,5969 -8797,7990,2013-11-06 21:04:36 -0800,1966,5968 -8798,7147,2013-11-10 16:12:15 -0800,1966,5971 -8799,3060,2013-11-10 23:19:18 -0800,1966,5972 -8800,1970,2013-11-12 22:59:31 -0800,1966,5970 -8801,4522,2013-11-09 06:59:33 -0800,1967,5975 -8802,558,2013-11-06 17:04:33 -0800,1967,5977 -8803,6437,2013-11-12 21:34:10 -0800,1967,5974 -8804,2819,2013-11-10 18:11:50 -0800,1967,5976 -8805,4084,2013-11-10 06:35:56 -0800,1967,5977 -8806,9680,2013-11-13 03:18:18 -0800,1967,5977 -8807,4555,2013-11-07 22:44:22 -0800,1967,5974 -8808,4820,2013-11-08 00:32:34 -0800,1967,5975 -8809,1743,2013-11-07 13:26:49 -0800,1968,5979 -8810,4747,2013-11-11 08:40:26 -0800,1968,5978 -8811,9775,2013-11-08 02:42:59 -0800,1968,5978 -8812,6295,2013-11-11 11:59:21 -0800,1968,5979 -8813,362,2013-11-10 11:23:34 -0800,1968,5978 -8814,6811,2013-11-07 10:43:03 -0800,1968,5979 -8815,5094,2013-11-09 07:53:35 -0800,1968,5979 -8816,9349,2013-11-11 08:04:09 -0800,1968,5978 -8817,9687,2013-11-06 10:50:31 -0800,1968,5978 -8818,8861,2013-11-12 14:15:47 -0800,1969,5981 -8819,2730,2013-11-11 00:06:42 -0800,1969,5981 -8820,1482,2013-11-07 16:17:28 -0800,1969,5984 -8821,9826,2013-11-08 00:46:54 -0800,1969,5982 -8822,6829,2013-11-09 13:58:31 -0800,1969,5984 -8823,2242,2013-11-08 14:40:57 -0800,1969,5981 -8824,5343,2013-11-08 16:43:06 -0800,1969,5982 -8825,5772,2013-11-13 00:36:02 -0800,1969,5981 -8826,3417,2013-11-11 14:44:34 -0800,1969,5981 -8827,658,2013-11-13 02:49:13 -0800,1970,5986 -8828,1526,2013-11-11 04:54:58 -0800,1970,5986 -8829,5667,2013-11-06 13:48:35 -0800,1970,5986 -8830,7963,2013-11-09 15:33:27 -0800,1970,5986 -8831,3982,2013-11-06 10:57:05 -0800,1970,5985 -8832,1764,2013-11-08 07:26:50 -0800,1970,5986 -8833,3327,2013-11-11 16:38:26 -0800,1970,5986 -8834,9599,2013-11-09 00:38:11 -0800,1971,5987 -8835,1780,2013-11-06 17:40:21 -0800,1971,5988 -8836,7609,2013-11-12 02:18:47 -0800,1972,5989 -8837,2330,2013-11-12 13:36:16 -0800,1972,5992 -8838,947,2013-11-11 06:10:39 -0800,1972,5990 -8839,7820,2013-11-12 13:37:03 -0800,1972,5989 -8840,5538,2013-11-11 04:11:04 -0800,1972,5989 -8841,96,2013-11-13 07:52:41 -0800,1972,5991 -8842,4972,2013-11-12 06:57:33 -0800,1972,5990 -8843,1585,2013-11-11 15:48:08 -0800,1974,5996 -8844,4748,2013-11-11 05:03:07 -0800,1974,5996 -8845,3827,2013-11-12 05:45:23 -0800,1974,5995 -8846,6487,2013-11-08 02:52:43 -0800,1974,5994 -8847,8955,2013-11-06 16:58:27 -0800,1974,5994 -8848,911,2013-11-12 19:57:11 -0800,1974,5995 -8849,1145,2013-11-07 00:42:55 -0800,1974,5996 -8850,4920,2013-11-12 01:32:48 -0800,1975,5997 -8851,177,2013-11-07 19:47:13 -0800,1975,5997 -8852,6684,2013-11-08 23:45:07 -0800,1975,5997 -8853,5838,2013-11-10 22:09:56 -0800,1975,5997 -8854,7119,2013-11-12 06:20:19 -0800,1975,5997 -8855,9454,2013-11-09 17:06:32 -0800,1975,5997 -8856,1654,2013-11-08 06:46:15 -0800,1975,5997 -8857,7319,2013-11-06 16:29:05 -0800,1976,5998 -8858,3249,2013-11-06 14:26:59 -0800,1976,5998 -8859,7680,2013-11-09 13:47:46 -0800,1976,5998 -8860,2930,2013-11-09 14:50:33 -0800,1976,5998 -8861,5235,2013-11-09 04:05:50 -0800,1976,5998 -8862,7990,2013-11-12 10:12:01 -0800,1977,5999 -8863,1939,2013-11-12 16:59:28 -0800,1977,6001 -8864,5273,2013-11-08 00:20:18 -0800,1977,6001 -8865,2941,2013-11-06 08:54:59 -0800,1977,6000 -8866,2937,2013-11-06 19:40:43 -0800,1977,6000 -8867,3432,2013-11-09 23:08:09 -0800,1977,6001 -8868,3268,2013-11-09 06:37:23 -0800,1978,6003 -8869,222,2013-11-08 00:20:40 -0800,1978,6002 -8870,7920,2013-11-11 21:45:40 -0800,1978,6003 -8871,7009,2013-11-13 03:04:22 -0800,1980,6009 -8872,7593,2013-11-07 10:00:08 -0800,1980,6009 -8873,7563,2013-11-08 11:10:36 -0800,1981,6015 -8874,7477,2013-11-12 04:32:50 -0800,1981,6015 -8875,4829,2013-11-10 20:52:20 -0800,1981,6013 -8876,2722,2013-11-09 08:47:30 -0800,1981,6014 -8877,1891,2013-11-07 06:52:52 -0800,1981,6015 -8878,1513,2013-11-07 00:45:30 -0800,1981,6013 -8879,6784,2013-11-07 13:04:29 -0800,1982,6017 -8880,890,2013-11-08 21:43:47 -0800,1982,6017 -8881,3410,2013-11-10 01:21:23 -0800,1983,6019 -8882,4949,2013-11-13 02:49:06 -0800,1984,6023 -8883,1727,2013-11-08 03:07:00 -0800,1984,6023 -8884,8293,2013-11-11 08:29:13 -0800,1984,6024 -8885,292,2013-11-08 14:47:19 -0800,1984,6023 -8886,8265,2013-11-12 14:45:48 -0800,1984,6023 -8887,4722,2013-11-11 07:42:49 -0800,1984,6024 -8888,1350,2013-11-09 03:11:53 -0800,1984,6023 -8889,7778,2013-11-06 15:31:30 -0800,1984,6024 -8890,1319,2013-11-12 06:50:48 -0800,1985,6025 -8891,1922,2013-11-10 03:25:08 -0800,1986,6028 -8892,6645,2013-11-08 15:04:11 -0800,1986,6030 -8893,2150,2013-11-11 03:06:32 -0800,1986,6027 -8894,5074,2013-11-12 10:29:09 -0800,1986,6030 -8895,1414,2013-11-12 07:59:49 -0800,1987,6035 -8896,831,2013-11-07 19:37:30 -0800,1987,6035 -8897,2450,2013-11-10 10:57:47 -0800,1987,6035 -8898,2073,2013-11-13 02:21:09 -0800,1987,6034 -8899,7042,2013-11-10 21:35:24 -0800,1988,6036 -8900,5981,2013-11-11 07:46:44 -0800,1988,6036 -8901,5510,2013-11-08 05:09:39 -0800,1988,6038 -8902,3090,2013-11-08 04:47:41 -0800,1988,6037 -8903,8850,2013-11-10 00:26:30 -0800,1988,6038 -8904,2157,2013-11-08 03:56:09 -0800,1988,6038 -8905,7817,2013-11-07 00:23:39 -0800,1988,6037 -8906,6855,2013-11-12 23:14:16 -0800,1988,6036 -8907,1342,2013-11-12 14:14:32 -0800,1988,6036 -8908,5233,2013-11-07 03:08:55 -0800,1990,6043 -8909,5531,2013-11-06 20:11:46 -0800,1990,6043 -8910,3422,2013-11-06 13:11:48 -0800,1990,6042 -8911,9738,2013-11-06 23:45:42 -0800,1990,6043 -8912,4552,2013-11-09 14:57:33 -0800,1990,6044 -8913,62,2013-11-10 20:38:36 -0800,1991,6046 -8914,319,2013-11-10 20:18:35 -0800,1991,6046 -8915,4431,2013-11-10 12:23:16 -0800,1991,6045 -8916,4281,2013-11-12 10:45:10 -0800,1992,6048 -8917,9650,2013-11-10 09:03:41 -0800,1992,6048 -8918,9051,2013-11-11 05:26:03 -0800,1992,6048 -8919,8233,2013-11-12 22:00:03 -0800,1992,6048 -8920,5542,2013-11-11 22:01:24 -0800,1992,6048 -8921,6613,2013-11-11 10:07:51 -0800,1992,6048 -8922,3556,2013-11-11 21:50:04 -0800,1992,6048 -8923,731,2013-11-09 17:42:52 -0800,1993,6049 -8924,9362,2013-11-06 14:35:51 -0800,1993,6052 -8925,6670,2013-11-09 00:26:39 -0800,1994,6055 -8926,710,2013-11-08 01:06:26 -0800,1994,6054 -8927,5684,2013-11-08 18:39:12 -0800,1994,6054 -8928,9067,2013-11-08 12:41:21 -0800,1994,6054 -8929,5181,2013-11-13 06:48:28 -0800,1994,6054 -8930,7640,2013-11-13 04:37:06 -0800,1994,6054 -8931,5596,2013-11-07 10:46:05 -0800,1995,6057 -8932,6851,2013-11-11 13:32:24 -0800,1995,6059 -8933,2338,2013-11-11 18:15:33 -0800,1995,6059 -8934,4280,2013-11-11 02:55:06 -0800,1995,6059 -8935,3296,2013-11-10 05:54:19 -0800,1996,6062 -8936,2327,2013-11-11 15:51:47 -0800,1996,6062 -8937,2879,2013-11-11 02:10:35 -0800,1996,6061 -8938,7079,2013-11-07 13:31:37 -0800,1996,6060 -8939,7323,2013-11-08 00:22:44 -0800,1996,6060 -8940,7333,2013-11-12 03:54:55 -0800,1996,6062 -8941,3529,2013-11-08 15:41:14 -0800,1997,6063 -8942,4216,2013-11-13 01:59:30 -0800,1998,6070 -8943,4580,2013-11-06 11:08:25 -0800,1998,6068 -8944,8498,2013-11-11 22:43:23 -0800,1999,6072 -8945,3661,2013-11-12 20:39:00 -0800,1999,6074 -8946,3900,2013-11-10 11:49:43 -0800,2000,6076 -8947,8068,2013-11-09 16:41:17 -0800,2000,6076 -8948,5128,2013-11-06 23:52:12 -0800,2000,6076 -8949,7153,2013-11-09 23:40:47 -0800,2000,6076 -8950,5134,2013-11-09 13:12:46 -0800,2001,6077 -8951,9138,2013-11-07 08:44:54 -0800,2001,6077 -8952,7814,2013-11-12 20:01:27 -0800,2001,6078 -8953,8942,2013-11-07 02:13:52 -0800,2001,6078 -8954,8912,2013-11-08 09:01:50 -0800,2001,6078 -8955,4764,2013-11-11 22:55:07 -0800,2001,6078 -8956,268,2013-11-08 04:34:43 -0800,2002,6083 -8957,876,2013-11-08 14:24:30 -0800,2003,6085 -8958,524,2013-11-06 17:18:42 -0800,2003,6085 -8959,7329,2013-11-08 07:05:30 -0800,2003,6085 -8960,7325,2013-11-08 19:22:36 -0800,2004,6086 -8961,5226,2013-11-10 03:29:18 -0800,2004,6086 -8962,9112,2013-11-07 04:39:42 -0800,2004,6086 -8963,2191,2013-11-07 17:32:47 -0800,2004,6086 -8964,5094,2013-11-08 15:52:51 -0800,2004,6086 -8965,3486,2013-11-09 09:20:02 -0800,2004,6086 -8966,6951,2013-11-09 09:40:45 -0800,2004,6088 -8967,2128,2013-11-07 15:14:15 -0800,2004,6086 -8968,7586,2013-11-10 12:55:52 -0800,2004,6089 -8969,4237,2013-11-09 07:44:38 -0800,2005,6090 -8970,6761,2013-11-07 12:46:49 -0800,2005,6091 -8971,4296,2013-11-09 04:57:58 -0800,2005,6090 -8972,4220,2013-11-07 17:20:10 -0800,2005,6091 -8973,436,2013-11-12 13:00:37 -0800,2005,6091 -8974,229,2013-11-07 18:33:01 -0800,2005,6091 -8975,68,2013-11-11 05:56:38 -0800,2006,6095 -8976,7809,2013-11-07 11:01:59 -0800,2006,6093 -8977,4916,2013-11-10 15:12:53 -0800,2006,6092 -8978,5798,2013-11-08 21:54:38 -0800,2009,6107 -8979,8283,2013-11-09 01:34:07 -0800,2009,6107 -8980,3250,2013-11-10 15:42:06 -0800,2010,6111 -8981,7492,2013-11-07 07:43:36 -0800,2010,6108 -8982,9070,2013-11-06 08:48:32 -0800,2010,6110 -8983,6310,2013-11-12 18:04:50 -0800,2010,6111 -8984,1955,2013-11-13 07:57:22 -0800,2010,6109 -8985,4147,2013-11-10 06:51:02 -0800,2010,6108 -8986,5610,2013-11-10 21:54:04 -0800,2010,6111 -8987,869,2013-11-08 23:05:38 -0800,2011,6113 -8988,3059,2013-11-08 12:31:17 -0800,2011,6113 -8989,22,2013-11-11 14:14:34 -0800,2011,6112 -8990,3585,2013-11-13 05:26:31 -0800,2011,6112 -8991,4076,2013-11-10 16:16:10 -0800,2011,6112 -8992,289,2013-11-12 11:52:29 -0800,2011,6113 -8993,8463,2013-11-07 17:01:11 -0800,2011,6112 -8994,2052,2013-11-11 22:38:32 -0800,2013,6122 -8995,7848,2013-11-07 10:21:52 -0800,2013,6118 -8996,2558,2013-11-12 23:32:32 -0800,2013,6121 -8997,9520,2013-11-09 00:09:07 -0800,2013,6122 -8998,4525,2013-11-12 15:27:53 -0800,2013,6118 -8999,4838,2013-11-12 17:43:22 -0800,2013,6122 -9000,545,2013-11-12 18:13:36 -0800,2013,6121 -9001,6723,2013-11-10 06:31:53 -0800,2013,6121 -9002,9659,2013-11-11 22:03:37 -0800,2013,6121 -9003,921,2013-11-08 03:40:05 -0800,2016,6131 -9004,1080,2013-11-11 10:19:02 -0800,2016,6131 -9005,2766,2013-11-11 05:44:20 -0800,2016,6133 -9006,5251,2013-11-08 04:39:49 -0800,2016,6131 -9007,546,2013-11-08 01:35:28 -0800,2016,6129 -9008,550,2013-11-12 17:30:58 -0800,2016,6129 -9009,9675,2013-11-11 12:57:52 -0800,2016,6133 -9010,3644,2013-11-10 23:53:12 -0800,2016,6130 -9011,8293,2013-11-12 19:49:52 -0800,2017,6135 -9012,491,2013-11-11 20:26:57 -0800,2017,6135 -9013,9334,2013-11-06 12:09:42 -0800,2017,6134 -9014,320,2013-11-10 06:59:51 -0800,2017,6135 -9015,2500,2013-11-06 16:44:31 -0800,2017,6135 -9016,5090,2013-11-08 12:48:06 -0800,2019,6139 -9017,7779,2013-11-11 18:34:25 -0800,2019,6139 -9018,469,2013-11-08 11:06:29 -0800,2019,6139 -9019,2145,2013-11-06 20:10:30 -0800,2020,6142 -9020,2768,2013-11-08 04:40:16 -0800,2020,6143 -9021,4340,2013-11-07 11:08:47 -0800,2020,6144 -9022,7194,2013-11-08 07:22:27 -0800,2021,6149 -9023,2969,2013-11-09 12:21:08 -0800,2021,6145 -9024,9894,2013-11-12 06:05:27 -0800,2021,6148 -9025,2485,2013-11-12 02:29:39 -0800,2021,6148 -9026,5840,2013-11-10 08:06:41 -0800,2022,6152 -9027,514,2013-11-11 14:29:16 -0800,2023,6153 -9028,2985,2013-11-10 02:11:19 -0800,2023,6153 -9029,6076,2013-11-13 08:33:02 -0800,2023,6153 -9030,5633,2013-11-09 07:21:36 -0800,2024,6156 -9031,4963,2013-11-12 19:33:32 -0800,2024,6156 -9032,4268,2013-11-12 09:20:50 -0800,2024,6155 -9033,552,2013-11-09 02:58:31 -0800,2024,6156 -9034,1253,2013-11-12 14:27:00 -0800,2024,6156 -9035,7200,2013-11-07 13:00:50 -0800,2024,6155 -9036,9842,2013-11-07 15:16:49 -0800,2025,6157 -9037,231,2013-11-10 22:57:06 -0800,2026,6161 -9038,6951,2013-11-08 20:53:39 -0800,2026,6162 -9039,7652,2013-11-08 15:16:56 -0800,2026,6162 -9040,1266,2013-11-08 02:50:12 -0800,2026,6162 -9041,3180,2013-11-06 23:01:59 -0800,2026,6163 -9042,6875,2013-11-08 05:50:28 -0800,2026,6164 -9043,2416,2013-11-10 20:06:19 -0800,2026,6162 -9044,7800,2013-11-12 03:22:30 -0800,2027,6165 -9045,4462,2013-11-10 19:12:42 -0800,2027,6165 -9046,9655,2013-11-12 07:47:13 -0800,2027,6165 -9047,9531,2013-11-12 02:17:15 -0800,2027,6165 -9048,4330,2013-11-09 17:01:51 -0800,2027,6165 -9049,8541,2013-11-13 08:01:50 -0800,2027,6165 -9050,521,2013-11-10 18:39:22 -0800,2028,6166 -9051,3596,2013-11-12 01:56:16 -0800,2028,6167 -9052,660,2013-11-06 10:53:34 -0800,2028,6167 -9053,273,2013-11-09 15:35:10 -0800,2028,6167 -9054,1556,2013-11-07 20:26:05 -0800,2030,6172 -9055,7997,2013-11-13 00:16:58 -0800,2030,6171 -9056,8159,2013-11-08 08:08:40 -0800,2030,6170 -9057,4540,2013-11-09 00:03:19 -0800,2030,6171 -9058,4170,2013-11-08 01:38:54 -0800,2030,6171 -9059,8034,2013-11-07 00:02:09 -0800,2030,6170 -9060,1450,2013-11-12 06:44:56 -0800,2031,6173 -9061,5546,2013-11-09 08:25:40 -0800,2031,6173 -9062,2069,2013-11-13 07:47:56 -0800,2031,6173 -9063,5865,2013-11-12 04:02:46 -0800,2031,6173 -9064,7542,2013-11-12 14:03:46 -0800,2031,6173 -9065,1121,2013-11-11 06:52:40 -0800,2031,6173 -9066,8444,2013-11-12 10:06:51 -0800,2031,6173 -9067,7770,2013-11-12 20:55:38 -0800,2032,6174 -9068,2928,2013-11-12 09:20:40 -0800,2032,6175 -9069,449,2013-11-08 18:13:56 -0800,2032,6174 -9070,843,2013-11-11 22:46:49 -0800,2032,6174 -9071,1135,2013-11-09 05:26:12 -0800,2032,6175 -9072,334,2013-11-09 11:34:57 -0800,2032,6176 -9073,1228,2013-11-08 04:28:46 -0800,2033,6179 -9074,8619,2013-11-11 12:02:13 -0800,2033,6178 -9075,339,2013-11-07 09:40:25 -0800,2033,6178 -9076,123,2013-11-08 21:31:49 -0800,2033,6177 -9077,4420,2013-11-10 02:18:32 -0800,2033,6179 -9078,5595,2013-11-13 03:54:18 -0800,2033,6179 -9079,5760,2013-11-08 09:49:07 -0800,2034,6181 -9080,5827,2013-11-11 05:56:28 -0800,2034,6181 -9081,8183,2013-11-11 08:23:05 -0800,2034,6180 -9082,1244,2013-11-09 14:58:21 -0800,2034,6180 -9083,5254,2013-11-11 12:57:41 -0800,2034,6180 -9084,8310,2013-11-09 22:53:59 -0800,2035,6182 -9085,7584,2013-11-11 04:44:53 -0800,2035,6182 -9086,2671,2013-11-11 01:54:35 -0800,2036,6183 -9087,6848,2013-11-10 16:38:58 -0800,2036,6184 -9088,8346,2013-11-12 09:58:31 -0800,2036,6183 -9089,5596,2013-11-09 04:00:26 -0800,2036,6183 -9090,3750,2013-11-08 06:41:37 -0800,2036,6184 -9091,2250,2013-11-09 16:55:39 -0800,2036,6183 -9092,7359,2013-11-11 19:15:56 -0800,2037,6185 -9093,360,2013-11-09 01:03:55 -0800,2037,6185 -9094,8250,2013-11-13 03:07:19 -0800,2037,6185 -9095,8864,2013-11-11 17:52:25 -0800,2037,6185 -9096,856,2013-11-09 18:30:23 -0800,2037,6185 -9097,4550,2013-11-12 02:45:56 -0800,2037,6185 -9098,9298,2013-11-07 01:59:57 -0800,2037,6185 -9099,2570,2013-11-07 20:15:07 -0800,2037,6185 -9100,6980,2013-11-10 21:22:04 -0800,2037,6185 -9101,8420,2013-11-11 17:20:10 -0800,2038,6187 -9102,2817,2013-11-10 10:37:42 -0800,2038,6186 -9103,8889,2013-11-09 15:48:10 -0800,2038,6188 -9104,2321,2013-11-08 19:07:16 -0800,2038,6187 -9105,1090,2013-11-07 01:16:29 -0800,2038,6186 -9106,4818,2013-11-06 09:16:01 -0800,2039,6190 -9107,6350,2013-11-12 05:11:22 -0800,2039,6189 -9108,6037,2013-11-10 14:22:35 -0800,2039,6192 -9109,530,2013-11-10 17:56:38 -0800,2039,6190 -9110,5467,2013-11-13 08:03:26 -0800,2040,6194 -9111,160,2013-11-12 20:02:20 -0800,2040,6195 -9112,2734,2013-11-13 03:24:43 -0800,2040,6194 -9113,1941,2013-11-11 13:23:58 -0800,2040,6194 -9114,5437,2013-11-11 22:36:41 -0800,2040,6194 -9115,5736,2013-11-11 06:34:51 -0800,2040,6194 -9116,5620,2013-11-10 02:02:09 -0800,2040,6194 -9117,7709,2013-11-12 21:28:48 -0800,2041,6199 -9118,8840,2013-11-09 23:02:45 -0800,2041,6197 -9119,7900,2013-11-06 12:14:57 -0800,2041,6199 -9120,170,2013-11-08 20:33:57 -0800,2042,6201 -9121,198,2013-11-09 14:30:01 -0800,2042,6202 -9122,4681,2013-11-12 23:19:46 -0800,2042,6201 -9123,1113,2013-11-11 14:50:53 -0800,2042,6202 -9124,9625,2013-11-06 18:12:42 -0800,2043,6204 -9125,4398,2013-11-10 07:06:47 -0800,2043,6204 -9126,3627,2013-11-10 12:58:14 -0800,2043,6204 -9127,2879,2013-11-09 17:34:06 -0800,2045,6208 -9128,2218,2013-11-06 22:15:41 -0800,2045,6210 -9129,6929,2013-11-10 12:50:07 -0800,2045,6209 -9130,5458,2013-11-08 10:29:10 -0800,2046,6213 -9131,2253,2013-11-12 12:36:12 -0800,2046,6212 -9132,7348,2013-11-12 17:16:31 -0800,2046,6213 -9133,9233,2013-11-06 16:56:25 -0800,2046,6211 -9134,5560,2013-11-09 13:09:33 -0800,2046,6211 -9135,8919,2013-11-09 22:47:06 -0800,2046,6212 -9136,4059,2013-11-07 06:34:11 -0800,2046,6211 -9137,3640,2013-11-11 09:17:48 -0800,2046,6213 -9138,7863,2013-11-10 18:09:04 -0800,2046,6211 -9139,9341,2013-11-09 10:05:40 -0800,2047,6215 -9140,939,2013-11-11 02:20:01 -0800,2047,6217 -9141,320,2013-11-07 13:07:15 -0800,2047,6218 -9142,741,2013-11-08 09:04:06 -0800,2047,6214 -9143,2042,2013-11-08 17:06:22 -0800,2048,6220 -9144,9173,2013-11-07 18:26:17 -0800,2048,6220 -9145,6938,2013-11-06 13:54:41 -0800,2048,6220 -9146,2373,2013-11-08 12:49:54 -0800,2048,6219 -9147,9551,2013-11-06 10:42:16 -0800,2049,6224 -9148,7523,2013-11-10 06:08:26 -0800,2049,6221 -9149,7351,2013-11-07 06:45:04 -0800,2050,6227 -9150,1963,2013-11-09 17:30:25 -0800,2050,6226 -9151,9127,2013-11-08 00:53:47 -0800,2050,6228 -9152,7570,2013-11-07 19:41:44 -0800,2051,6233 -9153,8695,2013-11-12 19:47:52 -0800,2051,6230 -9154,7994,2013-11-11 06:32:04 -0800,2051,6232 -9155,8677,2013-11-06 14:19:28 -0800,2051,6233 -9156,6829,2013-11-12 18:20:14 -0800,2051,6230 -9157,2639,2013-11-11 15:23:37 -0800,2051,6229 -9158,3911,2013-11-12 04:49:05 -0800,2051,6231 -9159,6570,2013-11-12 13:12:22 -0800,2052,6234 -9160,9154,2013-11-09 02:23:29 -0800,2053,6237 -9161,6584,2013-11-07 06:56:37 -0800,2055,6242 -9162,9733,2013-11-08 21:42:41 -0800,2055,6243 -9163,1487,2013-11-11 06:01:21 -0800,2056,6245 -9164,4980,2013-11-10 06:48:48 -0800,2056,6248 -9165,2861,2013-11-12 20:26:04 -0800,2056,6248 -9166,6256,2013-11-09 11:17:40 -0800,2056,6248 -9167,1238,2013-11-13 01:28:12 -0800,2056,6248 -9168,1080,2013-11-08 18:03:33 -0800,2057,6249 -9169,7213,2013-11-12 23:51:26 -0800,2057,6249 -9170,1880,2013-11-08 12:07:18 -0800,2057,6249 -9171,2170,2013-11-11 04:08:42 -0800,2057,6249 -9172,8319,2013-11-06 10:53:11 -0800,2057,6249 -9173,4835,2013-11-08 10:51:02 -0800,2057,6249 -9174,473,2013-11-10 11:02:25 -0800,2057,6249 -9175,9756,2013-11-10 03:57:08 -0800,2057,6249 -9176,540,2013-11-10 16:20:08 -0800,2057,6249 -9177,5348,2013-11-09 21:41:42 -0800,2058,6250 -9178,3160,2013-11-11 19:30:45 -0800,2058,6250 -9179,9468,2013-11-08 11:32:57 -0800,2058,6253 -9180,1180,2013-11-07 11:27:56 -0800,2058,6254 -9181,325,2013-11-08 05:38:35 -0800,2058,6251 -9182,7759,2013-11-10 13:39:39 -0800,2058,6252 -9183,8660,2013-11-07 08:28:42 -0800,2058,6250 -9184,4162,2013-11-08 04:13:21 -0800,2058,6252 -9185,9434,2013-11-06 21:02:19 -0800,2059,6256 -9186,6097,2013-11-12 12:54:19 -0800,2059,6255 -9187,869,2013-11-11 14:04:13 -0800,2059,6256 -9188,3289,2013-11-07 16:03:54 -0800,2059,6255 -9189,1482,2013-11-08 18:51:19 -0800,2059,6256 -9190,7675,2013-11-12 17:13:13 -0800,2059,6256 -9191,825,2013-11-07 18:33:51 -0800,2059,6256 -9192,1330,2013-11-09 20:25:02 -0800,2060,6258 -9193,7728,2013-11-10 11:43:53 -0800,2060,6257 -9194,374,2013-11-07 10:34:11 -0800,2061,6262 -9195,2455,2013-11-09 20:21:06 -0800,2061,6261 -9196,5070,2013-11-08 09:41:38 -0800,2063,6268 -9197,8340,2013-11-09 16:33:53 -0800,2063,6267 -9198,7273,2013-11-08 23:29:51 -0800,2063,6267 -9199,8430,2013-11-12 07:30:27 -0800,2063,6268 -9200,9313,2013-11-10 05:20:04 -0800,2063,6267 -9201,2865,2013-11-08 17:51:08 -0800,2063,6267 -9202,748,2013-11-07 18:02:34 -0800,2063,6266 -9203,2522,2013-11-11 11:36:21 -0800,2065,6272 -9204,6470,2013-11-07 09:01:04 -0800,2066,6273 -9205,4770,2013-11-07 17:10:01 -0800,2066,6275 -9206,4244,2013-11-12 10:46:52 -0800,2066,6274 -9207,852,2013-11-13 06:39:36 -0800,2066,6273 -9208,814,2013-11-07 09:26:35 -0800,2067,6278 -9209,9556,2013-11-10 05:36:45 -0800,2067,6279 -9210,9610,2013-11-13 04:50:37 -0800,2067,6277 -9211,3191,2013-11-08 15:05:41 -0800,2067,6277 -9212,7579,2013-11-08 07:12:54 -0800,2067,6279 -9213,7290,2013-11-09 16:13:05 -0800,2068,6282 -9214,4551,2013-11-08 01:15:32 -0800,2069,6286 -9215,9467,2013-11-13 06:20:30 -0800,2069,6286 -9216,6659,2013-11-08 17:04:58 -0800,2069,6285 -9217,5094,2013-11-06 22:31:26 -0800,2070,6287 -9218,5375,2013-11-09 18:06:57 -0800,2071,6289 -9219,7097,2013-11-12 04:17:54 -0800,2071,6289 -9220,6913,2013-11-08 09:35:08 -0800,2071,6289 -9221,3510,2013-11-08 10:18:45 -0800,2071,6289 -9222,1242,2013-11-10 13:19:27 -0800,2072,6293 -9223,2080,2013-11-09 17:32:27 -0800,2072,6292 -9224,6513,2013-11-11 21:42:43 -0800,2072,6293 -9225,5327,2013-11-07 03:07:51 -0800,2073,6296 -9226,7781,2013-11-06 09:01:46 -0800,2074,6297 -9227,689,2013-11-06 21:33:43 -0800,2074,6297 -9228,8936,2013-11-08 06:01:30 -0800,2074,6297 -9229,9060,2013-11-07 08:13:13 -0800,2074,6297 -9230,3828,2013-11-11 04:48:37 -0800,2074,6297 -9231,1534,2013-11-10 18:07:53 -0800,2075,6299 -9232,6429,2013-11-11 16:56:00 -0800,2075,6301 -9233,14,2013-11-10 15:15:32 -0800,2075,6301 -9234,2883,2013-11-07 22:13:40 -0800,2075,6299 -9235,318,2013-11-07 02:38:00 -0800,2076,6303 -9236,8290,2013-11-10 15:18:46 -0800,2076,6303 -9237,7740,2013-11-10 08:12:52 -0800,2076,6303 -9238,2744,2013-11-06 17:41:42 -0800,2076,6305 -9239,9814,2013-11-12 15:31:08 -0800,2076,6305 -9240,9370,2013-11-07 16:56:17 -0800,2076,6303 -9241,4666,2013-11-06 09:49:25 -0800,2076,6304 -9242,300,2013-11-07 13:00:37 -0800,2076,6305 -9243,2580,2013-11-09 09:36:21 -0800,2076,6302 -9244,9490,2013-11-08 04:19:29 -0800,2077,6308 -9245,2961,2013-11-08 02:33:25 -0800,2077,6306 -9246,4117,2013-11-11 20:43:38 -0800,2077,6308 -9247,8172,2013-11-09 10:43:10 -0800,2077,6308 -9248,5399,2013-11-08 19:22:48 -0800,2077,6309 -9249,2496,2013-11-07 22:49:41 -0800,2077,6309 -9250,5447,2013-11-09 21:19:45 -0800,2077,6308 -9251,4300,2013-11-10 00:27:53 -0800,2077,6309 -9252,5328,2013-11-07 15:56:00 -0800,2078,6311 -9253,4361,2013-11-10 20:53:12 -0800,2078,6311 -9254,114,2013-11-10 12:28:13 -0800,2078,6310 -9255,6863,2013-11-08 19:47:15 -0800,2078,6311 -9256,86,2013-11-08 02:29:29 -0800,2079,6313 -9257,5572,2013-11-07 23:08:52 -0800,2079,6313 -9258,4216,2013-11-13 05:57:42 -0800,2081,6317 -9259,8327,2013-11-08 07:25:52 -0800,2081,6319 -9260,2122,2013-11-09 00:35:02 -0800,2081,6318 -9261,6282,2013-11-08 01:20:43 -0800,2081,6319 -9262,9090,2013-11-07 09:01:24 -0800,2081,6320 -9263,2533,2013-11-06 22:22:44 -0800,2081,6319 -9264,4833,2013-11-07 15:28:17 -0800,2081,6320 -9265,488,2013-11-11 18:28:22 -0800,2081,6320 -9266,5918,2013-11-09 16:59:51 -0800,2082,6322 -9267,6120,2013-11-08 11:38:48 -0800,2082,6321 -9268,1315,2013-11-11 10:12:25 -0800,2082,6322 -9269,6715,2013-11-10 07:48:02 -0800,2082,6322 -9270,5994,2013-11-09 04:28:18 -0800,2082,6321 -9271,2132,2013-11-09 11:50:25 -0800,2082,6321 -9272,1682,2013-11-10 22:02:53 -0800,2082,6321 -9273,1139,2013-11-11 23:05:41 -0800,2082,6321 -9274,335,2013-11-08 03:35:05 -0800,2083,6325 -9275,6256,2013-11-09 08:52:28 -0800,2083,6324 -9276,947,2013-11-12 10:10:20 -0800,2083,6324 -9277,8500,2013-11-08 03:39:55 -0800,2083,6324 -9278,2010,2013-11-09 17:19:04 -0800,2083,6324 -9279,4232,2013-11-09 10:22:35 -0800,2084,6328 -9280,2048,2013-11-08 19:47:11 -0800,2085,6331 -9281,3629,2013-11-09 17:03:12 -0800,2085,6329 -9282,3276,2013-11-09 08:42:51 -0800,2085,6330 -9283,7048,2013-11-08 15:00:53 -0800,2085,6329 -9284,835,2013-11-09 05:39:00 -0800,2085,6329 -9285,257,2013-11-12 06:28:36 -0800,2085,6330 -9286,8319,2013-11-08 00:02:56 -0800,2086,6336 -9287,750,2013-11-07 00:50:04 -0800,2086,6335 -9288,2459,2013-11-08 00:16:17 -0800,2086,6332 -9289,657,2013-11-12 03:45:00 -0800,2086,6336 -9290,7398,2013-11-07 06:14:21 -0800,2087,6337 -9291,6344,2013-11-07 07:09:21 -0800,2087,6337 -9292,7051,2013-11-07 22:04:53 -0800,2087,6337 -9293,4059,2013-11-06 20:22:05 -0800,2087,6338 -9294,3070,2013-11-07 23:33:39 -0800,2087,6338 -9295,6534,2013-11-09 12:49:06 -0800,2087,6338 -9296,6277,2013-11-12 10:21:12 -0800,2087,6337 -9297,5237,2013-11-11 12:04:38 -0800,2088,6340 -9298,3527,2013-11-11 16:16:01 -0800,2089,6348 -9299,9736,2013-11-08 02:30:13 -0800,2089,6348 -9300,4737,2013-11-11 15:11:26 -0800,2089,6347 -9301,170,2013-11-10 23:41:01 -0800,2089,6345 -9302,7190,2013-11-10 00:58:33 -0800,2089,6347 -9303,9363,2013-11-08 18:35:45 -0800,2089,6347 -9304,1182,2013-11-11 22:43:52 -0800,2089,6347 -9305,4460,2013-11-13 06:27:21 -0800,2089,6346 -9306,8780,2013-11-11 20:02:24 -0800,2090,6351 -9307,8033,2013-11-08 22:10:24 -0800,2090,6351 -9308,6809,2013-11-08 06:48:33 -0800,2090,6349 -9309,2328,2013-11-09 02:25:55 -0800,2090,6350 -9310,6677,2013-11-07 08:46:35 -0800,2090,6351 -9311,268,2013-11-08 04:15:10 -0800,2090,6349 -9312,1626,2013-11-10 01:59:26 -0800,2090,6351 -9313,2688,2013-11-11 15:55:36 -0800,2091,6355 -9314,4637,2013-11-11 17:38:49 -0800,2091,6356 -9315,6199,2013-11-11 11:51:16 -0800,2091,6355 -9316,3961,2013-11-11 07:42:54 -0800,2091,6352 -9317,9166,2013-11-13 04:31:22 -0800,2091,6355 -9318,2442,2013-11-07 23:53:00 -0800,2091,6352 -9319,9179,2013-11-09 20:37:38 -0800,2091,6352 -9320,2070,2013-11-06 23:18:38 -0800,2091,6353 -9321,5359,2013-11-10 21:20:47 -0800,2092,6357 -9322,6229,2013-11-10 02:54:42 -0800,2092,6357 -9323,5811,2013-11-06 19:38:56 -0800,2092,6357 -9324,7868,2013-11-10 05:52:51 -0800,2092,6357 -9325,735,2013-11-07 01:04:50 -0800,2092,6357 -9326,1584,2013-11-07 02:41:46 -0800,2092,6358 -9327,4737,2013-11-10 04:06:09 -0800,2092,6357 -9328,3522,2013-11-09 12:18:02 -0800,2092,6358 -9329,7950,2013-11-07 01:01:22 -0800,2093,6360 -9330,2187,2013-11-10 14:26:17 -0800,2093,6360 -9331,6162,2013-11-11 08:21:01 -0800,2093,6359 -9332,1869,2013-11-12 07:40:28 -0800,2093,6360 -9333,4144,2013-11-09 09:56:46 -0800,2093,6359 -9334,6986,2013-11-12 23:52:22 -0800,2093,6360 -9335,4749,2013-11-13 07:28:43 -0800,2094,6361 -9336,214,2013-11-06 12:28:07 -0800,2094,6362 -9337,5431,2013-11-08 02:30:25 -0800,2094,6361 -9338,2487,2013-11-09 19:50:06 -0800,2094,6361 -9339,3451,2013-11-12 15:21:58 -0800,2094,6361 -9340,125,2013-11-10 14:57:19 -0800,2094,6361 -9341,1366,2013-11-09 19:51:56 -0800,2094,6362 -9342,7915,2013-11-06 08:53:16 -0800,2094,6362 -9343,4250,2013-11-07 08:09:33 -0800,2094,6361 -9344,8571,2013-11-10 01:34:16 -0800,2095,6366 -9345,6931,2013-11-12 21:53:57 -0800,2095,6366 -9346,6954,2013-11-09 18:14:08 -0800,2095,6366 -9347,7864,2013-11-12 02:11:49 -0800,2095,6363 -9348,1586,2013-11-08 12:44:33 -0800,2095,6366 -9349,4550,2013-11-09 09:58:29 -0800,2095,6364 -9350,9063,2013-11-12 09:34:30 -0800,2095,6366 -9351,8427,2013-11-06 08:44:09 -0800,2095,6363 -9352,6030,2013-11-06 16:11:40 -0800,2095,6365 -9353,7139,2013-11-09 05:47:27 -0800,2096,6368 -9354,1226,2013-11-11 06:10:05 -0800,2096,6369 -9355,5770,2013-11-10 11:57:29 -0800,2096,6369 -9356,6434,2013-11-06 09:30:10 -0800,2099,6381 -9357,5491,2013-11-12 07:27:47 -0800,2099,6382 -9358,7942,2013-11-08 07:53:49 -0800,2099,6380 -9359,9029,2013-11-12 23:40:35 -0800,2099,6381 -9360,9774,2013-11-11 10:15:02 -0800,2099,6382 -9361,2910,2013-11-06 08:55:30 -0800,2101,6390 -9362,8820,2013-11-09 03:21:35 -0800,2101,6390 -9363,7276,2013-11-08 05:12:39 -0800,2101,6390 -9364,8059,2013-11-08 14:32:40 -0800,2101,6390 -9365,3517,2013-11-12 05:55:24 -0800,2101,6390 -9366,718,2013-11-10 11:44:39 -0800,2102,6391 -9367,3765,2013-11-12 07:32:53 -0800,2102,6391 -9368,2337,2013-11-12 21:35:28 -0800,2102,6391 -9369,4427,2013-11-09 04:59:12 -0800,2102,6391 -9370,2569,2013-11-12 01:37:44 -0800,2103,6392 -9371,8921,2013-11-12 11:40:06 -0800,2105,6399 -9372,1075,2013-11-12 15:30:00 -0800,2105,6398 -9373,6155,2013-11-10 05:49:06 -0800,2106,6402 -9374,1153,2013-11-10 07:57:31 -0800,2106,6401 -9375,5381,2013-11-10 07:51:08 -0800,2106,6403 -9376,2961,2013-11-10 06:12:47 -0800,2107,6405 -9377,6010,2013-11-09 09:25:28 -0800,2107,6404 -9378,899,2013-11-08 12:38:07 -0800,2108,6408 -9379,6759,2013-11-13 05:53:48 -0800,2108,6408 -9380,4227,2013-11-09 17:17:32 -0800,2108,6410 -9381,7053,2013-11-08 11:10:50 -0800,2108,6406 -9382,5949,2013-11-11 13:35:39 -0800,2108,6406 -9383,8173,2013-11-10 11:03:23 -0800,2108,6410 -9384,8131,2013-11-07 10:21:34 -0800,2108,6406 -9385,5283,2013-11-08 15:03:40 -0800,2109,6414 -9386,5280,2013-11-06 12:55:33 -0800,2109,6412 -9387,9261,2013-11-09 09:31:50 -0800,2109,6411 -9388,2362,2013-11-11 09:36:46 -0800,2110,6418 -9389,4347,2013-11-09 13:42:13 -0800,2110,6417 -9390,4518,2013-11-06 17:38:39 -0800,2110,6415 -9391,5843,2013-11-10 12:08:42 -0800,2110,6415 -9392,7617,2013-11-12 10:56:29 -0800,2111,6419 -9393,3740,2013-11-12 14:33:52 -0800,2111,6419 -9394,1256,2013-11-11 22:25:57 -0800,2111,6420 -9395,7317,2013-11-11 03:35:59 -0800,2112,6421 -9396,299,2013-11-07 03:45:04 -0800,2112,6421 -9397,2042,2013-11-06 11:54:18 -0800,2112,6421 -9398,2747,2013-11-11 15:31:56 -0800,2112,6421 -9399,5680,2013-11-09 15:54:15 -0800,2112,6421 -9400,8040,2013-11-11 09:51:57 -0800,2112,6421 -9401,3490,2013-11-06 13:56:52 -0800,2113,6423 -9402,1193,2013-11-09 22:16:54 -0800,2113,6425 -9403,3224,2013-11-09 23:32:22 -0800,2113,6426 -9404,3415,2013-11-07 15:57:52 -0800,2113,6423 -9405,6565,2013-11-13 05:13:27 -0800,2113,6425 -9406,3639,2013-11-10 04:53:16 -0800,2114,6429 -9407,2731,2013-11-12 17:40:23 -0800,2114,6428 -9408,5240,2013-11-12 20:11:34 -0800,2114,6429 -9409,5683,2013-11-09 08:49:34 -0800,2114,6429 -9410,9186,2013-11-10 06:16:46 -0800,2114,6427 -9411,7059,2013-11-12 03:27:09 -0800,2115,6431 -9412,2320,2013-11-08 21:26:32 -0800,2115,6431 -9413,1046,2013-11-13 04:47:50 -0800,2116,6432 -9414,6667,2013-11-11 00:25:42 -0800,2116,6432 -9415,9631,2013-11-07 09:52:52 -0800,2116,6432 -9416,240,2013-11-08 21:35:43 -0800,2116,6434 -9417,5244,2013-11-11 20:02:48 -0800,2118,6441 -9418,5675,2013-11-09 16:05:56 -0800,2118,6439 -9419,5215,2013-11-11 09:30:23 -0800,2118,6442 -9420,66,2013-11-07 19:50:31 -0800,2119,6443 -9421,4029,2013-11-06 12:26:31 -0800,2119,6443 -9422,7468,2013-11-13 00:48:47 -0800,2119,6444 -9423,9096,2013-11-07 12:34:24 -0800,2119,6443 -9424,9880,2013-11-10 14:49:59 -0800,2119,6444 -9425,1499,2013-11-06 12:28:15 -0800,2120,6447 -9426,4728,2013-11-07 13:42:11 -0800,2120,6449 -9427,377,2013-11-11 14:11:18 -0800,2120,6446 -9428,93,2013-11-10 04:22:44 -0800,2120,6446 -9429,9798,2013-11-12 01:35:09 -0800,2121,6451 -9430,7730,2013-11-10 15:53:32 -0800,2121,6452 -9431,5523,2013-11-07 21:59:35 -0800,2121,6452 -9432,392,2013-11-12 23:13:18 -0800,2121,6452 -9433,8467,2013-11-11 22:21:36 -0800,2121,6450 -9434,8400,2013-11-07 13:14:50 -0800,2121,6452 -9435,3100,2013-11-06 16:22:47 -0800,2122,6453 -9436,9491,2013-11-07 02:13:19 -0800,2122,6453 -9437,4741,2013-11-08 14:45:29 -0800,2122,6453 -9438,1452,2013-11-13 06:33:49 -0800,2123,6457 -9439,8585,2013-11-09 21:57:54 -0800,2123,6456 -9440,2942,2013-11-12 09:15:27 -0800,2124,6459 -9441,9340,2013-11-10 14:29:46 -0800,2124,6458 -9442,5815,2013-11-10 15:38:11 -0800,2124,6462 -9443,6879,2013-11-11 08:27:59 -0800,2125,6465 -9444,3865,2013-11-08 07:32:46 -0800,2126,6469 -9445,5459,2013-11-07 02:49:14 -0800,2126,6468 -9446,9464,2013-11-10 08:25:25 -0800,2127,6474 -9447,7478,2013-11-07 03:58:28 -0800,2127,6474 -9448,957,2013-11-07 05:45:40 -0800,2127,6471 -9449,3790,2013-11-13 01:33:09 -0800,2127,6471 -9450,4754,2013-11-07 14:34:14 -0800,2127,6471 -9451,1914,2013-11-10 19:08:55 -0800,2127,6470 -9452,6775,2013-11-07 08:29:26 -0800,2127,6472 -9453,3911,2013-11-08 22:57:34 -0800,2127,6472 -9454,2834,2013-11-11 17:34:41 -0800,2127,6471 -9455,5542,2013-11-12 13:56:46 -0800,2128,6475 -9456,9147,2013-11-07 23:03:38 -0800,2128,6478 -9457,8223,2013-11-08 01:54:20 -0800,2128,6479 -9458,5099,2013-11-09 03:30:19 -0800,2128,6479 -9459,249,2013-11-11 01:48:07 -0800,2128,6477 -9460,3041,2013-11-12 01:48:22 -0800,2128,6475 -9461,1563,2013-11-10 14:53:29 -0800,2128,6475 -9462,5890,2013-11-06 12:04:47 -0800,2128,6476 -9463,9870,2013-11-07 01:03:43 -0800,2128,6477 -9464,3790,2013-11-07 03:36:25 -0800,2130,6486 -9465,7270,2013-11-11 20:04:49 -0800,2130,6485 -9466,9693,2013-11-07 10:50:23 -0800,2130,6485 -9467,1619,2013-11-10 10:40:17 -0800,2130,6484 -9468,9771,2013-11-07 13:57:32 -0800,2130,6484 -9469,2159,2013-11-09 07:20:16 -0800,2130,6485 -9470,5533,2013-11-07 09:00:12 -0800,2130,6484 -9471,6634,2013-11-12 09:15:07 -0800,2131,6489 -9472,642,2013-11-10 07:05:50 -0800,2131,6488 -9473,2570,2013-11-11 20:57:09 -0800,2131,6489 -9474,9422,2013-11-12 23:36:31 -0800,2131,6487 -9475,8289,2013-11-11 16:51:54 -0800,2131,6490 -9476,9042,2013-11-08 07:42:50 -0800,2131,6487 -9477,6317,2013-11-09 16:15:43 -0800,2131,6490 -9478,2910,2013-11-08 23:39:49 -0800,2131,6488 -9479,6173,2013-11-06 18:18:15 -0800,2131,6488 -9480,4559,2013-11-06 14:08:33 -0800,2132,6491 -9481,8690,2013-11-09 10:47:00 -0800,2132,6494 -9482,9891,2013-11-09 06:10:01 -0800,2132,6493 -9483,6161,2013-11-08 04:52:47 -0800,2132,6491 -9484,2480,2013-11-11 03:48:51 -0800,2132,6493 -9485,3928,2013-11-09 02:57:28 -0800,2133,6500 -9486,6928,2013-11-11 02:31:40 -0800,2133,6496 -9487,6333,2013-11-07 07:48:17 -0800,2133,6497 -9488,1260,2013-11-12 02:00:57 -0800,2134,6501 -9489,8567,2013-11-06 21:57:09 -0800,2135,6507 -9490,1349,2013-11-10 00:41:55 -0800,2135,6506 -9491,9222,2013-11-07 19:52:14 -0800,2135,6506 -9492,9371,2013-11-08 04:37:55 -0800,2135,6507 -9493,3379,2013-11-07 21:41:06 -0800,2135,6507 -9494,1031,2013-11-06 14:15:06 -0800,2135,6506 -9495,5515,2013-11-08 23:31:36 -0800,2135,6506 -9496,8792,2013-11-10 02:51:10 -0800,2135,6506 -9497,9695,2013-11-10 23:28:30 -0800,2135,6506 -9498,8891,2013-11-08 05:51:33 -0800,2137,6514 -9499,9777,2013-11-07 11:15:43 -0800,2137,6513 -9500,6994,2013-11-10 20:26:22 -0800,2137,6514 -9501,1143,2013-11-10 17:34:24 -0800,2137,6514 -9502,5181,2013-11-11 02:11:57 -0800,2137,6511 -9503,7240,2013-11-07 20:52:17 -0800,2137,6514 -9504,6354,2013-11-12 02:44:22 -0800,2137,6512 -9505,4873,2013-11-06 12:43:01 -0800,2137,6512 -9506,8455,2013-11-08 10:25:58 -0800,2137,6512 -9507,1586,2013-11-11 18:29:49 -0800,2138,6515 -9508,32,2013-11-06 20:01:33 -0800,2138,6515 -9509,2245,2013-11-07 01:37:17 -0800,2138,6515 -9510,7598,2013-11-06 16:14:09 -0800,2138,6516 -9511,3272,2013-11-11 20:06:58 -0800,2139,6518 -9512,7122,2013-11-12 17:48:41 -0800,2139,6517 -9513,4384,2013-11-08 05:39:32 -0800,2140,6521 -9514,9853,2013-11-09 15:34:43 -0800,2141,6523 -9515,3417,2013-11-12 21:01:12 -0800,2141,6522 -9516,422,2013-11-09 20:26:29 -0800,2142,6526 -9517,742,2013-11-08 21:52:43 -0800,2144,6530 -9518,4853,2013-11-09 11:21:34 -0800,2145,6531 -9519,4051,2013-11-12 18:32:07 -0800,2145,6531 -9520,9571,2013-11-12 08:40:14 -0800,2145,6531 -9521,5417,2013-11-09 23:08:46 -0800,2146,6532 -9522,1726,2013-11-12 00:07:30 -0800,2148,6536 -9523,2886,2013-11-11 06:37:49 -0800,2148,6534 -9524,1173,2013-11-09 20:25:48 -0800,2148,6536 -9525,5458,2013-11-09 01:09:45 -0800,2148,6535 -9526,2294,2013-11-09 13:22:39 -0800,2149,6538 -9527,1647,2013-11-11 23:51:29 -0800,2151,6544 -9528,5744,2013-11-09 12:57:05 -0800,2151,6546 -9529,8998,2013-11-11 15:14:19 -0800,2151,6544 -9530,6831,2013-11-09 23:24:23 -0800,2151,6545 -9531,8338,2013-11-12 10:14:08 -0800,2151,6546 -9532,8868,2013-11-07 15:24:37 -0800,2151,6544 -9533,5831,2013-11-10 07:33:33 -0800,2151,6545 -9534,9272,2013-11-12 04:24:25 -0800,2153,6553 -9535,9268,2013-11-11 21:29:36 -0800,2153,6552 -9536,2381,2013-11-11 02:54:17 -0800,2153,6554 -9537,2376,2013-11-07 19:43:43 -0800,2153,6552 -9538,5931,2013-11-06 23:51:33 -0800,2155,6563 -9539,9898,2013-11-08 13:27:06 -0800,2155,6561 -9540,9162,2013-11-13 06:01:13 -0800,2155,6563 -9541,7570,2013-11-06 17:18:31 -0800,2155,6561 -9542,9512,2013-11-13 01:29:52 -0800,2155,6561 -9543,4430,2013-11-07 18:44:31 -0800,2155,6562 -9544,8120,2013-11-12 23:05:29 -0800,2156,6567 -9545,3238,2013-11-12 08:47:51 -0800,2156,6565 -9546,1321,2013-11-10 08:18:57 -0800,2156,6565 -9547,6439,2013-11-10 14:35:58 -0800,2156,6565 -9548,2123,2013-11-06 23:36:58 -0800,2156,6565 -9549,2777,2013-11-10 14:08:14 -0800,2157,6572 -9550,6085,2013-11-07 06:24:12 -0800,2157,6569 -9551,796,2013-11-10 20:16:14 -0800,2157,6568 -9552,4231,2013-11-12 11:58:38 -0800,2157,6568 -9553,2860,2013-11-11 20:11:06 -0800,2157,6571 -9554,6184,2013-11-08 15:02:43 -0800,2158,6575 -9555,4970,2013-11-13 05:17:44 -0800,2158,6573 -9556,1457,2013-11-09 02:54:59 -0800,2158,6575 -9557,4289,2013-11-11 15:47:46 -0800,2158,6574 -9558,7372,2013-11-06 23:59:36 -0800,2158,6576 -9559,684,2013-11-08 04:32:42 -0800,2158,6574 -9560,9257,2013-11-11 05:20:53 -0800,2158,6573 -9561,2180,2013-11-08 16:13:26 -0800,2158,6573 -9562,3981,2013-11-08 04:30:35 -0800,2159,6577 -9563,965,2013-11-12 12:00:13 -0800,2159,6577 -9564,3110,2013-11-09 07:26:53 -0800,2159,6577 -9565,6238,2013-11-13 02:49:55 -0800,2159,6577 -9566,6581,2013-11-12 08:55:32 -0800,2159,6577 -9567,1494,2013-11-10 10:23:46 -0800,2159,6577 -9568,1921,2013-11-12 16:26:54 -0800,2160,6580 -9569,7781,2013-11-08 16:11:56 -0800,2160,6580 -9570,2389,2013-11-11 02:07:45 -0800,2160,6579 -9571,3067,2013-11-09 20:32:30 -0800,2160,6578 -9572,3821,2013-11-10 00:17:24 -0800,2160,6579 -9573,3115,2013-11-09 06:03:58 -0800,2160,6579 -9574,7778,2013-11-13 05:44:28 -0800,2160,6578 -9575,5987,2013-11-08 10:14:42 -0800,2160,6579 -9576,3979,2013-11-10 18:02:23 -0800,2160,6578 -9577,5027,2013-11-11 21:01:08 -0800,2161,6581 -9578,2140,2013-11-10 03:25:01 -0800,2161,6582 -9579,9617,2013-11-11 15:36:32 -0800,2161,6583 -9580,425,2013-11-10 06:19:09 -0800,2161,6584 -9581,1789,2013-11-11 15:49:56 -0800,2161,6584 -9582,8843,2013-11-09 13:17:47 -0800,2161,6584 -9583,1186,2013-11-06 22:43:00 -0800,2162,6588 -9584,8698,2013-11-10 13:27:41 -0800,2162,6588 -9585,8840,2013-11-12 23:04:58 -0800,2162,6585 -9586,3191,2013-11-11 00:55:07 -0800,2162,6588 -9587,9856,2013-11-07 06:19:40 -0800,2162,6585 -9588,9534,2013-11-10 22:44:24 -0800,2162,6587 -9589,6223,2013-11-07 12:07:39 -0800,2162,6587 -9590,7989,2013-11-11 20:49:18 -0800,2162,6588 -9591,461,2013-11-10 18:22:30 -0800,2162,6588 -9592,587,2013-11-07 18:04:58 -0800,2163,6589 -9593,7019,2013-11-10 03:52:27 -0800,2163,6589 -9594,4232,2013-11-07 01:59:14 -0800,2163,6589 -9595,3278,2013-11-06 09:52:36 -0800,2165,6596 -9596,3745,2013-11-12 08:54:05 -0800,2167,6601 -9597,5263,2013-11-07 20:57:47 -0800,2167,6600 -9598,2063,2013-11-13 08:05:37 -0800,2167,6600 -9599,9357,2013-11-10 02:00:08 -0800,2167,6600 -9600,6027,2013-11-06 12:36:29 -0800,2168,6602 -9601,7044,2013-11-11 12:54:18 -0800,2168,6602 -9602,4993,2013-11-10 16:13:20 -0800,2168,6602 -9603,3099,2013-11-12 11:43:25 -0800,2168,6602 -9604,6629,2013-11-07 10:13:42 -0800,2168,6602 -9605,5043,2013-11-06 16:58:06 -0800,2168,6602 -9606,8013,2013-11-10 19:44:13 -0800,2168,6602 -9607,5224,2013-11-08 08:12:10 -0800,2169,6606 -9608,7430,2013-11-10 16:54:29 -0800,2169,6604 -9609,8668,2013-11-11 07:25:59 -0800,2169,6603 -9610,6020,2013-11-13 07:55:48 -0800,2169,6607 -9611,423,2013-11-10 04:56:51 -0800,2169,6605 -9612,3394,2013-11-07 13:31:31 -0800,2169,6606 -9613,1528,2013-11-12 18:27:58 -0800,2169,6605 -9614,1558,2013-11-06 19:08:47 -0800,2169,6604 -9615,8059,2013-11-11 19:32:11 -0800,2170,6608 -9616,6811,2013-11-12 19:59:31 -0800,2170,6609 -9617,760,2013-11-07 05:39:35 -0800,2171,6611 -9618,5839,2013-11-11 17:34:25 -0800,2171,6611 -9619,5067,2013-11-13 07:44:25 -0800,2171,6612 -9620,1480,2013-11-13 06:04:41 -0800,2171,6612 -9621,6023,2013-11-06 22:40:13 -0800,2171,6611 -9622,9315,2013-11-11 17:41:20 -0800,2172,6613 -9623,8512,2013-11-09 23:35:58 -0800,2172,6614 -9624,5114,2013-11-10 02:44:23 -0800,2172,6614 -9625,5139,2013-11-08 06:43:48 -0800,2173,6619 -9626,5712,2013-11-13 02:08:00 -0800,2173,6616 -9627,4262,2013-11-10 02:52:43 -0800,2174,6621 -9628,554,2013-11-08 02:35:16 -0800,2174,6620 -9629,7556,2013-11-07 10:18:36 -0800,2174,6622 -9630,2895,2013-11-07 15:40:00 -0800,2174,6621 -9631,281,2013-11-06 11:43:25 -0800,2174,6620 -9632,1472,2013-11-10 02:10:53 -0800,2174,6621 -9633,8395,2013-11-07 03:35:32 -0800,2174,6622 -9634,7751,2013-11-06 13:07:57 -0800,2174,6620 -9635,7280,2013-11-07 07:59:47 -0800,2174,6621 -9636,3145,2013-11-11 07:48:46 -0800,2175,6625 -9637,416,2013-11-11 02:33:22 -0800,2175,6626 -9638,7390,2013-11-11 16:03:59 -0800,2175,6626 -9639,1096,2013-11-11 10:19:11 -0800,2175,6626 -9640,6191,2013-11-10 19:30:02 -0800,2175,6625 -9641,1412,2013-11-07 07:23:03 -0800,2175,6626 -9642,5520,2013-11-09 12:04:13 -0800,2175,6625 -9643,530,2013-11-07 01:33:50 -0800,2175,6626 -9644,7427,2013-11-09 00:05:16 -0800,2176,6627 -9645,8740,2013-11-11 06:12:37 -0800,2176,6627 -9646,6078,2013-11-12 09:59:27 -0800,2176,6628 -9647,5737,2013-11-06 10:46:47 -0800,2176,6628 -9648,2863,2013-11-08 00:13:19 -0800,2176,6627 -9649,8599,2013-11-07 01:52:11 -0800,2176,6627 -9650,374,2013-11-09 18:22:19 -0800,2176,6628 -9651,3227,2013-11-07 08:51:50 -0800,2177,6630 -9652,1650,2013-11-08 16:30:40 -0800,2177,6630 -9653,447,2013-11-11 21:11:03 -0800,2177,6630 -9654,1893,2013-11-07 17:30:42 -0800,2177,6630 -9655,9593,2013-11-09 01:05:19 -0800,2177,6630 -9656,5949,2013-11-10 21:15:24 -0800,2178,6632 -9657,4631,2013-11-08 21:01:08 -0800,2179,6633 -9658,7795,2013-11-11 17:37:19 -0800,2179,6633 -9659,8273,2013-11-07 00:17:45 -0800,2180,6634 -9660,2893,2013-11-09 02:40:13 -0800,2180,6635 -9661,9667,2013-11-10 11:24:15 -0800,2180,6635 -9662,7651,2013-11-10 11:13:01 -0800,2180,6635 -9663,1393,2013-11-08 09:32:08 -0800,2181,6637 -9664,4887,2013-11-08 20:11:46 -0800,2181,6637 -9665,6952,2013-11-09 15:26:27 -0800,2181,6637 -9666,2582,2013-11-11 21:13:57 -0800,2181,6638 -9667,2066,2013-11-07 03:41:19 -0800,2181,6639 -9668,1411,2013-11-06 21:48:20 -0800,2181,6638 -9669,4288,2013-11-10 23:00:37 -0800,2181,6638 -9670,8389,2013-11-08 14:49:16 -0800,2182,6640 -9671,1131,2013-11-07 00:27:27 -0800,2182,6640 -9672,6360,2013-11-08 20:36:52 -0800,2182,6640 -9673,5897,2013-11-08 11:23:27 -0800,2182,6640 -9674,7114,2013-11-08 19:15:16 -0800,2182,6640 -9675,8126,2013-11-11 05:05:24 -0800,2183,6641 -9676,8640,2013-11-06 13:24:43 -0800,2183,6641 -9677,6575,2013-11-12 07:46:55 -0800,2183,6641 -9678,1723,2013-11-08 17:12:51 -0800,2183,6641 -9679,4093,2013-11-06 09:05:27 -0800,2183,6641 -9680,3496,2013-11-06 12:22:48 -0800,2183,6641 -9681,5698,2013-11-07 23:10:40 -0800,2183,6641 -9682,4791,2013-11-07 01:01:29 -0800,2183,6641 -9683,8369,2013-11-08 03:25:43 -0800,2184,6642 -9684,7293,2013-11-13 02:49:46 -0800,2184,6642 -9685,9014,2013-11-07 11:39:24 -0800,2184,6642 -9686,5686,2013-11-12 02:58:26 -0800,2184,6642 -9687,8445,2013-11-09 21:31:10 -0800,2185,6643 -9688,3085,2013-11-12 20:25:46 -0800,2185,6643 -9689,1843,2013-11-11 19:43:15 -0800,2185,6643 -9690,1964,2013-11-11 04:28:27 -0800,2185,6643 -9691,8851,2013-11-06 10:59:34 -0800,2185,6643 -9692,1764,2013-11-10 19:34:46 -0800,2185,6643 -9693,3574,2013-11-08 12:03:52 -0800,2185,6643 -9694,7552,2013-11-12 23:20:48 -0800,2185,6643 -9695,3428,2013-11-07 14:58:27 -0800,2186,6644 -9696,432,2013-11-10 09:17:40 -0800,2186,6644 -9697,5760,2013-11-10 07:56:53 -0800,2186,6645 -9698,1128,2013-11-12 22:56:33 -0800,2186,6644 -9699,64,2013-11-12 01:46:35 -0800,2186,6645 -9700,9850,2013-11-12 16:03:48 -0800,2186,6644 -9701,2871,2013-11-13 04:59:54 -0800,2186,6644 -9702,3057,2013-11-10 10:40:24 -0800,2187,6647 -9703,2036,2013-11-12 21:12:50 -0800,2187,6646 -9704,1266,2013-11-12 01:00:34 -0800,2187,6648 -9705,6661,2013-11-11 22:22:25 -0800,2187,6648 -9706,1927,2013-11-09 12:48:28 -0800,2187,6646 -9707,1825,2013-11-06 23:43:23 -0800,2187,6648 -9708,8668,2013-11-12 09:05:00 -0800,2187,6646 -9709,9798,2013-11-13 01:24:01 -0800,2187,6647 -9710,2568,2013-11-11 13:07:02 -0800,2187,6646 -9711,9047,2013-11-07 06:25:56 -0800,2188,6649 -9712,9219,2013-11-06 10:28:32 -0800,2188,6649 -9713,1245,2013-11-10 20:05:13 -0800,2188,6650 -9714,1980,2013-11-08 14:59:15 -0800,2188,6650 -9715,537,2013-11-06 16:26:36 -0800,2188,6650 -9716,3970,2013-11-12 01:55:02 -0800,2188,6649 -9717,9646,2013-11-12 04:27:15 -0800,2188,6650 -9718,215,2013-11-10 22:08:04 -0800,2188,6649 -9719,9434,2013-11-12 04:42:23 -0800,2189,6653 -9720,3635,2013-11-12 00:37:26 -0800,2189,6652 -9721,3453,2013-11-10 23:29:51 -0800,2189,6655 -9722,8830,2013-11-13 04:28:30 -0800,2189,6652 -9723,1854,2013-11-11 18:56:35 -0800,2189,6653 -9724,5970,2013-11-12 01:59:45 -0800,2191,6660 -9725,3933,2013-11-11 10:01:50 -0800,2191,6663 -9726,1112,2013-11-12 04:42:28 -0800,2191,6661 -9727,3097,2013-11-06 21:28:12 -0800,2192,6666 -9728,1670,2013-11-08 16:33:04 -0800,2192,6665 -9729,573,2013-11-09 15:25:18 -0800,2192,6665 -9730,9574,2013-11-11 14:35:49 -0800,2193,6671 -9731,8841,2013-11-09 21:10:30 -0800,2193,6670 -9732,7266,2013-11-11 10:35:06 -0800,2193,6672 -9733,3857,2013-11-12 03:42:58 -0800,2193,6670 -9734,8592,2013-11-11 15:01:44 -0800,2193,6668 -9735,6981,2013-11-08 07:56:53 -0800,2194,6673 -9736,3874,2013-11-08 09:59:16 -0800,2194,6673 -9737,1973,2013-11-07 20:20:12 -0800,2194,6673 -9738,2291,2013-11-09 17:57:38 -0800,2197,6684 -9739,8140,2013-11-10 09:59:54 -0800,2197,6683 -9740,922,2013-11-12 10:23:37 -0800,2197,6683 -9741,9798,2013-11-07 12:52:29 -0800,2197,6685 -9742,246,2013-11-11 16:49:44 -0800,2198,6690 -9743,5874,2013-11-07 02:58:40 -0800,2198,6687 -9744,2447,2013-11-12 11:23:53 -0800,2198,6689 -9745,9710,2013-11-09 13:56:19 -0800,2198,6688 -9746,8750,2013-11-10 08:40:43 -0800,2198,6689 -9747,7318,2013-11-06 13:19:40 -0800,2199,6692 -9748,2835,2013-11-09 05:19:54 -0800,2199,6692 -9749,3952,2013-11-08 11:53:03 -0800,2199,6692 -9750,3334,2013-11-12 09:30:34 -0800,2199,6692 -9751,2443,2013-11-09 08:29:34 -0800,2199,6692 -9752,8140,2013-11-08 22:55:46 -0800,2199,6692 -9753,8900,2013-11-09 14:02:01 -0800,2199,6692 -9754,7991,2013-11-10 07:13:00 -0800,2199,6692 -9755,7053,2013-11-10 03:23:47 -0800,2199,6692 -9756,7913,2013-11-08 12:12:03 -0800,2200,6695 -9757,3969,2013-11-07 11:00:34 -0800,2200,6696 -9758,2825,2013-11-11 13:17:59 -0800,2200,6694 -9759,4721,2013-11-07 21:15:26 -0800,2201,6700 -9760,7790,2013-11-09 17:33:03 -0800,2201,6698 -9761,9700,2013-11-09 00:53:38 -0800,2202,6703 -9762,1314,2013-11-11 03:24:43 -0800,2202,6702 -9763,6967,2013-11-06 08:49:13 -0800,2202,6704 -9764,1590,2013-11-07 20:35:17 -0800,2202,6702 -9765,7311,2013-11-08 07:26:03 -0800,2202,6704 -9766,3565,2013-11-10 08:55:43 -0800,2202,6705 -9767,4192,2013-11-10 17:07:30 -0800,2202,6704 -9768,3432,2013-11-12 23:28:47 -0800,2203,6706 -9769,2774,2013-11-11 19:57:29 -0800,2203,6707 -9770,4656,2013-11-07 09:53:18 -0800,2203,6706 -9771,9422,2013-11-08 03:21:32 -0800,2203,6706 -9772,813,2013-11-06 19:28:43 -0800,2203,6707 -9773,1621,2013-11-06 11:49:06 -0800,2203,6707 -9774,1632,2013-11-13 06:42:26 -0800,2203,6707 -9775,5596,2013-11-07 00:30:35 -0800,2203,6707 -9776,6850,2013-11-10 17:28:02 -0800,2203,6706 -9777,3510,2013-11-10 02:32:46 -0800,2204,6709 -9778,1660,2013-11-08 08:10:58 -0800,2204,6710 -9779,5926,2013-11-06 14:52:37 -0800,2204,6710 -9780,9621,2013-11-12 06:21:58 -0800,2204,6711 -9781,426,2013-11-11 19:49:52 -0800,2204,6711 -9782,6287,2013-11-08 06:35:31 -0800,2205,6713 -9783,2018,2013-11-09 12:48:22 -0800,2205,6712 -9784,160,2013-11-10 11:48:03 -0800,2205,6713 -9785,9713,2013-11-07 09:05:08 -0800,2205,6712 -9786,8484,2013-11-09 10:07:42 -0800,2205,6712 -9787,3289,2013-11-11 15:20:11 -0800,2206,6715 -9788,2357,2013-11-12 05:04:53 -0800,2206,6716 -9789,1163,2013-11-06 12:20:41 -0800,2206,6715 -9790,1530,2013-11-10 17:12:28 -0800,2206,6715 -9791,7422,2013-11-06 10:59:39 -0800,2206,6716 -9792,950,2013-11-11 14:35:42 -0800,2206,6714 -9793,8274,2013-11-12 16:51:00 -0800,2206,6715 -9794,7961,2013-11-09 18:20:09 -0800,2207,6718 -9795,7566,2013-11-10 04:12:30 -0800,2207,6718 -9796,7958,2013-11-09 19:08:07 -0800,2207,6718 -9797,8877,2013-11-07 04:43:45 -0800,2207,6718 -9798,6132,2013-11-08 05:46:17 -0800,2207,6717 -9799,8510,2013-11-06 22:34:07 -0800,2208,6719 -9800,7489,2013-11-06 13:12:24 -0800,2208,6723 -9801,2440,2013-11-10 19:12:54 -0800,2208,6719 -9802,8591,2013-11-13 01:50:49 -0800,2208,6722 -9803,3226,2013-11-11 12:18:18 -0800,2209,6725 -9804,9559,2013-11-06 16:39:34 -0800,2209,6725 -9805,7309,2013-11-13 03:45:35 -0800,2209,6725 -9806,1580,2013-11-09 02:03:03 -0800,2209,6726 -9807,8474,2013-11-10 09:14:47 -0800,2209,6725 -9808,4137,2013-11-13 02:18:12 -0800,2209,6724 -9809,3138,2013-11-13 04:05:59 -0800,2209,6725 -9810,5985,2013-11-12 10:36:55 -0800,2209,6725 -9811,256,2013-11-11 16:56:47 -0800,2209,6725 -9812,9440,2013-11-08 10:22:22 -0800,2210,6727 -9813,5540,2013-11-08 23:42:51 -0800,2210,6727 -9814,7059,2013-11-11 07:58:34 -0800,2210,6727 -9815,8170,2013-11-09 15:29:52 -0800,2210,6727 -9816,3742,2013-11-11 03:09:18 -0800,2210,6727 -9817,2445,2013-11-10 08:08:21 -0800,2210,6727 -9818,6456,2013-11-11 15:12:09 -0800,2210,6727 -9819,743,2013-11-07 04:34:17 -0800,2211,6728 -9820,6726,2013-11-12 04:45:43 -0800,2212,6730 -9821,6664,2013-11-11 13:32:08 -0800,2212,6729 -9822,3147,2013-11-07 18:17:24 -0800,2212,6731 -9823,2030,2013-11-10 00:14:52 -0800,2213,6732 -9824,6928,2013-11-09 06:48:19 -0800,2213,6732 -9825,2354,2013-11-10 21:20:58 -0800,2213,6732 -9826,2793,2013-11-07 00:41:34 -0800,2213,6732 -9827,8449,2013-11-06 12:37:16 -0800,2214,6733 -9828,8155,2013-11-11 06:49:04 -0800,2215,6737 -9829,1327,2013-11-08 14:12:59 -0800,2216,6741 -9830,7326,2013-11-08 23:56:30 -0800,2216,6740 -9831,3933,2013-11-06 17:25:49 -0800,2216,6743 -9832,4773,2013-11-11 22:15:06 -0800,2216,6742 -9833,1057,2013-11-09 14:54:44 -0800,2216,6742 -9834,4424,2013-11-06 20:22:52 -0800,2216,6740 -9835,1884,2013-11-11 02:16:44 -0800,2216,6742 -9836,810,2013-11-09 15:59:18 -0800,2216,6740 -9837,6823,2013-11-07 07:51:47 -0800,2217,6746 -9838,8370,2013-11-07 18:37:36 -0800,2217,6747 -9839,4299,2013-11-12 11:36:11 -0800,2217,6747 -9840,5372,2013-11-09 10:03:47 -0800,2217,6746 -9841,4820,2013-11-08 12:49:56 -0800,2217,6744 -9842,7122,2013-11-06 19:10:47 -0800,2217,6747 -9843,5043,2013-11-10 02:32:08 -0800,2219,6750 -9844,3913,2013-11-10 17:20:51 -0800,2219,6750 -9845,712,2013-11-10 12:28:26 -0800,2219,6752 -9846,8946,2013-11-06 19:49:29 -0800,2219,6752 -9847,2037,2013-11-08 13:10:27 -0800,2219,6751 -9848,1326,2013-11-11 11:13:56 -0800,2219,6750 -9849,7583,2013-11-10 21:14:44 -0800,2219,6750 -9850,2559,2013-11-10 16:56:30 -0800,2220,6754 -9851,1677,2013-11-10 09:08:47 -0800,2220,6755 -9852,5941,2013-11-11 06:07:25 -0800,2220,6757 -9853,2347,2013-11-06 18:26:49 -0800,2220,6757 -9854,8282,2013-11-10 22:30:17 -0800,2221,6759 -9855,4593,2013-11-06 16:56:30 -0800,2221,6760 -9856,60,2013-11-12 00:42:36 -0800,2222,6763 -9857,5182,2013-11-11 11:58:25 -0800,2224,6768 -9858,1030,2013-11-13 03:02:44 -0800,2224,6769 -9859,1177,2013-11-12 02:03:58 -0800,2224,6768 -9860,3196,2013-11-06 23:36:29 -0800,2225,6770 -9861,7859,2013-11-07 23:08:29 -0800,2225,6770 -9862,3459,2013-11-11 21:35:37 -0800,2225,6770 -9863,9420,2013-11-10 00:55:42 -0800,2225,6770 -9864,5251,2013-11-08 09:24:11 -0800,2225,6770 -9865,3324,2013-11-10 08:36:05 -0800,2226,6774 -9866,6494,2013-11-07 03:18:15 -0800,2226,6773 -9867,1894,2013-11-07 14:56:27 -0800,2226,6772 -9868,7094,2013-11-10 08:21:08 -0800,2226,6771 -9869,4463,2013-11-08 14:10:40 -0800,2226,6773 -9870,4227,2013-11-09 07:49:28 -0800,2226,6773 -9871,4067,2013-11-08 22:46:00 -0800,2226,6773 -9872,8679,2013-11-10 13:13:11 -0800,2227,6775 -9873,2327,2013-11-12 19:13:23 -0800,2227,6775 -9874,7540,2013-11-10 04:03:46 -0800,2228,6781 -9875,7678,2013-11-12 23:16:33 -0800,2228,6777 -9876,8900,2013-11-07 21:36:31 -0800,2228,6780 -9877,1275,2013-11-11 18:53:26 -0800,2228,6780 -9878,8720,2013-11-10 20:12:06 -0800,2228,6777 -9879,7155,2013-11-09 09:44:54 -0800,2228,6781 -9880,2360,2013-11-07 15:58:21 -0800,2228,6777 -9881,6622,2013-11-10 03:24:37 -0800,2228,6777 -9882,1535,2013-11-09 06:09:08 -0800,2228,6780 -9883,6995,2013-11-10 00:22:46 -0800,2229,6783 -9884,7372,2013-11-09 16:46:38 -0800,2229,6783 -9885,8864,2013-11-09 19:21:22 -0800,2229,6782 -9886,9385,2013-11-09 15:01:45 -0800,2229,6782 -9887,8289,2013-11-11 08:21:59 -0800,2229,6783 -9888,3010,2013-11-10 11:55:28 -0800,2229,6782 -9889,661,2013-11-10 22:55:40 -0800,2229,6782 -9890,5715,2013-11-07 14:59:17 -0800,2229,6783 -9891,6114,2013-11-11 04:39:23 -0800,2229,6783 -9892,7109,2013-11-10 01:10:36 -0800,2230,6784 -9893,1811,2013-11-06 19:34:43 -0800,2230,6784 -9894,6213,2013-11-06 20:33:29 -0800,2230,6784 -9895,2653,2013-11-06 21:56:53 -0800,2230,6784 -9896,6120,2013-11-06 20:18:13 -0800,2231,6785 -9897,1434,2013-11-11 01:32:24 -0800,2231,6785 -9898,4726,2013-11-12 04:39:31 -0800,2231,6785 -9899,7698,2013-11-09 11:19:35 -0800,2231,6785 -9900,1347,2013-11-10 15:32:59 -0800,2231,6785 -9901,8097,2013-11-06 22:23:32 -0800,2231,6785 -9902,2468,2013-11-08 14:47:44 -0800,2232,6788 -9903,3038,2013-11-09 12:57:18 -0800,2232,6788 -9904,6951,2013-11-06 09:48:30 -0800,2232,6788 -9905,243,2013-11-09 09:46:51 -0800,2233,6790 -9906,4990,2013-11-06 17:26:13 -0800,2233,6790 -9907,778,2013-11-10 23:45:00 -0800,2233,6789 -9908,1461,2013-11-13 01:15:54 -0800,2234,6792 -9909,6230,2013-11-09 10:03:42 -0800,2234,6791 -9910,28,2013-11-09 00:40:35 -0800,2234,6792 -9911,184,2013-11-11 01:07:24 -0800,2235,6793 -9912,7259,2013-11-06 20:15:24 -0800,2235,6793 -9913,192,2013-11-07 06:14:58 -0800,2235,6795 -9914,8336,2013-11-08 14:24:05 -0800,2235,6794 -9915,4842,2013-11-11 09:36:26 -0800,2235,6795 -9916,225,2013-11-08 21:59:22 -0800,2235,6794 -9917,8375,2013-11-11 19:02:24 -0800,2236,6796 -9918,8889,2013-11-10 22:38:54 -0800,2236,6796 -9919,8083,2013-11-08 03:07:24 -0800,2236,6796 -9920,4320,2013-11-10 04:55:39 -0800,2237,6799 -9921,8640,2013-11-08 10:06:56 -0800,2237,6799 -9922,9288,2013-11-10 16:26:21 -0800,2237,6799 -9923,1730,2013-11-07 11:11:16 -0800,2237,6798 -9924,6150,2013-11-08 15:42:58 -0800,2237,6797 -9925,8320,2013-11-11 05:05:33 -0800,2237,6798 -9926,9879,2013-11-12 17:54:26 -0800,2238,6800 -9927,8821,2013-11-10 15:44:53 -0800,2238,6801 -9928,3970,2013-11-08 16:58:53 -0800,2239,6803 -9929,8435,2013-11-10 19:26:53 -0800,2239,6803 -9930,5920,2013-11-11 10:50:06 -0800,2239,6805 -9931,9579,2013-11-07 04:06:51 -0800,2239,6805 -9932,7845,2013-11-07 01:10:44 -0800,2239,6803 -9933,2220,2013-11-07 08:47:17 -0800,2239,6802 -9934,62,2013-11-10 21:17:13 -0800,2239,6802 -9935,9080,2013-11-10 09:02:33 -0800,2240,6807 -9936,1524,2013-11-09 02:35:06 -0800,2240,6807 -9937,4457,2013-11-07 07:51:04 -0800,2240,6806 -9938,9463,2013-11-09 11:32:34 -0800,2240,6808 -9939,9158,2013-11-08 17:33:29 -0800,2241,6809 -9940,5174,2013-11-07 19:32:15 -0800,2242,6813 -9941,1314,2013-11-12 04:00:21 -0800,2242,6812 -9942,8717,2013-11-07 01:27:24 -0800,2242,6813 -9943,4428,2013-11-09 18:45:14 -0800,2242,6812 -9944,5840,2013-11-08 06:04:35 -0800,2242,6812 -9945,1837,2013-11-09 20:46:53 -0800,2242,6811 -9946,8835,2013-11-08 13:16:07 -0800,2242,6811 -9947,4215,2013-11-11 20:59:58 -0800,2242,6812 -9948,6462,2013-11-10 07:27:20 -0800,2242,6811 -9949,2175,2013-11-11 03:54:27 -0800,2243,6815 -9950,2426,2013-11-08 17:38:22 -0800,2243,6815 -9951,7889,2013-11-11 05:42:08 -0800,2243,6815 -9952,4911,2013-11-09 16:20:47 -0800,2243,6815 -9953,7650,2013-11-10 06:44:54 -0800,2243,6815 -9954,5835,2013-11-08 13:46:59 -0800,2244,6817 -9955,37,2013-11-07 19:44:06 -0800,2244,6817 -9956,9596,2013-11-06 08:54:12 -0800,2244,6816 -9957,1092,2013-11-08 20:49:20 -0800,2244,6816 -9958,9839,2013-11-07 14:53:18 -0800,2244,6816 -9959,4273,2013-11-12 01:33:26 -0800,2245,6818 -9960,65,2013-11-08 15:05:18 -0800,2246,6824 -9961,4768,2013-11-09 18:24:16 -0800,2246,6823 -9962,5586,2013-11-08 03:35:27 -0800,2246,6823 -9963,5879,2013-11-10 00:54:07 -0800,2247,6825 -9964,6530,2013-11-10 15:12:17 -0800,2247,6825 -9965,3050,2013-11-09 17:18:10 -0800,2247,6826 -9966,4120,2013-11-12 11:45:08 -0800,2247,6827 -9967,4575,2013-11-12 15:44:34 -0800,2247,6826 -9968,2399,2013-11-09 05:32:23 -0800,2247,6825 -9969,5781,2013-11-11 03:21:42 -0800,2247,6827 -9970,4995,2013-11-10 12:26:27 -0800,2247,6825 -9971,777,2013-11-11 07:08:09 -0800,2247,6826 -9972,2388,2013-11-09 13:44:28 -0800,2248,6829 -9973,6320,2013-11-08 23:00:57 -0800,2248,6828 -9974,2840,2013-11-08 16:22:06 -0800,2248,6829 -9975,5048,2013-11-09 11:53:55 -0800,2248,6829 -9976,1920,2013-11-06 18:45:38 -0800,2249,6831 -9977,1877,2013-11-08 13:34:23 -0800,2249,6832 -9978,2579,2013-11-06 17:27:46 -0800,2249,6831 -9979,5031,2013-11-09 09:06:21 -0800,2249,6832 -9980,7359,2013-11-11 08:32:31 -0800,2250,6835 -9981,6944,2013-11-11 17:56:47 -0800,2251,6840 -9982,3088,2013-11-09 19:28:47 -0800,2251,6844 -9983,3215,2013-11-09 07:50:33 -0800,2251,6840 -9984,7612,2013-11-13 03:40:30 -0800,2251,6841 -9985,1930,2013-11-13 07:19:48 -0800,2251,6844 -9986,3116,2013-11-06 13:48:15 -0800,2252,6845 -9987,8794,2013-11-11 10:44:00 -0800,2252,6846 -9988,4696,2013-11-12 18:30:50 -0800,2252,6846 -9989,7352,2013-11-11 14:09:10 -0800,2252,6846 -9990,610,2013-11-11 09:42:33 -0800,2252,6845 -9991,1862,2013-11-08 04:48:28 -0800,2252,6846 -9992,7267,2013-11-06 23:30:08 -0800,2252,6845 -9993,6884,2013-11-09 15:49:57 -0800,2252,6846 -9994,894,2013-11-12 10:05:52 -0800,2253,6847 -9995,4966,2013-11-08 02:57:37 -0800,2253,6847 -9996,3497,2013-11-08 22:46:25 -0800,2253,6847 -9997,5066,2013-11-11 17:23:31 -0800,2253,6847 -9998,7123,2013-11-08 14:10:49 -0800,2253,6847 -9999,7731,2013-11-13 04:10:29 -0800,2253,6847 -10000,4710,2013-11-12 13:18:32 -0800,2253,6847 -10001,9595,2013-11-07 21:27:43 -0800,2253,6847 -10002,7693,2013-11-12 17:19:30 -0800,2254,6848 -10003,3374,2013-11-10 05:41:09 -0800,2254,6850 -10004,3494,2013-11-12 23:34:19 -0800,2254,6849 -10005,4966,2013-11-12 23:07:06 -0800,2254,6850 -10006,9524,2013-11-12 12:45:03 -0800,2254,6851 -10007,6583,2013-11-07 17:55:14 -0800,2254,6851 -10008,9556,2013-11-11 04:47:31 -0800,2255,6853 -10009,2357,2013-11-07 02:15:53 -0800,2255,6853 -10010,5825,2013-11-07 08:20:41 -0800,2255,6853 -10011,8433,2013-11-11 07:36:08 -0800,2255,6853 -10012,5559,2013-11-08 16:57:38 -0800,2255,6853 -10013,2259,2013-11-09 06:28:02 -0800,2255,6853 -10014,8559,2013-11-08 02:00:42 -0800,2256,6854 -10015,865,2013-11-12 19:38:49 -0800,2256,6854 -10016,1819,2013-11-12 07:13:04 -0800,2256,6854 -10017,5890,2013-11-06 13:10:11 -0800,2256,6854 -10018,3695,2013-11-08 06:21:46 -0800,2256,6854 -10019,7648,2013-11-07 03:02:16 -0800,2256,6854 -10020,7336,2013-11-11 05:53:24 -0800,2256,6854 -10021,4221,2013-11-06 21:13:28 -0800,2256,6854 -10022,9372,2013-11-09 01:28:40 -0800,2257,6855 -10023,7640,2013-11-08 23:24:55 -0800,2257,6855 -10024,2423,2013-11-13 05:59:38 -0800,2257,6855 -10025,9586,2013-11-10 12:15:08 -0800,2257,6855 -10026,2010,2013-11-10 15:40:01 -0800,2257,6855 -10027,5563,2013-11-10 01:57:12 -0800,2257,6855 -10028,1391,2013-11-07 19:05:11 -0800,2257,6855 -10029,2194,2013-11-09 21:58:14 -0800,2259,6861 -10030,7519,2013-11-06 23:32:10 -0800,2259,6863 -10031,1873,2013-11-09 16:07:27 -0800,2259,6863 -10032,3078,2013-11-09 09:34:50 -0800,2259,6861 -10033,3527,2013-11-12 07:35:30 -0800,2259,6862 -10034,6234,2013-11-07 17:31:33 -0800,2259,6860 -10035,7588,2013-11-07 15:40:40 -0800,2259,6860 -10036,5260,2013-11-10 06:44:06 -0800,2259,6861 -10037,4374,2013-11-10 20:44:28 -0800,2260,6866 -10038,9260,2013-11-12 05:13:47 -0800,2260,6866 -10039,4410,2013-11-11 02:05:58 -0800,2260,6865 -10040,6900,2013-11-10 19:05:52 -0800,2261,6869 -10041,5815,2013-11-12 10:46:45 -0800,2261,6869 -10042,3779,2013-11-11 09:14:48 -0800,2261,6868 -10043,6130,2013-11-10 01:24:31 -0800,2261,6868 -10044,917,2013-11-08 12:08:10 -0800,2261,6870 -10045,5789,2013-11-07 16:00:42 -0800,2262,6874 -10046,1238,2013-11-08 15:31:41 -0800,2262,6872 -10047,6099,2013-11-10 04:29:42 -0800,2262,6873 -10048,2859,2013-11-11 19:57:01 -0800,2262,6873 -10049,4115,2013-11-11 22:55:09 -0800,2262,6872 -10050,6343,2013-11-06 16:15:50 -0800,2263,6875 -10051,6873,2013-11-08 09:19:02 -0800,2263,6877 -10052,5787,2013-11-11 04:03:00 -0800,2263,6879 -10053,9075,2013-11-11 05:36:46 -0800,2263,6877 -10054,299,2013-11-06 09:14:20 -0800,2263,6875 -10055,7719,2013-11-11 22:10:34 -0800,2263,6878 -10056,5983,2013-11-06 23:30:36 -0800,2263,6875 -10057,8428,2013-11-07 01:41:41 -0800,2263,6876 -10058,2920,2013-11-12 08:07:28 -0800,2263,6875 -10059,819,2013-11-10 10:15:38 -0800,2264,6880 -10060,6310,2013-11-09 06:55:05 -0800,2264,6883 -10061,7962,2013-11-12 11:09:02 -0800,2265,6885 -10062,697,2013-11-12 06:44:33 -0800,2265,6885 -10063,5690,2013-11-10 12:10:45 -0800,2265,6884 -10064,1775,2013-11-09 00:52:59 -0800,2265,6884 -10065,3041,2013-11-08 11:04:32 -0800,2265,6885 -10066,1347,2013-11-12 20:37:38 -0800,2265,6885 -10067,8522,2013-11-12 12:54:43 -0800,2265,6884 -10068,9556,2013-11-07 01:53:34 -0800,2265,6884 -10069,223,2013-11-12 20:36:21 -0800,2268,6892 -10070,8343,2013-11-12 00:21:39 -0800,2268,6893 -10071,8995,2013-11-13 06:12:34 -0800,2268,6891 -10072,5460,2013-11-09 19:18:08 -0800,2268,6893 -10073,252,2013-11-07 22:13:36 -0800,2269,6895 -10074,621,2013-11-07 12:51:24 -0800,2269,6894 -10075,4324,2013-11-09 19:34:57 -0800,2269,6894 -10076,1220,2013-11-09 01:17:36 -0800,2270,6896 -10077,3260,2013-11-08 05:46:52 -0800,2270,6896 -10078,8249,2013-11-09 23:01:40 -0800,2270,6896 -10079,6886,2013-11-12 10:55:51 -0800,2270,6896 -10080,7259,2013-11-12 10:39:12 -0800,2270,6896 -10081,4463,2013-11-10 09:59:56 -0800,2270,6896 -10082,9446,2013-11-10 00:26:52 -0800,2270,6896 -10083,8737,2013-11-08 09:29:02 -0800,2271,6897 -10084,3057,2013-11-11 09:15:03 -0800,2271,6899 -10085,8064,2013-11-10 02:34:29 -0800,2271,6898 -10086,7811,2013-11-13 08:16:52 -0800,2271,6897 -10087,1313,2013-11-07 23:33:03 -0800,2271,6898 -10088,6453,2013-11-11 19:47:50 -0800,2271,6897 -10089,5985,2013-11-12 07:04:08 -0800,2271,6899 -10090,9536,2013-11-09 13:16:57 -0800,2271,6897 -10091,8387,2013-11-09 09:49:21 -0800,2271,6899 -10092,3833,2013-11-09 20:26:22 -0800,2272,6900 -10093,631,2013-11-11 15:50:53 -0800,2272,6903 -10094,3770,2013-11-09 02:54:15 -0800,2272,6902 -10095,3584,2013-11-12 17:53:53 -0800,2272,6901 -10096,1872,2013-11-09 22:59:16 -0800,2272,6900 -10097,3424,2013-11-11 00:22:26 -0800,2273,6904 -10098,4341,2013-11-12 09:26:45 -0800,2273,6904 -10099,3924,2013-11-13 04:09:32 -0800,2273,6907 -10100,1670,2013-11-08 00:41:45 -0800,2273,6905 -10101,9062,2013-11-09 09:00:17 -0800,2273,6907 -10102,7715,2013-11-06 13:53:41 -0800,2273,6906 -10103,5540,2013-11-10 12:52:12 -0800,2273,6904 -10104,316,2013-11-10 13:45:44 -0800,2273,6908 -10105,3478,2013-11-12 00:49:34 -0800,2273,6905 -10106,1679,2013-11-11 10:23:29 -0800,2274,6909 -10107,1680,2013-11-07 21:09:15 -0800,2274,6909 -10108,6859,2013-11-12 00:49:27 -0800,2274,6909 -10109,5585,2013-11-12 23:32:23 -0800,2274,6909 -10110,382,2013-11-07 21:09:24 -0800,2275,6910 -10111,2774,2013-11-10 12:30:41 -0800,2275,6910 -10112,7084,2013-11-08 17:18:26 -0800,2275,6912 -10113,4730,2013-11-12 06:30:10 -0800,2275,6912 -10114,9599,2013-11-06 17:08:03 -0800,2276,6913 -10115,4345,2013-11-11 01:08:43 -0800,2276,6913 -10116,8153,2013-11-10 19:38:50 -0800,2276,6913 -10117,791,2013-11-09 19:50:56 -0800,2276,6913 -10118,2767,2013-11-11 07:15:59 -0800,2276,6913 -10119,1676,2013-11-11 08:36:12 -0800,2278,6919 -10120,6744,2013-11-10 22:01:52 -0800,2278,6922 -10121,4631,2013-11-12 09:04:57 -0800,2278,6922 -10122,6063,2013-11-06 20:39:20 -0800,2279,6924 -10123,2127,2013-11-07 16:52:04 -0800,2280,6928 -10124,336,2013-11-11 18:13:21 -0800,2280,6929 -10125,5423,2013-11-12 21:50:51 -0800,2280,6929 -10126,1675,2013-11-08 07:40:16 -0800,2280,6928 -10127,7523,2013-11-12 06:21:07 -0800,2280,6930 -10128,5378,2013-11-10 00:09:27 -0800,2281,6931 -10129,1283,2013-11-07 10:44:36 -0800,2281,6931 -10130,7959,2013-11-12 08:54:58 -0800,2282,6936 -10131,9755,2013-11-12 05:10:14 -0800,2282,6936 -10132,454,2013-11-11 13:23:05 -0800,2282,6933 -10133,2694,2013-11-08 06:28:38 -0800,2282,6936 -10134,2443,2013-11-08 17:39:19 -0800,2282,6933 -10135,211,2013-11-06 17:51:06 -0800,2283,6937 -10136,5020,2013-11-08 17:52:50 -0800,2283,6937 -10137,8317,2013-11-11 01:30:04 -0800,2284,6938 -10138,7417,2013-11-06 21:02:59 -0800,2284,6939 -10139,1689,2013-11-07 18:23:17 -0800,2284,6939 -10140,3920,2013-11-10 22:28:09 -0800,2285,6940 -10141,4916,2013-11-09 21:45:04 -0800,2285,6941 -10142,2480,2013-11-13 02:28:39 -0800,2285,6942 -10143,8048,2013-11-10 21:11:59 -0800,2285,6942 -10144,4090,2013-11-08 18:40:13 -0800,2286,6943 -10145,8597,2013-11-09 09:22:52 -0800,2286,6944 -10146,752,2013-11-12 03:41:43 -0800,2286,6944 -10147,3938,2013-11-08 14:13:35 -0800,2286,6943 -10148,1518,2013-11-09 08:22:51 -0800,2287,6949 -10149,6024,2013-11-11 13:52:56 -0800,2287,6947 -10150,1869,2013-11-07 22:46:34 -0800,2287,6949 -10151,8192,2013-11-12 12:31:53 -0800,2287,6949 -10152,3854,2013-11-08 06:22:54 -0800,2287,6947 -10153,8617,2013-11-08 13:36:20 -0800,2287,6947 -10154,4144,2013-11-09 06:19:09 -0800,2287,6949 -10155,3022,2013-11-08 23:53:41 -0800,2287,6949 -10156,5427,2013-11-07 03:49:05 -0800,2288,6952 -10157,660,2013-11-08 12:08:56 -0800,2288,6951 -10158,8643,2013-11-11 11:16:22 -0800,2288,6952 -10159,4722,2013-11-12 19:40:36 -0800,2288,6951 -10160,1480,2013-11-06 18:09:04 -0800,2290,6959 -10161,2556,2013-11-12 10:11:43 -0800,2290,6957 -10162,9323,2013-11-07 23:30:57 -0800,2290,6959 -10163,2164,2013-11-07 06:23:07 -0800,2290,6958 -10164,2286,2013-11-11 03:08:17 -0800,2290,6959 -10165,1193,2013-11-10 11:52:48 -0800,2290,6957 -10166,61,2013-11-10 01:20:21 -0800,2290,6957 -10167,1672,2013-11-08 05:29:04 -0800,2290,6959 -10168,2048,2013-11-12 08:19:36 -0800,2291,6962 -10169,7193,2013-11-13 01:33:28 -0800,2291,6961 -10170,2918,2013-11-08 13:25:54 -0800,2291,6960 -10171,7713,2013-11-12 01:40:17 -0800,2291,6961 -10172,7445,2013-11-08 19:52:12 -0800,2291,6962 -10173,2898,2013-11-08 08:27:18 -0800,2292,6963 -10174,5954,2013-11-11 13:06:06 -0800,2292,6965 -10175,1744,2013-11-08 12:31:49 -0800,2292,6966 -10176,5380,2013-11-08 16:48:45 -0800,2292,6963 -10177,8398,2013-11-12 07:08:46 -0800,2292,6964 -10178,5928,2013-11-10 11:41:43 -0800,2292,6964 -10179,3141,2013-11-11 01:02:35 -0800,2293,6967 -10180,7220,2013-11-12 14:53:28 -0800,2293,6967 -10181,6998,2013-11-06 09:02:23 -0800,2293,6967 -10182,5850,2013-11-11 18:53:45 -0800,2293,6967 -10183,9130,2013-11-11 22:02:36 -0800,2293,6967 -10184,5337,2013-11-06 19:38:17 -0800,2294,6968 -10185,7836,2013-11-10 14:39:20 -0800,2294,6969 -10186,117,2013-11-12 06:17:42 -0800,2294,6969 -10187,2089,2013-11-08 23:11:48 -0800,2295,6971 -10188,8387,2013-11-06 11:54:36 -0800,2295,6970 -10189,5969,2013-11-12 09:50:22 -0800,2295,6971 -10190,4856,2013-11-10 00:11:16 -0800,2295,6971 -10191,8934,2013-11-09 15:36:25 -0800,2295,6971 -10192,187,2013-11-10 03:27:32 -0800,2295,6971 -10193,1458,2013-11-11 22:11:25 -0800,2295,6971 -10194,8960,2013-11-10 17:56:19 -0800,2296,6972 -10195,5360,2013-11-06 08:58:03 -0800,2296,6974 -10196,3710,2013-11-10 18:35:56 -0800,2296,6973 -10197,2217,2013-11-12 04:22:49 -0800,2296,6973 -10198,8687,2013-11-08 11:45:56 -0800,2296,6972 -10199,5160,2013-11-10 03:40:26 -0800,2296,6973 -10200,1091,2013-11-07 22:18:13 -0800,2296,6973 -10201,8765,2013-11-06 11:45:34 -0800,2296,6974 -10202,5375,2013-11-11 05:05:21 -0800,2296,6973 -10203,3814,2013-11-12 09:31:34 -0800,2297,6976 -10204,4957,2013-11-11 01:09:48 -0800,2298,6979 -10205,4290,2013-11-12 01:17:07 -0800,2298,6977 -10206,4111,2013-11-11 15:11:41 -0800,2298,6979 -10207,3960,2013-11-12 13:19:01 -0800,2298,6980 -10208,2320,2013-11-08 07:26:40 -0800,2298,6977 -10209,3429,2013-11-11 09:17:18 -0800,2298,6981 -10210,3786,2013-11-12 02:23:32 -0800,2299,6982 -10211,6848,2013-11-09 04:53:23 -0800,2299,6982 -10212,8873,2013-11-07 15:41:45 -0800,2299,6982 -10213,3161,2013-11-06 13:44:10 -0800,2299,6982 -10214,822,2013-11-09 10:19:55 -0800,2299,6982 -10215,7140,2013-11-09 14:33:09 -0800,2299,6982 -10216,8179,2013-11-11 10:24:30 -0800,2300,6986 -10217,9895,2013-11-09 04:14:04 -0800,2300,6986 -10218,948,2013-11-11 14:00:57 -0800,2300,6984 -10219,513,2013-11-11 04:49:13 -0800,2301,6990 -10220,2232,2013-11-13 01:20:37 -0800,2302,6992 -10221,421,2013-11-06 20:41:36 -0800,2302,6993 -10222,2011,2013-11-12 06:39:09 -0800,2303,6997 -10223,1383,2013-11-07 21:57:05 -0800,2303,6996 -10224,2089,2013-11-07 09:10:13 -0800,2303,6997 -10225,2545,2013-11-07 15:06:07 -0800,2304,7000 -10226,9558,2013-11-08 04:06:12 -0800,2306,7004 -10227,8095,2013-11-11 03:54:13 -0800,2306,7004 -10228,5845,2013-11-08 12:57:23 -0800,2306,7004 -10229,3220,2013-11-11 21:36:05 -0800,2306,7004 -10230,8752,2013-11-13 00:14:01 -0800,2306,7004 -10231,6165,2013-11-07 11:57:10 -0800,2306,7004 -10232,8540,2013-11-06 20:23:17 -0800,2306,7004 -10233,6650,2013-11-09 15:32:23 -0800,2307,7006 -10234,9295,2013-11-08 11:12:19 -0800,2307,7006 -10235,1398,2013-11-08 19:12:53 -0800,2308,7008 -10236,5475,2013-11-11 05:53:57 -0800,2308,7011 -10237,8648,2013-11-13 08:11:24 -0800,2308,7012 -10238,1619,2013-11-08 06:15:48 -0800,2308,7012 -10239,9780,2013-11-09 14:06:31 -0800,2308,7012 -10240,6620,2013-11-09 00:17:53 -0800,2308,7009 -10241,8070,2013-11-07 05:00:34 -0800,2309,7013 -10242,8922,2013-11-09 03:47:34 -0800,2309,7015 -10243,1579,2013-11-10 06:36:15 -0800,2309,7015 -10244,7970,2013-11-08 07:52:45 -0800,2309,7013 -10245,2134,2013-11-07 07:47:10 -0800,2310,7017 -10246,146,2013-11-07 01:43:05 -0800,2311,7022 -10247,328,2013-11-12 10:23:49 -0800,2311,7023 -10248,8153,2013-11-13 05:15:19 -0800,2311,7022 -10249,7839,2013-11-11 16:49:00 -0800,2311,7023 -10250,6877,2013-11-12 10:30:29 -0800,2311,7023 -10251,6225,2013-11-11 21:31:51 -0800,2311,7022 -10252,8311,2013-11-08 19:04:03 -0800,2311,7023 -10253,1130,2013-11-12 16:09:23 -0800,2311,7023 -10254,3938,2013-11-10 20:22:29 -0800,2311,7023 -10255,5055,2013-11-10 10:23:27 -0800,2312,7027 -10256,4256,2013-11-08 09:30:15 -0800,2312,7024 -10257,6026,2013-11-11 23:41:25 -0800,2312,7027 -10258,9633,2013-11-09 15:05:02 -0800,2312,7027 -10259,5121,2013-11-11 03:12:01 -0800,2312,7025 -10260,2634,2013-11-12 18:13:30 -0800,2312,7024 -10261,848,2013-11-08 22:59:05 -0800,2312,7027 -10262,8198,2013-11-06 15:34:34 -0800,2313,7028 -10263,876,2013-11-09 02:52:24 -0800,2313,7028 -10264,7859,2013-11-09 19:52:33 -0800,2313,7028 -10265,7720,2013-11-09 07:40:13 -0800,2314,7032 -10266,4197,2013-11-11 16:45:52 -0800,2314,7032 -10267,8591,2013-11-11 22:10:46 -0800,2314,7032 -10268,859,2013-11-07 00:23:41 -0800,2314,7032 -10269,517,2013-11-10 08:32:08 -0800,2315,7035 -10270,7681,2013-11-08 22:53:35 -0800,2315,7033 -10271,8470,2013-11-09 18:52:06 -0800,2316,7038 -10272,1654,2013-11-13 04:50:25 -0800,2317,7040 -10273,4731,2013-11-10 08:51:15 -0800,2319,7046 -10274,539,2013-11-07 11:23:42 -0800,2319,7048 -10275,8883,2013-11-08 15:13:19 -0800,2319,7049 -10276,3661,2013-11-10 06:39:33 -0800,2319,7049 -10277,4342,2013-11-10 11:39:09 -0800,2319,7048 -10278,4967,2013-11-11 15:33:37 -0800,2319,7048 -10279,5198,2013-11-09 23:10:30 -0800,2319,7049 -10280,5358,2013-11-08 15:26:19 -0800,2320,7050 -10281,5871,2013-11-07 03:39:30 -0800,2320,7050 -10282,7387,2013-11-11 02:18:22 -0800,2320,7051 -10283,6812,2013-11-12 07:17:20 -0800,2320,7053 -10284,4070,2013-11-12 20:56:43 -0800,2320,7053 -10285,7859,2013-11-12 23:49:52 -0800,2320,7053 -10286,9113,2013-11-08 20:14:56 -0800,2320,7053 -10287,7464,2013-11-12 05:00:50 -0800,2320,7050 -10288,7987,2013-11-13 05:44:36 -0800,2320,7052 -10289,8097,2013-11-12 23:15:09 -0800,2322,7061 -10290,8800,2013-11-07 18:40:27 -0800,2322,7060 -10291,5686,2013-11-08 10:28:38 -0800,2322,7060 -10292,815,2013-11-11 14:05:08 -0800,2322,7062 -10293,1743,2013-11-08 03:29:00 -0800,2322,7062 -10294,5839,2013-11-07 13:50:18 -0800,2322,7059 -10295,3790,2013-11-09 02:49:00 -0800,2322,7061 -10296,3026,2013-11-09 11:46:21 -0800,2322,7059 -10297,2863,2013-11-07 13:34:08 -0800,2322,7062 -10298,5748,2013-11-08 17:20:58 -0800,2323,7064 -10299,8657,2013-11-09 05:07:12 -0800,2323,7067 -10300,7440,2013-11-12 11:13:54 -0800,2323,7066 -10301,9043,2013-11-11 03:20:32 -0800,2323,7067 -10302,4452,2013-11-08 07:37:52 -0800,2323,7063 -10303,6947,2013-11-09 01:27:00 -0800,2323,7064 -10304,1194,2013-11-06 10:04:34 -0800,2323,7067 -10305,1637,2013-11-12 22:48:32 -0800,2323,7063 -10306,2789,2013-11-10 03:32:30 -0800,2324,7070 -10307,7765,2013-11-09 12:51:19 -0800,2324,7068 -10308,5059,2013-11-09 11:43:15 -0800,2324,7071 -10309,940,2013-11-07 18:03:32 -0800,2324,7069 -10310,2080,2013-11-09 07:54:27 -0800,2325,7072 -10311,4523,2013-11-07 06:01:43 -0800,2326,7073 -10312,964,2013-11-11 17:52:38 -0800,2326,7075 -10313,6986,2013-11-11 23:21:26 -0800,2326,7074 -10314,211,2013-11-09 21:10:31 -0800,2326,7073 -10315,2970,2013-11-08 17:26:08 -0800,2326,7073 -10316,9362,2013-11-11 20:14:44 -0800,2326,7074 -10317,2368,2013-11-10 22:08:20 -0800,2326,7075 -10318,568,2013-11-10 21:45:24 -0800,2326,7075 -10319,776,2013-11-08 15:12:54 -0800,2327,7078 -10320,3322,2013-11-09 18:30:26 -0800,2328,7079 -10321,8423,2013-11-08 13:33:45 -0800,2329,7081 -10322,6559,2013-11-07 05:42:21 -0800,2329,7082 -10323,3339,2013-11-08 02:39:06 -0800,2329,7081 -10324,5964,2013-11-09 23:45:32 -0800,2329,7082 -10325,5016,2013-11-08 15:38:13 -0800,2329,7082 -10326,7198,2013-11-11 19:05:57 -0800,2329,7082 -10327,8526,2013-11-06 20:26:07 -0800,2330,7087 -10328,1934,2013-11-07 19:54:19 -0800,2331,7089 -10329,2479,2013-11-11 13:22:00 -0800,2331,7089 -10330,5093,2013-11-09 19:42:51 -0800,2331,7089 -10331,5551,2013-11-08 06:29:31 -0800,2331,7089 -10332,3829,2013-11-10 19:47:20 -0800,2332,7094 -10333,9690,2013-11-12 21:21:54 -0800,2332,7095 -10334,3829,2013-11-06 21:44:00 -0800,2332,7094 -10335,4900,2013-11-12 04:53:48 -0800,2332,7094 -10336,4322,2013-11-06 23:27:11 -0800,2333,7098 -10337,5787,2013-11-07 00:41:00 -0800,2333,7100 -10338,2773,2013-11-12 10:47:06 -0800,2333,7096 -10339,329,2013-11-11 22:17:08 -0800,2333,7097 -10340,9136,2013-11-07 00:08:04 -0800,2333,7097 -10341,1839,2013-11-09 06:08:27 -0800,2333,7100 -10342,8169,2013-11-06 12:35:38 -0800,2334,7102 -10343,7150,2013-11-13 08:00:31 -0800,2335,7105 -10344,2152,2013-11-06 14:11:46 -0800,2335,7106 -10345,7559,2013-11-07 07:30:45 -0800,2335,7108 -10346,9716,2013-11-11 03:41:01 -0800,2335,7106 -10347,6273,2013-11-13 02:27:32 -0800,2335,7109 -10348,1782,2013-11-10 05:26:15 -0800,2335,7106 -10349,7353,2013-11-07 18:28:35 -0800,2335,7106 -10350,2289,2013-11-06 22:57:29 -0800,2336,7111 -10351,843,2013-11-10 06:35:05 -0800,2336,7110 -10352,8167,2013-11-08 01:49:17 -0800,2336,7111 -10353,3632,2013-11-10 00:21:25 -0800,2336,7111 -10354,8345,2013-11-09 05:16:55 -0800,2337,7112 -10355,12,2013-11-06 20:09:27 -0800,2337,7112 -10356,4155,2013-11-09 08:17:42 -0800,2337,7113 -10357,7948,2013-11-10 00:54:47 -0800,2337,7113 -10358,2646,2013-11-08 09:00:08 -0800,2337,7112 -10359,739,2013-11-13 05:23:53 -0800,2337,7113 -10360,3545,2013-11-07 09:35:22 -0800,2337,7113 -10361,5954,2013-11-07 11:22:40 -0800,2338,7116 -10362,4262,2013-11-12 07:44:04 -0800,2338,7115 -10363,9622,2013-11-08 10:41:08 -0800,2338,7115 -10364,6898,2013-11-07 01:43:37 -0800,2338,7114 -10365,4816,2013-11-12 02:56:56 -0800,2339,7117 -10366,5730,2013-11-10 18:22:28 -0800,2339,7117 -10367,6926,2013-11-07 21:12:43 -0800,2339,7117 -10368,6034,2013-11-09 17:14:36 -0800,2339,7117 -10369,8946,2013-11-08 16:28:44 -0800,2339,7117 -10370,8068,2013-11-08 15:28:06 -0800,2339,7117 -10371,6938,2013-11-11 18:30:24 -0800,2339,7117 -10372,8540,2013-11-10 02:54:41 -0800,2340,7118 -10373,6533,2013-11-08 04:18:19 -0800,2340,7118 -10374,8712,2013-11-08 19:37:16 -0800,2340,7118 -10375,8846,2013-11-06 10:21:43 -0800,2340,7119 -10376,3579,2013-11-10 07:12:29 -0800,2340,7120 -10377,7378,2013-11-10 21:55:29 -0800,2340,7118 -10378,1823,2013-11-12 09:26:13 -0800,2340,7120 -10379,7218,2013-11-12 09:26:41 -0800,2342,7122 -10380,6085,2013-11-09 17:05:31 -0800,2342,7123 -10381,4293,2013-11-11 16:27:49 -0800,2342,7123 -10382,2421,2013-11-10 01:21:42 -0800,2342,7122 -10383,3633,2013-11-11 00:07:52 -0800,2342,7124 -10384,5498,2013-11-11 19:42:40 -0800,2343,7125 -10385,836,2013-11-07 13:14:06 -0800,2344,7130 -10386,1614,2013-11-06 21:28:52 -0800,2344,7130 -10387,9170,2013-11-11 02:38:45 -0800,2344,7129 -10388,2078,2013-11-10 23:19:26 -0800,2345,7136 -10389,5762,2013-11-10 20:12:26 -0800,2345,7133 -10390,1332,2013-11-06 18:42:06 -0800,2345,7133 -10391,5875,2013-11-09 08:55:44 -0800,2345,7133 -10392,3725,2013-11-08 14:31:29 -0800,2346,7137 -10393,4572,2013-11-07 11:44:20 -0800,2346,7138 -10394,8239,2013-11-07 23:42:43 -0800,2346,7138 -10395,2094,2013-11-08 07:48:16 -0800,2347,7140 -10396,9784,2013-11-12 04:03:05 -0800,2347,7140 -10397,8949,2013-11-06 23:34:36 -0800,2347,7140 -10398,3633,2013-11-12 02:50:51 -0800,2347,7140 -10399,9532,2013-11-09 02:49:32 -0800,2347,7140 -10400,4296,2013-11-12 06:30:56 -0800,2347,7140 -10401,9615,2013-11-10 17:00:13 -0800,2348,7141 -10402,2577,2013-11-13 07:23:53 -0800,2348,7144 -10403,4458,2013-11-11 06:23:31 -0800,2348,7141 -10404,4699,2013-11-06 11:59:33 -0800,2348,7142 -10405,1930,2013-11-11 03:18:51 -0800,2349,7146 -10406,2856,2013-11-12 01:58:09 -0800,2349,7145 -10407,323,2013-11-12 13:24:29 -0800,2349,7145 -10408,7141,2013-11-07 05:40:12 -0800,2349,7146 -10409,5195,2013-11-08 12:22:22 -0800,2350,7148 -10410,8360,2013-11-10 08:16:49 -0800,2350,7148 -10411,340,2013-11-09 16:01:28 -0800,2350,7149 -10412,3252,2013-11-08 19:39:29 -0800,2350,7148 -10413,7881,2013-11-09 11:30:52 -0800,2350,7147 -10414,296,2013-11-09 03:49:54 -0800,2350,7148 -10415,4179,2013-11-10 20:43:19 -0800,2350,7148 -10416,167,2013-11-13 07:14:08 -0800,2350,7148 -10417,7718,2013-11-11 09:49:53 -0800,2350,7147 -10418,5581,2013-11-11 20:11:09 -0800,2351,7156 -10419,4046,2013-11-10 15:03:38 -0800,2351,7152 -10420,3595,2013-11-13 04:12:55 -0800,2351,7155 -10421,2822,2013-11-09 14:43:36 -0800,2351,7155 -10422,5963,2013-11-08 21:58:01 -0800,2351,7152 -10423,7173,2013-11-07 00:34:38 -0800,2351,7154 -10424,7925,2013-11-06 09:44:27 -0800,2351,7152 -10425,9438,2013-11-08 14:27:47 -0800,2351,7155 -10426,2321,2013-11-12 23:19:29 -0800,2353,7160 -10427,4586,2013-11-06 21:24:40 -0800,2353,7160 -10428,8326,2013-11-09 16:51:41 -0800,2353,7160 -10429,8281,2013-11-08 19:20:30 -0800,2354,7162 -10430,7955,2013-11-08 09:51:23 -0800,2354,7161 -10431,399,2013-11-09 14:32:24 -0800,2354,7161 -10432,6335,2013-11-06 21:45:44 -0800,2354,7164 -10433,1522,2013-11-09 04:36:36 -0800,2355,7166 -10434,9639,2013-11-11 01:07:07 -0800,2355,7167 -10435,7523,2013-11-13 05:52:52 -0800,2355,7165 -10436,9497,2013-11-12 13:32:56 -0800,2355,7166 -10437,2754,2013-11-11 14:41:32 -0800,2355,7166 -10438,7934,2013-11-06 09:48:54 -0800,2355,7166 -10439,290,2013-11-07 04:45:33 -0800,2355,7165 -10440,9489,2013-11-13 05:39:26 -0800,2355,7167 -10441,9850,2013-11-11 02:23:59 -0800,2356,7168 -10442,6163,2013-11-09 18:21:25 -0800,2357,7173 -10443,5220,2013-11-10 07:04:36 -0800,2357,7175 -10444,6128,2013-11-12 21:25:51 -0800,2357,7173 -10445,1900,2013-11-09 16:02:20 -0800,2357,7172 -10446,7351,2013-11-07 15:11:37 -0800,2357,7171 -10447,9120,2013-11-08 05:33:25 -0800,2357,7173 -10448,6071,2013-11-11 02:25:36 -0800,2357,7173 -10449,4773,2013-11-07 07:10:10 -0800,2357,7172 -10450,1169,2013-11-07 11:51:35 -0800,2358,7179 -10451,4010,2013-11-13 07:36:25 -0800,2358,7178 -10452,7790,2013-11-11 04:17:34 -0800,2358,7179 -10453,5872,2013-11-10 08:56:52 -0800,2359,7184 -10454,217,2013-11-07 19:17:56 -0800,2359,7183 -10455,3354,2013-11-07 14:47:21 -0800,2359,7183 -10456,2196,2013-11-12 22:36:28 -0800,2359,7182 -10457,851,2013-11-10 18:46:53 -0800,2359,7180 -10458,5060,2013-11-07 05:44:04 -0800,2359,7181 -10459,3910,2013-11-08 19:33:11 -0800,2359,7182 -10460,2610,2013-11-12 17:58:20 -0800,2360,7185 -10461,6569,2013-11-08 02:26:37 -0800,2360,7185 -10462,3016,2013-11-06 20:33:00 -0800,2360,7185 -10463,191,2013-11-09 20:16:02 -0800,2360,7185 -10464,4463,2013-11-11 23:09:50 -0800,2360,7185 -10465,5530,2013-11-08 20:15:37 -0800,2360,7185 -10466,4629,2013-11-11 12:58:58 -0800,2360,7185 -10467,6390,2013-11-08 16:26:30 -0800,2361,7186 -10468,8090,2013-11-06 11:39:30 -0800,2361,7187 -10469,420,2013-11-10 06:20:24 -0800,2361,7187 -10470,2080,2013-11-11 17:20:37 -0800,2361,7187 -10471,6987,2013-11-09 22:15:27 -0800,2361,7186 -10472,734,2013-11-09 03:43:52 -0800,2361,7187 -10473,925,2013-11-09 22:24:07 -0800,2361,7188 -10474,1154,2013-11-12 20:12:52 -0800,2362,7191 -10475,9571,2013-11-07 08:14:17 -0800,2362,7190 -10476,6939,2013-11-08 21:31:27 -0800,2363,7196 -10477,6798,2013-11-09 23:42:36 -0800,2363,7198 -10478,4872,2013-11-11 18:42:32 -0800,2363,7198 -10479,3062,2013-11-12 06:43:01 -0800,2363,7197 -10480,5777,2013-11-12 03:09:07 -0800,2363,7195 -10481,9158,2013-11-12 02:11:50 -0800,2363,7195 -10482,4641,2013-11-07 07:53:50 -0800,2363,7197 -10483,8755,2013-11-10 16:27:51 -0800,2363,7196 -10484,4193,2013-11-11 09:45:39 -0800,2363,7196 -10485,1078,2013-11-08 16:05:37 -0800,2364,7202 -10486,5526,2013-11-07 07:51:04 -0800,2364,7203 -10487,2859,2013-11-12 15:46:57 -0800,2364,7199 -10488,4487,2013-11-08 06:23:10 -0800,2364,7202 -10489,1129,2013-11-10 00:26:23 -0800,2364,7201 -10490,5812,2013-11-12 23:06:22 -0800,2364,7199 -10491,5935,2013-11-10 13:36:35 -0800,2365,7204 -10492,4029,2013-11-10 11:55:12 -0800,2365,7204 -10493,2257,2013-11-08 21:42:40 -0800,2365,7204 -10494,9669,2013-11-12 08:03:57 -0800,2365,7204 -10495,3015,2013-11-09 04:07:21 -0800,2366,7206 -10496,6845,2013-11-09 08:19:54 -0800,2366,7208 -10497,8312,2013-11-11 01:13:42 -0800,2366,7207 -10498,6654,2013-11-10 12:14:11 -0800,2366,7206 -10499,2671,2013-11-07 16:42:11 -0800,2366,7207 -10500,4319,2013-11-08 06:48:48 -0800,2367,7209 -10501,7559,2013-11-07 02:54:23 -0800,2367,7211 -10502,4171,2013-11-09 20:56:44 -0800,2367,7211 -10503,528,2013-11-10 16:17:50 -0800,2368,7214 -10504,8383,2013-11-10 13:40:41 -0800,2368,7216 -10505,3247,2013-11-08 05:37:52 -0800,2368,7217 -10506,2016,2013-11-07 04:20:53 -0800,2368,7213 -10507,5145,2013-11-09 04:42:01 -0800,2368,7213 -10508,8221,2013-11-07 22:03:40 -0800,2368,7213 -10509,320,2013-11-12 17:43:16 -0800,2368,7217 -10510,1439,2013-11-13 07:53:11 -0800,2368,7215 -10511,1190,2013-11-12 00:17:10 -0800,2369,7218 -10512,661,2013-11-08 23:16:13 -0800,2369,7218 -10513,4880,2013-11-11 08:26:51 -0800,2369,7218 -10514,9664,2013-11-07 03:20:35 -0800,2370,7220 -10515,4465,2013-11-09 13:45:05 -0800,2370,7220 -10516,1654,2013-11-07 01:08:01 -0800,2370,7219 -10517,4018,2013-11-08 01:55:36 -0800,2370,7219 -10518,2929,2013-11-10 02:02:04 -0800,2370,7220 -10519,990,2013-11-09 18:30:46 -0800,2370,7220 -10520,7142,2013-11-13 07:15:41 -0800,2370,7219 -10521,3268,2013-11-09 19:30:45 -0800,2371,7223 -10522,4663,2013-11-06 19:34:09 -0800,2371,7221 -10523,5817,2013-11-10 18:16:13 -0800,2371,7222 -10524,9366,2013-11-10 14:55:18 -0800,2371,7222 -10525,1797,2013-11-08 09:50:27 -0800,2371,7225 -10526,5122,2013-11-06 20:10:13 -0800,2372,7226 -10527,935,2013-11-09 17:42:12 -0800,2373,7229 -10528,366,2013-11-12 09:57:18 -0800,2374,7231 -10529,5449,2013-11-10 00:57:10 -0800,2374,7233 -10530,7786,2013-11-11 18:52:25 -0800,2374,7232 -10531,7061,2013-11-11 13:57:23 -0800,2374,7234 -10532,6041,2013-11-07 13:16:53 -0800,2374,7230 -10533,7420,2013-11-12 17:22:20 -0800,2374,7233 -10534,216,2013-11-09 01:54:54 -0800,2374,7233 -10535,8188,2013-11-13 06:34:57 -0800,2375,7235 -10536,4250,2013-11-12 14:39:54 -0800,2375,7235 -10537,7097,2013-11-11 11:30:45 -0800,2375,7235 -10538,8220,2013-11-08 09:24:19 -0800,2375,7235 -10539,3631,2013-11-08 18:23:42 -0800,2375,7235 -10540,1222,2013-11-08 02:41:00 -0800,2375,7235 -10541,82,2013-11-09 13:00:19 -0800,2375,7235 -10542,4245,2013-11-13 06:38:19 -0800,2375,7235 -10543,9474,2013-11-09 02:03:40 -0800,2377,7238 -10544,1227,2013-11-12 08:07:40 -0800,2377,7238 -10545,8417,2013-11-12 14:01:38 -0800,2377,7238 -10546,6171,2013-11-10 11:08:59 -0800,2377,7238 -10547,9289,2013-11-08 00:46:12 -0800,2377,7238 -10548,3886,2013-11-08 15:23:34 -0800,2377,7238 -10549,4580,2013-11-12 20:58:56 -0800,2377,7238 -10550,1661,2013-11-08 14:08:06 -0800,2378,7240 -10551,8766,2013-11-06 13:49:49 -0800,2378,7239 -10552,6523,2013-11-12 12:38:37 -0800,2378,7239 -10553,2510,2013-11-12 23:35:01 -0800,2380,7242 -10554,4733,2013-11-09 15:12:41 -0800,2380,7243 -10555,1810,2013-11-09 03:36:58 -0800,2380,7243 -10556,6013,2013-11-07 17:26:32 -0800,2380,7242 -10557,2779,2013-11-12 22:10:53 -0800,2381,7244 -10558,1930,2013-11-12 13:02:00 -0800,2381,7245 -10559,2097,2013-11-08 16:27:56 -0800,2381,7246 -10560,1520,2013-11-09 21:26:42 -0800,2381,7244 -10561,5580,2013-11-08 21:39:15 -0800,2382,7247 -10562,6083,2013-11-11 05:07:02 -0800,2382,7247 -10563,4757,2013-11-12 12:52:28 -0800,2382,7247 -10564,8070,2013-11-12 22:37:50 -0800,2382,7247 -10565,7483,2013-11-09 04:39:35 -0800,2382,7247 -10566,9033,2013-11-08 16:56:28 -0800,2382,7247 -10567,3829,2013-11-08 00:30:51 -0800,2382,7247 -10568,3918,2013-11-13 01:08:16 -0800,2382,7247 -10569,4173,2013-11-10 12:26:37 -0800,2382,7247 -10570,8545,2013-11-10 13:29:27 -0800,2383,7248 -10571,2450,2013-11-07 16:58:21 -0800,2383,7248 -10572,9651,2013-11-11 08:44:04 -0800,2383,7249 -10573,4547,2013-11-08 01:57:23 -0800,2383,7248 -10574,5158,2013-11-08 14:51:38 -0800,2383,7248 -10575,3182,2013-11-12 20:14:13 -0800,2383,7248 -10576,2188,2013-11-11 00:36:53 -0800,2383,7248 -10577,7748,2013-11-07 23:36:01 -0800,2383,7249 -10578,8159,2013-11-12 09:37:32 -0800,2383,7249 -10579,6429,2013-11-12 05:02:35 -0800,2384,7250 -10580,9879,2013-11-08 17:50:43 -0800,2384,7250 -10581,6920,2013-11-07 01:33:51 -0800,2384,7250 -10582,6550,2013-11-10 13:02:24 -0800,2384,7250 -10583,4250,2013-11-10 17:45:05 -0800,2384,7250 -10584,5137,2013-11-09 17:22:29 -0800,2384,7250 -10585,1243,2013-11-12 02:23:50 -0800,2385,7251 -10586,2860,2013-11-13 07:57:37 -0800,2385,7251 -10587,998,2013-11-07 15:51:41 -0800,2385,7251 -10588,1071,2013-11-07 16:52:23 -0800,2385,7253 -10589,3192,2013-11-07 07:36:40 -0800,2385,7251 -10590,1432,2013-11-10 19:08:06 -0800,2385,7252 -10591,1784,2013-11-11 06:35:55 -0800,2385,7252 -10592,6150,2013-11-10 03:51:46 -0800,2385,7251 -10593,4331,2013-11-10 20:32:35 -0800,2385,7252 -10594,1159,2013-11-08 12:18:08 -0800,2386,7256 -10595,1111,2013-11-07 20:32:25 -0800,2386,7254 -10596,2630,2013-11-11 16:48:29 -0800,2387,7263 -10597,9888,2013-11-11 02:46:51 -0800,2387,7262 -10598,2417,2013-11-08 17:33:34 -0800,2389,7269 -10599,6380,2013-11-11 06:02:04 -0800,2389,7271 -10600,7295,2013-11-07 21:21:57 -0800,2389,7269 -10601,2138,2013-11-10 17:29:18 -0800,2389,7271 -10602,4057,2013-11-10 01:33:03 -0800,2389,7270 -10603,8818,2013-11-12 18:35:58 -0800,2389,7271 -10604,919,2013-11-08 08:44:48 -0800,2390,7273 -10605,2840,2013-11-11 05:12:20 -0800,2390,7274 -10606,6533,2013-11-11 17:07:51 -0800,2392,7279 -10607,3815,2013-11-11 20:23:18 -0800,2392,7279 -10608,214,2013-11-12 09:15:48 -0800,2392,7278 -10609,7380,2013-11-07 00:57:45 -0800,2392,7278 -10610,4875,2013-11-08 22:27:07 -0800,2392,7277 -10611,548,2013-11-13 07:08:44 -0800,2392,7280 -10612,4594,2013-11-13 06:31:16 -0800,2392,7278 -10613,4121,2013-11-08 15:03:11 -0800,2393,7282 -10614,7781,2013-11-11 13:02:45 -0800,2393,7282 -10615,2316,2013-11-11 03:09:43 -0800,2393,7284 -10616,7345,2013-11-09 01:59:25 -0800,2393,7284 -10617,2135,2013-11-09 01:13:39 -0800,2393,7282 -10618,2294,2013-11-08 14:58:58 -0800,2393,7283 -10619,1412,2013-11-08 09:48:16 -0800,2393,7282 -10620,6993,2013-11-13 00:15:31 -0800,2393,7283 -10621,894,2013-11-12 12:10:37 -0800,2394,7285 -10622,3894,2013-11-08 22:29:26 -0800,2394,7285 -10623,9037,2013-11-08 06:05:05 -0800,2394,7285 -10624,7995,2013-11-11 10:27:35 -0800,2394,7285 -10625,7530,2013-11-12 03:31:56 -0800,2394,7285 -10626,1037,2013-11-10 13:33:19 -0800,2395,7287 -10627,6151,2013-11-11 08:23:35 -0800,2395,7288 -10628,5173,2013-11-12 17:10:36 -0800,2395,7288 -10629,4960,2013-11-12 09:41:27 -0800,2395,7288 -10630,7673,2013-11-12 13:31:19 -0800,2396,7290 -10631,2265,2013-11-06 17:29:18 -0800,2396,7292 -10632,8383,2013-11-08 02:29:16 -0800,2396,7290 -10633,7970,2013-11-12 09:15:57 -0800,2396,7292 -10634,4879,2013-11-11 23:27:41 -0800,2396,7291 -10635,5790,2013-11-10 10:31:12 -0800,2396,7290 -10636,1237,2013-11-07 15:19:37 -0800,2396,7292 -10637,5073,2013-11-11 13:28:43 -0800,2397,7294 -10638,4634,2013-11-06 09:50:38 -0800,2398,7299 -10639,5080,2013-11-11 05:37:56 -0800,2398,7297 -10640,446,2013-11-07 16:40:21 -0800,2398,7295 -10641,7958,2013-11-12 07:10:18 -0800,2398,7299 -10642,5146,2013-11-06 16:07:22 -0800,2398,7299 -10643,1273,2013-11-12 15:17:54 -0800,2399,7300 -10644,9610,2013-11-12 01:07:56 -0800,2399,7301 -10645,545,2013-11-08 02:46:26 -0800,2399,7300 -10646,2730,2013-11-12 05:24:56 -0800,2399,7300 -10647,9487,2013-11-10 22:30:30 -0800,2399,7300 -10648,5839,2013-11-07 23:52:55 -0800,2399,7301 -10649,5940,2013-11-12 16:14:42 -0800,2400,7302 -10650,5678,2013-11-06 12:24:05 -0800,2400,7302 -10651,5487,2013-11-06 10:59:16 -0800,2400,7303 -10652,4649,2013-11-08 01:48:24 -0800,2400,7304 -10653,6927,2013-11-11 22:22:33 -0800,2401,7309 -10654,213,2013-11-11 22:24:52 -0800,2401,7308 -10655,7052,2013-11-07 22:15:13 -0800,2401,7308 -10656,5112,2013-11-11 06:08:30 -0800,2402,7311 -10657,5650,2013-11-06 10:56:57 -0800,2402,7311 -10658,1860,2013-11-10 10:41:31 -0800,2402,7311 -10659,5152,2013-11-13 01:34:57 -0800,2402,7312 -10660,4687,2013-11-09 14:40:16 -0800,2402,7311 -10661,9355,2013-11-11 04:03:49 -0800,2402,7311 -10662,5748,2013-11-12 09:09:42 -0800,2402,7311 -10663,9279,2013-11-12 07:18:07 -0800,2402,7311 -10664,9487,2013-11-12 14:14:41 -0800,2403,7314 -10665,2819,2013-11-06 10:49:06 -0800,2403,7316 -10666,1470,2013-11-12 07:29:20 -0800,2403,7314 -10667,2598,2013-11-11 09:19:46 -0800,2403,7316 -10668,5856,2013-11-10 20:10:27 -0800,2403,7313 -10669,7359,2013-11-06 13:32:57 -0800,2403,7314 -10670,6509,2013-11-10 20:25:01 -0800,2403,7316 -10671,4659,2013-11-08 20:12:43 -0800,2403,7315 -10672,4962,2013-11-13 02:46:06 -0800,2404,7317 -10673,2586,2013-11-11 15:29:30 -0800,2404,7317 -10674,6112,2013-11-09 21:31:31 -0800,2405,7321 -10675,8562,2013-11-12 17:16:56 -0800,2405,7319 -10676,2855,2013-11-06 19:58:28 -0800,2405,7320 -10677,2850,2013-11-07 11:11:58 -0800,2405,7321 -10678,5265,2013-11-11 10:48:13 -0800,2405,7320 -10679,2548,2013-11-10 11:31:40 -0800,2405,7320 -10680,3113,2013-11-12 15:55:54 -0800,2405,7319 -10681,7552,2013-11-13 03:06:44 -0800,2405,7321 -10682,5237,2013-11-12 04:21:12 -0800,2405,7320 -10683,861,2013-11-09 19:04:08 -0800,2406,7323 -10684,9740,2013-11-10 21:22:11 -0800,2406,7323 -10685,3590,2013-11-13 02:29:12 -0800,2407,7324 -10686,3924,2013-11-07 07:04:13 -0800,2407,7324 -10687,7223,2013-11-06 18:26:36 -0800,2407,7325 -10688,129,2013-11-07 00:37:46 -0800,2407,7324 -10689,1118,2013-11-12 11:42:29 -0800,2407,7324 -10690,9311,2013-11-12 18:28:36 -0800,2408,7326 -10691,1245,2013-11-13 07:28:16 -0800,2408,7326 -10692,4117,2013-11-06 13:21:33 -0800,2408,7326 -10693,6130,2013-11-11 09:27:15 -0800,2408,7326 -10694,1353,2013-11-12 23:49:05 -0800,2408,7326 -10695,6086,2013-11-09 06:09:55 -0800,2408,7326 -10696,5496,2013-11-09 16:21:44 -0800,2409,7328 -10697,8950,2013-11-08 21:15:27 -0800,2409,7327 -10698,8349,2013-11-11 23:04:06 -0800,2409,7330 -10699,8242,2013-11-09 02:27:45 -0800,2409,7330 -10700,7291,2013-11-09 20:42:03 -0800,2409,7328 -10701,8045,2013-11-10 18:22:21 -0800,2409,7328 -10702,5935,2013-11-09 02:00:23 -0800,2410,7331 -10703,6064,2013-11-10 05:36:07 -0800,2411,7333 -10704,596,2013-11-07 06:48:24 -0800,2411,7334 -10705,9333,2013-11-08 01:31:31 -0800,2411,7332 -10706,2974,2013-11-07 06:20:20 -0800,2412,7337 -10707,6831,2013-11-07 21:26:34 -0800,2412,7336 -10708,4264,2013-11-11 03:06:24 -0800,2412,7336 -10709,9761,2013-11-10 00:51:25 -0800,2412,7337 -10710,1621,2013-11-07 02:41:07 -0800,2412,7336 -10711,5456,2013-11-06 20:08:10 -0800,2412,7337 -10712,7381,2013-11-11 06:01:47 -0800,2412,7337 -10713,940,2013-11-12 12:35:38 -0800,2413,7339 -10714,7441,2013-11-10 12:57:13 -0800,2413,7338 -10715,2936,2013-11-11 05:19:24 -0800,2414,7344 -10716,2718,2013-11-08 23:48:48 -0800,2414,7344 -10717,4019,2013-11-07 13:54:59 -0800,2414,7343 -10718,2139,2013-11-12 12:14:58 -0800,2414,7344 -10719,4910,2013-11-09 22:13:36 -0800,2414,7344 -10720,3054,2013-11-13 02:08:56 -0800,2414,7343 -10721,4563,2013-11-12 10:09:00 -0800,2414,7344 -10722,1639,2013-11-06 22:27:14 -0800,2414,7343 -10723,5743,2013-11-09 23:50:22 -0800,2414,7344 -10724,3596,2013-11-07 11:28:09 -0800,2415,7349 -10725,4355,2013-11-10 06:08:08 -0800,2415,7349 -10726,6568,2013-11-12 17:12:56 -0800,2415,7346 -10727,8153,2013-11-11 01:56:03 -0800,2415,7345 -10728,2451,2013-11-12 16:24:02 -0800,2416,7350 -10729,1053,2013-11-10 09:32:48 -0800,2416,7351 -10730,9797,2013-11-07 10:38:16 -0800,2416,7352 -10731,218,2013-11-10 18:04:39 -0800,2416,7351 -10732,685,2013-11-11 23:28:10 -0800,2416,7350 -10733,1210,2013-11-12 08:45:05 -0800,2416,7354 -10734,1655,2013-11-06 20:49:37 -0800,2416,7351 -10735,5048,2013-11-12 22:59:52 -0800,2417,7357 -10736,8399,2013-11-07 07:53:51 -0800,2417,7356 -10737,6509,2013-11-06 09:33:59 -0800,2417,7356 -10738,1034,2013-11-12 07:34:03 -0800,2418,7360 -10739,5229,2013-11-08 02:50:54 -0800,2418,7359 -10740,7088,2013-11-06 16:49:29 -0800,2418,7361 -10741,9527,2013-11-08 08:15:46 -0800,2419,7363 -10742,8295,2013-11-11 16:53:27 -0800,2419,7363 -10743,8646,2013-11-09 19:52:42 -0800,2419,7363 -10744,6750,2013-11-09 09:58:48 -0800,2419,7363 -10745,4284,2013-11-07 09:50:28 -0800,2419,7362 -10746,9269,2013-11-12 18:54:41 -0800,2419,7363 -10747,6858,2013-11-07 18:18:30 -0800,2419,7362 -10748,2783,2013-11-09 15:32:17 -0800,2420,7364 -10749,3354,2013-11-12 05:44:39 -0800,2420,7364 -10750,2055,2013-11-07 17:21:09 -0800,2423,7375 -10751,7255,2013-11-13 02:19:35 -0800,2423,7375 -10752,7193,2013-11-11 14:36:20 -0800,2423,7375 -10753,8910,2013-11-13 03:02:50 -0800,2423,7375 -10754,9871,2013-11-08 05:13:55 -0800,2423,7375 -10755,98,2013-11-12 14:24:20 -0800,2423,7375 -10756,8143,2013-11-09 03:28:29 -0800,2423,7375 -10757,9681,2013-11-12 12:11:11 -0800,2423,7375 -10758,7730,2013-11-07 22:55:21 -0800,2424,7380 -10759,620,2013-11-07 02:03:54 -0800,2424,7379 -10760,9490,2013-11-11 00:18:20 -0800,2424,7377 -10761,9866,2013-11-13 03:59:14 -0800,2425,7381 -10762,682,2013-11-12 04:12:53 -0800,2425,7382 -10763,1767,2013-11-08 16:35:24 -0800,2426,7384 -10764,5123,2013-11-11 08:34:14 -0800,2426,7385 -10765,876,2013-11-06 13:41:32 -0800,2426,7386 -10766,1539,2013-11-12 05:44:53 -0800,2426,7387 -10767,2761,2013-11-11 01:30:55 -0800,2426,7385 -10768,7880,2013-11-11 00:33:47 -0800,2426,7386 -10769,3376,2013-11-07 03:58:19 -0800,2426,7385 -10770,2223,2013-11-12 06:49:29 -0800,2426,7385 -10771,6443,2013-11-07 08:31:54 -0800,2427,7389 -10772,3055,2013-11-11 13:54:19 -0800,2427,7388 -10773,1737,2013-11-12 17:06:22 -0800,2427,7388 -10774,6956,2013-11-10 22:14:04 -0800,2427,7388 -10775,149,2013-11-11 11:52:45 -0800,2427,7388 -10776,5525,2013-11-06 14:22:27 -0800,2427,7389 -10777,4079,2013-11-09 20:10:06 -0800,2428,7391 -10778,7827,2013-11-11 01:22:49 -0800,2428,7390 -10779,9399,2013-11-12 17:12:14 -0800,2428,7391 -10780,5294,2013-11-09 23:38:14 -0800,2428,7390 -10781,3020,2013-11-12 22:24:59 -0800,2428,7390 -10782,5334,2013-11-07 22:20:49 -0800,2430,7396 -10783,2762,2013-11-12 11:29:53 -0800,2430,7395 -10784,9136,2013-11-08 21:30:52 -0800,2430,7395 -10785,1928,2013-11-09 05:14:09 -0800,2430,7396 -10786,4298,2013-11-07 06:18:36 -0800,2431,7398 -10787,2121,2013-11-10 21:21:41 -0800,2431,7398 -10788,9781,2013-11-07 14:42:22 -0800,2431,7401 -10789,9290,2013-11-10 10:43:08 -0800,2431,7398 -10790,1862,2013-11-13 07:27:41 -0800,2431,7398 -10791,5334,2013-11-13 05:24:30 -0800,2431,7401 -10792,1914,2013-11-07 07:43:39 -0800,2431,7398 -10793,2313,2013-11-10 03:14:38 -0800,2431,7398 -10794,1780,2013-11-09 10:16:32 -0800,2432,7404 -10795,2192,2013-11-07 21:24:59 -0800,2432,7404 -10796,671,2013-11-09 11:57:51 -0800,2432,7406 -10797,2280,2013-11-10 05:02:40 -0800,2432,7403 -10798,6817,2013-11-07 17:57:30 -0800,2432,7403 -10799,9844,2013-11-13 07:43:38 -0800,2432,7404 -10800,7048,2013-11-08 09:58:58 -0800,2432,7402 -10801,3014,2013-11-07 00:42:14 -0800,2432,7403 -10802,9651,2013-11-12 20:59:59 -0800,2433,7407 -10803,4020,2013-11-07 23:40:29 -0800,2433,7409 -10804,7620,2013-11-08 04:35:17 -0800,2433,7409 -10805,6523,2013-11-07 01:56:22 -0800,2433,7407 -10806,2822,2013-11-08 18:59:24 -0800,2433,7409 -10807,8340,2013-11-09 17:15:07 -0800,2433,7410 -10808,2820,2013-11-11 04:25:40 -0800,2434,7411 -10809,6741,2013-11-07 03:24:36 -0800,2434,7411 -10810,2717,2013-11-11 01:48:00 -0800,2434,7411 -10811,195,2013-11-11 19:16:58 -0800,2434,7412 -10812,5213,2013-11-11 11:29:17 -0800,2434,7412 -10813,2946,2013-11-12 09:28:25 -0800,2434,7411 -10814,2594,2013-11-11 09:33:43 -0800,2434,7411 -10815,330,2013-11-12 21:01:56 -0800,2434,7412 -10816,5319,2013-11-08 05:31:04 -0800,2434,7412 -10817,511,2013-11-13 07:41:03 -0800,2435,7415 -10818,3252,2013-11-08 19:40:34 -0800,2435,7414 -10819,4570,2013-11-10 06:52:15 -0800,2435,7414 -10820,3129,2013-11-11 06:47:56 -0800,2436,7418 -10821,224,2013-11-12 03:11:49 -0800,2436,7419 -10822,9568,2013-11-12 08:11:24 -0800,2438,7422 -10823,6049,2013-11-07 19:07:40 -0800,2438,7421 -10824,8836,2013-11-11 19:34:31 -0800,2438,7422 -10825,9339,2013-11-11 09:27:47 -0800,2438,7422 -10826,8264,2013-11-08 05:56:57 -0800,2438,7421 -10827,9199,2013-11-10 08:56:18 -0800,2440,7428 -10828,7631,2013-11-06 22:27:24 -0800,2440,7429 -10829,4164,2013-11-06 18:29:45 -0800,2440,7428 -10830,5643,2013-11-07 17:35:13 -0800,2441,7432 -10831,321,2013-11-09 11:31:56 -0800,2441,7433 -10832,8919,2013-11-06 14:12:58 -0800,2441,7431 -10833,6478,2013-11-07 07:48:26 -0800,2441,7432 -10834,7117,2013-11-11 00:44:56 -0800,2441,7432 -10835,2777,2013-11-06 12:04:57 -0800,2443,7439 -10836,2486,2013-11-10 04:32:42 -0800,2443,7438 -10837,6040,2013-11-11 16:39:42 -0800,2443,7439 -10838,7511,2013-11-08 06:33:44 -0800,2443,7440 -10839,1934,2013-11-12 20:33:07 -0800,2443,7439 -10840,3590,2013-11-08 08:48:19 -0800,2443,7438 -10841,5250,2013-11-06 21:24:04 -0800,2444,7441 -10842,9410,2013-11-07 05:17:03 -0800,2444,7441 -10843,7393,2013-11-09 14:24:59 -0800,2446,7446 -10844,1281,2013-11-12 03:31:23 -0800,2447,7448 -10845,7054,2013-11-07 15:30:10 -0800,2447,7450 -10846,8651,2013-11-07 18:41:41 -0800,2447,7448 -10847,9030,2013-11-12 15:44:50 -0800,2447,7450 -10848,1826,2013-11-10 17:28:07 -0800,2447,7447 -10849,7569,2013-11-13 07:00:21 -0800,2449,7457 -10850,4132,2013-11-07 05:20:11 -0800,2451,7461 -10851,2076,2013-11-12 16:17:06 -0800,2451,7462 -10852,6227,2013-11-10 15:57:30 -0800,2451,7462 -10853,928,2013-11-07 03:33:28 -0800,2451,7461 -10854,7976,2013-11-12 22:34:53 -0800,2451,7461 -10855,2946,2013-11-07 22:45:52 -0800,2452,7467 -10856,1838,2013-11-07 16:49:36 -0800,2452,7467 -10857,3024,2013-11-09 20:16:50 -0800,2452,7465 -10858,9399,2013-11-13 04:01:27 -0800,2452,7465 -10859,2945,2013-11-11 05:47:44 -0800,2452,7465 -10860,8877,2013-11-07 18:42:35 -0800,2452,7465 -10861,1425,2013-11-06 21:22:57 -0800,2453,7468 -10862,5075,2013-11-10 09:38:38 -0800,2453,7468 -10863,5589,2013-11-08 16:54:51 -0800,2453,7468 -10864,6616,2013-11-09 15:50:35 -0800,2453,7469 -10865,8850,2013-11-08 22:53:28 -0800,2453,7469 -10866,5315,2013-11-13 02:54:40 -0800,2454,7471 -10867,8630,2013-11-08 00:21:10 -0800,2456,7478 -10868,4868,2013-11-10 02:17:47 -0800,2457,7482 -10869,2585,2013-11-12 18:38:29 -0800,2457,7483 -10870,4750,2013-11-13 05:17:25 -0800,2457,7483 -10871,2391,2013-11-08 10:50:01 -0800,2457,7481 -10872,1830,2013-11-08 02:50:24 -0800,2457,7483 -10873,798,2013-11-11 01:24:10 -0800,2457,7481 -10874,3765,2013-11-10 11:40:31 -0800,2457,7481 -10875,3567,2013-11-10 11:16:54 -0800,2457,7482 -10876,8410,2013-11-10 16:45:19 -0800,2458,7484 -10877,1673,2013-11-11 05:42:19 -0800,2458,7484 -10878,4258,2013-11-10 08:31:04 -0800,2458,7484 -10879,5861,2013-11-09 00:47:10 -0800,2460,7488 -10880,9142,2013-11-13 08:29:01 -0800,2460,7489 -10881,2073,2013-11-11 15:59:40 -0800,2460,7488 -10882,7329,2013-11-07 06:25:12 -0800,2460,7491 -10883,5045,2013-11-12 08:06:37 -0800,2460,7489 -10884,6340,2013-11-10 21:41:31 -0800,2460,7490 -10885,9757,2013-11-13 01:00:51 -0800,2460,7488 -10886,4650,2013-11-12 08:18:36 -0800,2461,7495 -10887,8872,2013-11-07 23:02:58 -0800,2461,7494 -10888,8231,2013-11-11 23:27:41 -0800,2462,7499 -10889,6681,2013-11-08 02:23:09 -0800,2462,7497 -10890,6219,2013-11-09 09:05:44 -0800,2462,7496 -10891,2911,2013-11-10 06:39:19 -0800,2462,7499 -10892,9278,2013-11-09 02:42:55 -0800,2462,7499 -10893,5354,2013-11-06 12:13:11 -0800,2462,7499 -10894,5949,2013-11-06 09:51:21 -0800,2463,7502 -10895,1594,2013-11-07 18:45:54 -0800,2463,7502 -10896,3457,2013-11-11 12:50:14 -0800,2463,7503 -10897,6530,2013-11-12 17:45:26 -0800,2463,7501 -10898,6018,2013-11-12 23:05:18 -0800,2463,7503 -10899,3000,2013-11-12 21:32:05 -0800,2463,7502 -10900,8281,2013-11-07 11:00:55 -0800,2464,7506 -10901,7154,2013-11-07 21:52:58 -0800,2464,7506 -10902,7680,2013-11-09 06:20:39 -0800,2464,7506 -10903,1911,2013-11-11 23:04:04 -0800,2464,7506 -10904,2393,2013-11-11 17:36:02 -0800,2464,7504 -10905,514,2013-11-07 01:00:55 -0800,2464,7506 -10906,9059,2013-11-12 14:34:30 -0800,2464,7505 -10907,6962,2013-11-09 19:30:32 -0800,2464,7505 -10908,3145,2013-11-09 11:28:35 -0800,2465,7509 -10909,1467,2013-11-10 14:10:04 -0800,2467,7514 -10910,3077,2013-11-12 03:21:43 -0800,2467,7513 -10911,451,2013-11-07 15:52:14 -0800,2467,7513 -10912,7759,2013-11-11 11:18:42 -0800,2467,7511 -10913,2962,2013-11-08 17:49:07 -0800,2469,7521 -10914,8764,2013-11-09 12:18:00 -0800,2469,7522 -10915,1234,2013-11-08 02:29:21 -0800,2469,7521 -10916,1644,2013-11-11 10:48:36 -0800,2469,7522 -10917,6667,2013-11-10 21:15:05 -0800,2470,7524 -10918,6795,2013-11-09 01:40:27 -0800,2470,7523 -10919,2883,2013-11-10 06:56:07 -0800,2470,7524 -10920,440,2013-11-09 08:16:01 -0800,2470,7526 -10921,6290,2013-11-08 08:19:28 -0800,2471,7528 -10922,3815,2013-11-11 04:37:02 -0800,2471,7530 -10923,3500,2013-11-06 10:23:05 -0800,2471,7528 -10924,3560,2013-11-08 10:00:10 -0800,2471,7530 -10925,1196,2013-11-10 02:51:06 -0800,2472,7531 -10926,5418,2013-11-12 20:20:41 -0800,2472,7532 -10927,8632,2013-11-08 02:30:15 -0800,2472,7532 -10928,6920,2013-11-09 04:17:00 -0800,2472,7532 -10929,5738,2013-11-10 08:06:08 -0800,2472,7532 -10930,379,2013-11-08 17:11:31 -0800,2472,7531 -10931,7359,2013-11-12 22:07:57 -0800,2472,7533 -10932,7959,2013-11-10 10:59:30 -0800,2472,7531 -10933,8930,2013-11-12 21:22:47 -0800,2473,7534 -10934,8059,2013-11-06 20:55:29 -0800,2473,7538 -10935,5643,2013-11-06 15:08:27 -0800,2473,7537 -10936,454,2013-11-06 09:23:14 -0800,2473,7538 -10937,1190,2013-11-13 01:48:22 -0800,2473,7537 -10938,4991,2013-11-07 06:27:51 -0800,2473,7534 -10939,712,2013-11-10 09:16:01 -0800,2473,7534 -10940,5757,2013-11-09 20:39:12 -0800,2475,7543 -10941,6191,2013-11-07 18:45:14 -0800,2475,7543 -10942,3672,2013-11-09 06:20:08 -0800,2475,7543 -10943,2361,2013-11-11 04:16:43 -0800,2476,7545 -10944,6048,2013-11-08 08:35:50 -0800,2476,7545 -10945,3174,2013-11-07 17:37:16 -0800,2476,7544 -10946,7950,2013-11-12 01:23:17 -0800,2476,7545 -10947,2173,2013-11-08 20:42:03 -0800,2476,7545 -10948,191,2013-11-12 19:58:57 -0800,2476,7545 -10949,5392,2013-11-12 01:17:58 -0800,2476,7544 -10950,8276,2013-11-06 20:27:07 -0800,2476,7545 -10951,3131,2013-11-09 08:14:32 -0800,2476,7544 -10952,5238,2013-11-09 21:46:14 -0800,2477,7547 -10953,6051,2013-11-09 23:56:51 -0800,2477,7547 -10954,438,2013-11-12 07:14:26 -0800,2477,7546 -10955,3179,2013-11-06 13:31:20 -0800,2477,7546 -10956,9470,2013-11-08 05:59:33 -0800,2478,7549 -10957,5888,2013-11-07 20:52:12 -0800,2478,7549 -10958,7341,2013-11-09 03:25:22 -0800,2478,7548 -10959,6091,2013-11-10 23:26:25 -0800,2478,7549 -10960,356,2013-11-08 15:47:17 -0800,2478,7549 -10961,299,2013-11-11 03:55:32 -0800,2478,7549 -10962,3490,2013-11-10 22:07:00 -0800,2479,7552 -10963,9195,2013-11-13 00:05:30 -0800,2479,7551 -10964,6943,2013-11-10 20:25:18 -0800,2479,7552 -10965,8148,2013-11-07 21:39:23 -0800,2479,7550 -10966,8059,2013-11-07 04:41:56 -0800,2479,7551 -10967,4499,2013-11-06 11:27:08 -0800,2479,7551 -10968,1752,2013-11-11 16:14:23 -0800,2479,7550 -10969,1133,2013-11-09 11:12:45 -0800,2479,7551 -10970,35,2013-11-08 18:43:15 -0800,2479,7552 -10971,4760,2013-11-07 03:10:32 -0800,2480,7554 -10972,7209,2013-11-09 11:59:38 -0800,2480,7554 -10973,1221,2013-11-07 01:54:32 -0800,2480,7554 -10974,7018,2013-11-11 14:33:41 -0800,2480,7554 -10975,4883,2013-11-07 20:33:00 -0800,2480,7554 -10976,7833,2013-11-12 19:45:04 -0800,2480,7554 -10977,1462,2013-11-07 03:10:02 -0800,2480,7554 -10978,6854,2013-11-09 14:10:42 -0800,2480,7554 -10979,5732,2013-11-10 23:20:11 -0800,2480,7554 -10980,9789,2013-11-12 02:35:48 -0800,2481,7555 -10981,6455,2013-11-06 21:49:19 -0800,2481,7555 -10982,4293,2013-11-12 18:00:17 -0800,2481,7555 -10983,3515,2013-11-08 03:08:11 -0800,2483,7565 -10984,4811,2013-11-11 07:06:26 -0800,2483,7566 -10985,8788,2013-11-12 10:23:36 -0800,2483,7563 -10986,770,2013-11-08 06:51:38 -0800,2483,7566 -10987,4934,2013-11-08 17:21:45 -0800,2484,7568 -10988,5835,2013-11-10 17:25:03 -0800,2484,7569 -10989,162,2013-11-09 08:19:24 -0800,2484,7569 -10990,1437,2013-11-10 17:57:01 -0800,2484,7568 -10991,1310,2013-11-11 11:16:28 -0800,2484,7569 -10992,6652,2013-11-08 14:36:09 -0800,2484,7567 -10993,8664,2013-11-09 03:01:05 -0800,2484,7568 -10994,8419,2013-11-09 17:31:50 -0800,2486,7576 -10995,8495,2013-11-08 16:23:17 -0800,2486,7577 -10996,8119,2013-11-09 09:27:52 -0800,2486,7576 -10997,175,2013-11-08 20:07:28 -0800,2486,7576 -10998,2055,2013-11-07 11:50:06 -0800,2486,7577 -10999,2759,2013-11-06 18:49:11 -0800,2486,7577 -11000,8133,2013-11-08 10:06:39 -0800,2486,7576 -11001,2716,2013-11-10 07:01:01 -0800,2487,7582 -11002,8221,2013-11-13 01:43:53 -0800,2487,7580 -11003,7970,2013-11-10 21:03:47 -0800,2487,7579 -11004,8519,2013-11-12 21:59:13 -0800,2487,7582 -11005,2269,2013-11-13 06:46:51 -0800,2487,7580 -11006,8130,2013-11-12 02:55:17 -0800,2487,7580 -11007,3535,2013-11-12 07:38:14 -0800,2487,7581 -11008,5528,2013-11-09 05:38:39 -0800,2487,7580 -11009,5996,2013-11-10 05:12:26 -0800,2487,7579 -11010,6694,2013-11-10 15:14:34 -0800,2488,7584 -11011,1697,2013-11-12 11:22:25 -0800,2488,7583 -11012,5229,2013-11-07 00:00:46 -0800,2488,7585 -11013,9021,2013-11-12 12:14:42 -0800,2488,7587 -11014,6761,2013-11-10 04:12:40 -0800,2488,7585 -11015,3286,2013-11-06 19:09:11 -0800,2488,7584 -11016,1551,2013-11-12 02:28:22 -0800,2489,7588 -11017,4650,2013-11-07 13:30:56 -0800,2489,7588 -11018,7790,2013-11-12 01:01:03 -0800,2489,7588 -11019,9557,2013-11-07 18:33:41 -0800,2489,7588 -11020,8557,2013-11-11 03:52:09 -0800,2489,7588 -11021,2523,2013-11-08 17:23:08 -0800,2489,7588 -11022,3168,2013-11-12 17:21:14 -0800,2489,7588 -11023,1964,2013-11-08 03:17:38 -0800,2489,7588 -11024,4675,2013-11-12 12:39:14 -0800,2489,7588 -11025,6650,2013-11-06 09:12:25 -0800,2491,7590 -11026,7515,2013-11-11 18:44:00 -0800,2491,7590 -11027,7915,2013-11-08 08:26:40 -0800,2491,7590 -11028,2156,2013-11-06 15:17:03 -0800,2492,7594 -11029,8530,2013-11-10 22:31:11 -0800,2493,7597 -11030,1410,2013-11-07 13:06:54 -0800,2494,7598 -11031,2348,2013-11-08 13:53:46 -0800,2494,7602 -11032,8430,2013-11-09 15:45:58 -0800,2494,7599 -11033,9230,2013-11-06 13:53:52 -0800,2494,7598 -11034,8023,2013-11-09 23:29:52 -0800,2494,7601 -11035,4011,2013-11-09 15:48:20 -0800,2495,7603 -11036,3514,2013-11-11 07:38:45 -0800,2496,7606 -11037,1340,2013-11-08 15:04:09 -0800,2496,7606 -11038,8712,2013-11-11 10:11:49 -0800,2496,7605 -11039,5210,2013-11-13 07:34:30 -0800,2496,7606 -11040,9773,2013-11-11 14:15:35 -0800,2496,7606 -11041,555,2013-11-06 20:16:10 -0800,2496,7605 -11042,6111,2013-11-10 12:56:11 -0800,2496,7605 -11043,330,2013-11-08 19:48:08 -0800,2496,7605 -11044,8739,2013-11-08 22:42:00 -0800,2498,7613 -11045,2770,2013-11-10 13:59:51 -0800,2498,7612 -11046,2727,2013-11-11 06:50:54 -0800,2498,7611 -11047,1081,2013-11-08 03:52:29 -0800,2498,7612 -11048,1882,2013-11-08 00:05:07 -0800,2499,7614 -11049,8042,2013-11-07 20:00:20 -0800,2499,7614 -11050,6800,2013-11-08 19:40:14 -0800,2501,7620 -11051,823,2013-11-11 17:43:22 -0800,2502,7623 -11052,8275,2013-11-07 05:32:26 -0800,2503,7626 -11053,8376,2013-11-10 17:44:49 -0800,2503,7626 -11054,9228,2013-11-12 15:00:09 -0800,2503,7625 -11055,4242,2013-11-12 17:29:33 -0800,2503,7625 -11056,5142,2013-11-09 04:55:49 -0800,2503,7625 -11057,5049,2013-11-13 07:37:06 -0800,2504,7627 -11058,4924,2013-11-11 11:01:46 -0800,2505,7629 -11059,147,2013-11-08 11:51:54 -0800,2505,7629 -11060,1066,2013-11-12 06:00:07 -0800,2505,7629 -11061,9739,2013-11-10 01:35:26 -0800,2505,7629 -11062,6348,2013-11-10 05:07:35 -0800,2505,7630 -11063,5491,2013-11-11 13:29:04 -0800,2506,7631 -11064,9794,2013-11-11 00:09:45 -0800,2506,7632 -11065,3990,2013-11-08 10:53:43 -0800,2506,7632 -11066,1545,2013-11-08 08:46:05 -0800,2506,7632 -11067,3925,2013-11-11 23:03:48 -0800,2506,7631 -11068,1121,2013-11-12 21:16:28 -0800,2506,7632 -11069,155,2013-11-11 15:11:30 -0800,2506,7632 -11070,2169,2013-11-09 20:39:00 -0800,2506,7631 -11071,671,2013-11-07 14:01:38 -0800,2508,7642 -11072,4428,2013-11-13 00:02:20 -0800,2508,7640 -11073,8480,2013-11-11 10:08:04 -0800,2508,7642 -11074,5957,2013-11-09 08:20:55 -0800,2508,7640 -11075,2472,2013-11-08 19:48:31 -0800,2508,7641 -11076,1263,2013-11-13 01:33:31 -0800,2509,7643 -11077,1955,2013-11-07 15:06:36 -0800,2509,7643 -11078,6070,2013-11-09 21:57:04 -0800,2509,7644 -11079,9285,2013-11-06 17:55:50 -0800,2509,7643 -11080,3375,2013-11-11 05:45:20 -0800,2509,7643 -11081,538,2013-11-09 19:44:22 -0800,2510,7645 -11082,9759,2013-11-06 22:20:21 -0800,2510,7647 -11083,6225,2013-11-12 11:28:17 -0800,2511,7649 -11084,3710,2013-11-06 19:17:44 -0800,2511,7648 -11085,2289,2013-11-12 03:56:28 -0800,2511,7651 -11086,8189,2013-11-10 11:04:00 -0800,2511,7650 -11087,1011,2013-11-06 15:54:35 -0800,2511,7648 -11088,9338,2013-11-06 11:08:06 -0800,2511,7651 -11089,5342,2013-11-07 01:45:53 -0800,2511,7650 -11090,3927,2013-11-10 05:53:16 -0800,2511,7649 -11091,1764,2013-11-11 06:26:04 -0800,2511,7648 -11092,6480,2013-11-10 22:34:40 -0800,2512,7653 -11093,5814,2013-11-11 16:22:48 -0800,2512,7652 -11094,7148,2013-11-10 20:24:55 -0800,2512,7653 -11095,5647,2013-11-12 01:37:44 -0800,2512,7653 -11096,6040,2013-11-11 07:09:43 -0800,2512,7653 -11097,3232,2013-11-09 07:14:00 -0800,2512,7653 -11098,5588,2013-11-07 09:28:39 -0800,2512,7652 -11099,1228,2013-11-09 11:55:11 -0800,2513,7655 -11100,2044,2013-11-07 13:23:19 -0800,2513,7656 -11101,7700,2013-11-12 10:27:27 -0800,2513,7656 -11102,6038,2013-11-13 01:52:56 -0800,2513,7656 -11103,6196,2013-11-11 05:50:44 -0800,2514,7657 -11104,9170,2013-11-13 03:42:39 -0800,2514,7658 -11105,2520,2013-11-09 22:17:37 -0800,2514,7658 -11106,525,2013-11-08 11:03:53 -0800,2514,7657 -11107,1712,2013-11-12 13:17:43 -0800,2515,7659 -11108,4889,2013-11-10 02:19:35 -0800,2515,7660 -11109,3979,2013-11-10 09:07:58 -0800,2515,7659 -11110,2616,2013-11-08 06:26:18 -0800,2515,7659 -11111,5531,2013-11-10 08:18:02 -0800,2515,7659 -11112,3027,2013-11-09 13:00:32 -0800,2515,7659 -11113,6144,2013-11-12 12:48:32 -0800,2515,7660 -11114,1555,2013-11-09 14:42:34 -0800,2516,7662 -11115,1938,2013-11-11 21:06:11 -0800,2516,7663 -11116,229,2013-11-09 18:23:26 -0800,2516,7664 -11117,4481,2013-11-11 20:34:26 -0800,2516,7663 -11118,2271,2013-11-11 12:19:59 -0800,2516,7663 -11119,4443,2013-11-13 07:31:37 -0800,2519,7670 -11120,5885,2013-11-06 21:25:52 -0800,2519,7672 -11121,2442,2013-11-12 09:01:49 -0800,2520,7677 -11122,2861,2013-11-06 18:39:44 -0800,2520,7676 -11123,6534,2013-11-11 16:25:48 -0800,2520,7678 -11124,4251,2013-11-09 21:08:36 -0800,2520,7677 -11125,8879,2013-11-07 04:59:43 -0800,2520,7675 -11126,9042,2013-11-09 19:03:01 -0800,2520,7674 -11127,1687,2013-11-12 16:19:30 -0800,2520,7675 -11128,7679,2013-11-11 14:24:46 -0800,2521,7680 -11129,5066,2013-11-11 11:29:46 -0800,2521,7680 -11130,9794,2013-11-07 06:40:44 -0800,2521,7679 -11131,2665,2013-11-09 22:09:12 -0800,2521,7679 -11132,9480,2013-11-12 06:23:48 -0800,2521,7679 -11133,7790,2013-11-08 17:44:19 -0800,2521,7679 -11134,9237,2013-11-09 05:18:51 -0800,2521,7681 -11135,5860,2013-11-09 00:42:42 -0800,2521,7681 -11136,9185,2013-11-09 16:34:09 -0800,2522,7683 -11137,6067,2013-11-09 07:29:11 -0800,2522,7682 -11138,1838,2013-11-11 13:11:40 -0800,2523,7686 -11139,631,2013-11-11 13:35:39 -0800,2523,7686 -11140,6967,2013-11-07 03:46:22 -0800,2523,7685 -11141,7330,2013-11-09 00:14:28 -0800,2523,7687 -11142,1976,2013-11-07 07:18:50 -0800,2523,7686 -11143,6970,2013-11-11 07:41:09 -0800,2523,7687 -11144,4455,2013-11-06 22:39:09 -0800,2523,7685 -11145,8495,2013-11-13 04:38:37 -0800,2524,7688 -11146,6859,2013-11-06 16:03:24 -0800,2524,7691 -11147,7331,2013-11-07 02:27:47 -0800,2524,7692 -11148,9248,2013-11-07 12:46:57 -0800,2524,7689 -11149,5049,2013-11-08 13:32:05 -0800,2524,7690 -11150,3496,2013-11-12 16:21:38 -0800,2524,7690 -11151,3447,2013-11-07 01:16:58 -0800,2524,7688 -11152,4382,2013-11-09 11:17:58 -0800,2524,7689 -11153,5690,2013-11-11 09:47:39 -0800,2525,7694 -11154,6197,2013-11-11 11:38:41 -0800,2525,7694 -11155,6661,2013-11-06 14:10:43 -0800,2526,7696 -11156,3468,2013-11-06 16:40:19 -0800,2526,7696 -11157,1932,2013-11-09 06:36:52 -0800,2526,7697 -11158,473,2013-11-10 13:40:34 -0800,2526,7697 -11159,2576,2013-11-10 05:09:56 -0800,2526,7696 -11160,6298,2013-11-07 02:08:18 -0800,2526,7696 -11161,548,2013-11-10 05:01:06 -0800,2527,7702 -11162,1761,2013-11-10 14:08:46 -0800,2527,7703 -11163,8197,2013-11-07 19:34:45 -0800,2527,7701 -11164,5568,2013-11-09 20:27:24 -0800,2527,7703 -11165,1222,2013-11-10 05:05:08 -0800,2527,7702 -11166,5381,2013-11-09 19:04:37 -0800,2527,7702 -11167,7398,2013-11-11 14:38:16 -0800,2527,7699 -11168,2030,2013-11-08 10:09:26 -0800,2527,7703 -11169,9496,2013-11-09 23:55:08 -0800,2528,7704 -11170,5118,2013-11-11 07:30:49 -0800,2528,7705 -11171,9080,2013-11-07 23:58:41 -0800,2529,7706 -11172,4032,2013-11-07 01:31:57 -0800,2529,7708 -11173,5261,2013-11-08 02:22:34 -0800,2530,7712 -11174,6681,2013-11-11 20:49:16 -0800,2530,7712 -11175,3488,2013-11-10 11:46:53 -0800,2530,7711 -11176,9122,2013-11-06 15:27:27 -0800,2530,7709 -11177,62,2013-11-06 11:13:44 -0800,2530,7711 -11178,8244,2013-11-09 11:09:55 -0800,2530,7711 -11179,6377,2013-11-11 14:17:09 -0800,2530,7709 -11180,4146,2013-11-08 00:32:18 -0800,2530,7709 -11181,7177,2013-11-13 07:08:59 -0800,2531,7714 -11182,4837,2013-11-06 09:21:29 -0800,2531,7714 -11183,5496,2013-11-09 20:20:14 -0800,2531,7715 -11184,7154,2013-11-07 16:36:46 -0800,2531,7714 -11185,2710,2013-11-09 13:14:31 -0800,2531,7715 -11186,6263,2013-11-09 03:04:18 -0800,2531,7714 -11187,6468,2013-11-08 08:13:16 -0800,2531,7714 -11188,9498,2013-11-10 03:29:09 -0800,2533,7720 -11189,852,2013-11-11 05:31:37 -0800,2533,7721 -11190,1070,2013-11-10 01:49:43 -0800,2533,7722 -11191,997,2013-11-07 05:16:51 -0800,2533,7720 -11192,3575,2013-11-07 02:47:06 -0800,2534,7724 -11193,2751,2013-11-12 06:51:38 -0800,2534,7724 -11194,3589,2013-11-08 21:11:28 -0800,2534,7724 -11195,7070,2013-11-07 02:00:24 -0800,2535,7726 -11196,6273,2013-11-07 22:17:21 -0800,2535,7727 -11197,1220,2013-11-09 01:29:02 -0800,2536,7729 -11198,7095,2013-11-10 22:40:35 -0800,2536,7729 -11199,4483,2013-11-12 01:54:09 -0800,2536,7729 -11200,9321,2013-11-09 11:24:37 -0800,2536,7729 -11201,7258,2013-11-13 07:35:23 -0800,2536,7729 -11202,655,2013-11-12 10:40:51 -0800,2536,7729 -11203,4195,2013-11-08 21:13:58 -0800,2536,7729 -11204,8712,2013-11-12 05:39:01 -0800,2536,7729 -11205,7314,2013-11-08 09:31:18 -0800,2538,7733 -11206,6256,2013-11-10 19:34:09 -0800,2538,7733 -11207,2744,2013-11-10 08:31:49 -0800,2538,7732 -11208,6667,2013-11-09 14:13:56 -0800,2538,7732 -11209,2915,2013-11-07 03:36:54 -0800,2538,7732 -11210,1129,2013-11-12 17:44:43 -0800,2538,7732 -11211,8957,2013-11-07 01:58:11 -0800,2538,7732 -11212,4124,2013-11-12 10:11:27 -0800,2538,7732 -11213,8367,2013-11-09 10:53:21 -0800,2538,7732 -11214,5767,2013-11-11 14:25:58 -0800,2539,7735 -11215,6823,2013-11-09 09:19:31 -0800,2539,7736 -11216,6515,2013-11-10 03:32:08 -0800,2539,7736 -11217,321,2013-11-07 23:07:58 -0800,2539,7735 -11218,745,2013-11-09 08:14:17 -0800,2539,7734 -11219,4192,2013-11-11 09:47:43 -0800,2540,7738 -11220,1648,2013-11-10 09:49:58 -0800,2540,7738 -11221,5148,2013-11-10 10:28:41 -0800,2540,7737 -11222,9515,2013-11-12 21:52:43 -0800,2540,7737 -11223,6584,2013-11-08 16:29:40 -0800,2540,7738 -11224,3075,2013-11-08 02:36:37 -0800,2540,7737 -11225,8084,2013-11-12 18:39:38 -0800,2540,7738 -11226,9266,2013-11-12 01:08:24 -0800,2541,7740 -11227,6422,2013-11-09 04:08:34 -0800,2541,7739 -11228,3010,2013-11-10 16:24:21 -0800,2541,7739 -11229,1789,2013-11-10 23:24:24 -0800,2541,7740 -11230,5510,2013-11-09 15:53:28 -0800,2541,7741 -11231,9172,2013-11-07 23:47:48 -0800,2541,7740 -11232,30,2013-11-08 07:32:34 -0800,2542,7744 -11233,7273,2013-11-07 00:57:31 -0800,2542,7743 -11234,5725,2013-11-08 23:38:41 -0800,2542,7746 -11235,8162,2013-11-11 16:48:24 -0800,2542,7745 -11236,9822,2013-11-08 14:22:21 -0800,2542,7743 -11237,1196,2013-11-11 20:23:52 -0800,2542,7743 -11238,4313,2013-11-12 23:05:23 -0800,2542,7746 -11239,4270,2013-11-10 02:39:37 -0800,2543,7747 -11240,1720,2013-11-09 11:40:13 -0800,2543,7749 -11241,8031,2013-11-08 23:51:40 -0800,2543,7748 -11242,1994,2013-11-10 08:58:21 -0800,2543,7751 -11243,1469,2013-11-12 23:06:42 -0800,2544,7752 -11244,8677,2013-11-07 17:02:12 -0800,2544,7755 -11245,8291,2013-11-10 11:49:48 -0800,2544,7755 -11246,3052,2013-11-06 22:03:31 -0800,2544,7752 -11247,9213,2013-11-13 02:13:39 -0800,2544,7753 -11248,4663,2013-11-11 02:41:11 -0800,2544,7754 -11249,811,2013-11-11 17:21:16 -0800,2544,7752 -11250,9068,2013-11-09 01:21:12 -0800,2544,7754 -11251,2081,2013-11-12 17:12:45 -0800,2544,7754 -11252,7383,2013-11-11 23:46:05 -0800,2545,7759 -11253,6473,2013-11-08 18:27:58 -0800,2545,7757 -11254,1945,2013-11-10 23:40:41 -0800,2545,7758 -11255,894,2013-11-08 01:24:10 -0800,2545,7756 -11256,2228,2013-11-08 17:02:05 -0800,2545,7759 -11257,4129,2013-11-07 12:57:36 -0800,2545,7758 -11258,1494,2013-11-07 22:40:21 -0800,2545,7758 -11259,8247,2013-11-07 18:09:50 -0800,2546,7760 -11260,2629,2013-11-10 18:33:19 -0800,2546,7760 -11261,17,2013-11-11 02:59:48 -0800,2546,7760 -11262,1932,2013-11-11 21:45:06 -0800,2546,7760 -11263,8780,2013-11-07 02:29:56 -0800,2546,7760 -11264,3425,2013-11-13 00:34:39 -0800,2546,7760 -11265,5115,2013-11-10 08:23:23 -0800,2547,7763 -11266,7141,2013-11-06 19:58:29 -0800,2547,7762 -11267,2250,2013-11-11 01:32:51 -0800,2547,7761 -11268,4136,2013-11-08 21:16:13 -0800,2547,7765 -11269,6351,2013-11-11 23:08:46 -0800,2548,7767 -11270,7964,2013-11-09 08:29:06 -0800,2548,7766 -11271,5026,2013-11-13 03:28:15 -0800,2548,7766 -11272,6425,2013-11-06 17:36:00 -0800,2548,7766 -11273,3600,2013-11-11 15:17:57 -0800,2548,7766 -11274,4323,2013-11-08 18:08:52 -0800,2548,7767 -11275,4638,2013-11-09 22:23:54 -0800,2548,7767 -11276,1272,2013-11-08 17:35:07 -0800,2548,7766 -11277,1844,2013-11-10 02:40:13 -0800,2548,7767 -11278,5130,2013-11-08 23:58:34 -0800,2549,7768 -11279,2310,2013-11-10 11:32:52 -0800,2549,7768 -11280,6887,2013-11-11 21:25:17 -0800,2549,7768 -11281,480,2013-11-11 04:47:49 -0800,2549,7768 -11282,8080,2013-11-08 11:08:20 -0800,2549,7768 -11283,9041,2013-11-08 09:38:44 -0800,2549,7768 -11284,9890,2013-11-10 13:43:49 -0800,2550,7771 -11285,5430,2013-11-10 13:23:10 -0800,2550,7769 -11286,3115,2013-11-09 09:37:32 -0800,2550,7771 -11287,6333,2013-11-09 04:23:10 -0800,2551,7773 -11288,7716,2013-11-13 03:27:48 -0800,2551,7773 -11289,5593,2013-11-13 06:19:22 -0800,2551,7774 -11290,5941,2013-11-10 18:35:28 -0800,2551,7774 -11291,1661,2013-11-12 16:21:09 -0800,2551,7776 -11292,526,2013-11-08 00:23:11 -0800,2551,7774 -11293,6555,2013-11-10 12:33:54 -0800,2552,7780 -11294,8340,2013-11-09 06:24:20 -0800,2552,7780 -11295,2486,2013-11-07 16:51:39 -0800,2552,7778 -11296,3677,2013-11-12 19:51:08 -0800,2552,7778 -11297,749,2013-11-07 23:53:46 -0800,2552,7777 -11298,1841,2013-11-10 05:43:50 -0800,2552,7778 -11299,5589,2013-11-12 19:23:23 -0800,2552,7778 -11300,533,2013-11-12 11:03:15 -0800,2552,7778 -11301,3060,2013-11-12 15:25:45 -0800,2552,7777 -11302,8268,2013-11-12 17:09:18 -0800,2553,7782 -11303,9845,2013-11-11 05:43:39 -0800,2553,7782 -11304,9361,2013-11-12 16:58:21 -0800,2553,7782 -11305,5220,2013-11-11 00:49:12 -0800,2554,7787 -11306,5210,2013-11-07 20:21:22 -0800,2554,7788 -11307,3356,2013-11-09 14:26:10 -0800,2554,7786 -11308,9333,2013-11-07 19:45:33 -0800,2554,7790 -11309,8279,2013-11-09 17:32:01 -0800,2554,7790 -11310,2160,2013-11-07 13:11:47 -0800,2554,7786 -11311,4314,2013-11-09 02:34:50 -0800,2554,7787 -11312,3486,2013-11-09 17:11:41 -0800,2554,7790 -11313,1457,2013-11-10 15:33:28 -0800,2554,7790 -11314,3361,2013-11-07 18:30:25 -0800,2555,7791 -11315,9657,2013-11-08 11:28:44 -0800,2555,7791 -11316,983,2013-11-12 02:40:44 -0800,2555,7791 -11317,1922,2013-11-08 09:42:15 -0800,2555,7791 -11318,4238,2013-11-10 04:42:41 -0800,2555,7791 -11319,1011,2013-11-06 19:05:44 -0800,2555,7791 -11320,9658,2013-11-10 07:19:46 -0800,2555,7791 -11321,7311,2013-11-13 00:40:07 -0800,2555,7791 -11322,2668,2013-11-11 14:47:03 -0800,2555,7791 -11323,3957,2013-11-10 05:59:49 -0800,2556,7792 -11324,3800,2013-11-09 16:23:01 -0800,2556,7792 -11325,4797,2013-11-06 14:30:00 -0800,2556,7792 -11326,7684,2013-11-08 10:31:57 -0800,2556,7792 -11327,8935,2013-11-07 08:33:51 -0800,2556,7792 -11328,713,2013-11-11 04:27:21 -0800,2556,7792 -11329,9243,2013-11-13 07:42:39 -0800,2557,7794 -11330,3229,2013-11-10 06:55:52 -0800,2557,7794 -11331,6823,2013-11-10 19:10:43 -0800,2557,7793 -11332,4579,2013-11-08 19:46:23 -0800,2557,7793 -11333,6062,2013-11-10 18:28:32 -0800,2557,7796 -11334,6650,2013-11-10 07:54:36 -0800,2557,7795 -11335,2470,2013-11-13 00:13:20 -0800,2557,7794 -11336,9061,2013-11-11 18:42:52 -0800,2557,7794 -11337,6158,2013-11-07 22:06:25 -0800,2557,7795 -11338,7092,2013-11-10 03:32:26 -0800,2558,7797 -11339,7991,2013-11-10 00:57:29 -0800,2558,7797 -11340,2094,2013-11-07 22:17:46 -0800,2559,7802 -11341,112,2013-11-08 21:58:31 -0800,2559,7801 -11342,2774,2013-11-07 13:08:25 -0800,2559,7801 -11343,2220,2013-11-11 08:51:12 -0800,2559,7799 -11344,1478,2013-11-06 08:41:08 -0800,2559,7800 -11345,2227,2013-11-10 05:58:16 -0800,2559,7799 -11346,2020,2013-11-08 17:19:21 -0800,2559,7800 -11347,614,2013-11-07 08:44:46 -0800,2559,7801 -11348,2070,2013-11-11 08:07:41 -0800,2559,7801 -11349,7058,2013-11-11 09:31:36 -0800,2560,7803 -11350,9067,2013-11-07 17:43:59 -0800,2560,7803 -11351,5549,2013-11-07 06:55:11 -0800,2561,7805 -11352,9189,2013-11-09 17:37:20 -0800,2561,7804 -11353,2648,2013-11-11 17:18:18 -0800,2561,7806 -11354,7423,2013-11-08 05:05:12 -0800,2561,7806 -11355,918,2013-11-10 22:01:50 -0800,2561,7805 -11356,8424,2013-11-08 17:58:31 -0800,2561,7805 -11357,5662,2013-11-07 15:45:03 -0800,2561,7804 -11358,5084,2013-11-10 02:21:28 -0800,2561,7806 -11359,8861,2013-11-10 21:06:54 -0800,2561,7805 -11360,2350,2013-11-09 00:03:30 -0800,2562,7807 -11361,1739,2013-11-10 02:04:24 -0800,2562,7807 -11362,5888,2013-11-09 14:35:07 -0800,2562,7807 -11363,8811,2013-11-10 10:23:08 -0800,2562,7807 -11364,1967,2013-11-08 15:45:50 -0800,2562,7807 -11365,9055,2013-11-07 11:34:26 -0800,2562,7807 -11366,2491,2013-11-08 16:30:07 -0800,2562,7807 -11367,8451,2013-11-11 00:06:06 -0800,2562,7807 -11368,4169,2013-11-12 04:14:50 -0800,2562,7807 -11369,2032,2013-11-07 19:33:15 -0800,2563,7809 -11370,4615,2013-11-12 02:49:46 -0800,2563,7811 -11371,2475,2013-11-07 05:15:56 -0800,2563,7808 -11372,6071,2013-11-11 17:44:49 -0800,2563,7808 -11373,6477,2013-11-12 03:56:46 -0800,2563,7811 -11374,9779,2013-11-07 19:21:28 -0800,2563,7811 -11375,7955,2013-11-11 04:31:24 -0800,2563,7809 -11376,4050,2013-11-11 20:06:36 -0800,2564,7814 -11377,5234,2013-11-08 11:26:36 -0800,2564,7814 -11378,5090,2013-11-07 18:39:06 -0800,2564,7813 -11379,2375,2013-11-09 15:30:16 -0800,2564,7812 -11380,64,2013-11-07 23:39:09 -0800,2564,7813 -11381,7327,2013-11-10 21:23:07 -0800,2566,7818 -11382,6639,2013-11-09 03:10:37 -0800,2566,7818 -11383,4250,2013-11-09 13:59:04 -0800,2566,7818 -11384,2800,2013-11-09 13:05:16 -0800,2566,7819 -11385,670,2013-11-11 06:46:44 -0800,2566,7821 -11386,8683,2013-11-10 15:12:12 -0800,2568,7828 -11387,509,2013-11-12 14:32:42 -0800,2568,7827 -11388,661,2013-11-10 03:18:26 -0800,2568,7828 -11389,8880,2013-11-07 02:32:12 -0800,2568,7827 -11390,6756,2013-11-10 22:31:25 -0800,2568,7827 -11391,7195,2013-11-11 10:39:03 -0800,2568,7827 -11392,7788,2013-11-10 16:01:46 -0800,2569,7829 -11393,8298,2013-11-10 04:01:34 -0800,2569,7829 -11394,3799,2013-11-13 05:03:52 -0800,2569,7831 -11395,1636,2013-11-10 01:48:02 -0800,2569,7829 -11396,9152,2013-11-11 19:59:47 -0800,2569,7829 -11397,1340,2013-11-09 14:41:36 -0800,2570,7833 -11398,2620,2013-11-07 14:20:40 -0800,2570,7835 -11399,2676,2013-11-10 12:15:50 -0800,2570,7832 -11400,268,2013-11-10 13:32:02 -0800,2570,7832 -11401,9854,2013-11-11 05:33:45 -0800,2571,7836 -11402,8847,2013-11-10 06:27:38 -0800,2571,7836 -11403,6934,2013-11-06 18:01:07 -0800,2571,7836 -11404,2647,2013-11-09 12:38:08 -0800,2572,7839 -11405,4938,2013-11-10 20:01:49 -0800,2572,7840 -11406,3110,2013-11-11 16:03:30 -0800,2572,7838 -11407,2976,2013-11-09 12:44:43 -0800,2572,7837 -11408,3415,2013-11-08 14:26:18 -0800,2572,7838 -11409,700,2013-11-12 00:27:57 -0800,2572,7839 -11410,710,2013-11-11 03:16:28 -0800,2573,7842 -11411,4726,2013-11-09 20:52:54 -0800,2574,7845 -11412,3084,2013-11-07 17:54:41 -0800,2574,7847 -11413,6445,2013-11-07 02:44:58 -0800,2575,7848 -11414,7556,2013-11-12 19:25:36 -0800,2575,7848 -11415,6736,2013-11-09 09:48:52 -0800,2575,7848 -11416,6190,2013-11-06 20:26:26 -0800,2575,7848 -11417,8871,2013-11-08 14:15:49 -0800,2575,7848 -11418,3560,2013-11-11 13:39:37 -0800,2575,7848 -11419,4865,2013-11-09 02:55:46 -0800,2575,7848 -11420,7397,2013-11-10 12:55:34 -0800,2575,7848 -11421,7638,2013-11-08 10:39:16 -0800,2575,7848 -11422,1920,2013-11-08 08:14:10 -0800,2576,7851 -11423,5561,2013-11-08 12:35:48 -0800,2576,7851 -11424,8428,2013-11-06 22:08:48 -0800,2576,7851 -11425,6716,2013-11-06 10:09:43 -0800,2576,7850 -11426,6343,2013-11-11 14:56:47 -0800,2576,7849 -11427,3149,2013-11-07 00:45:11 -0800,2576,7850 -11428,5046,2013-11-08 11:36:43 -0800,2577,7853 -11429,4221,2013-11-06 18:38:35 -0800,2577,7852 -11430,2080,2013-11-07 08:57:26 -0800,2578,7859 -11431,8354,2013-11-12 21:58:45 -0800,2578,7857 -11432,2225,2013-11-09 04:56:03 -0800,2578,7855 -11433,1696,2013-11-10 02:46:27 -0800,2578,7855 -11434,2393,2013-11-10 09:42:00 -0800,2579,7862 -11435,9186,2013-11-11 11:20:44 -0800,2579,7863 -11436,498,2013-11-12 20:59:28 -0800,2579,7863 -11437,293,2013-11-09 12:32:36 -0800,2579,7860 -11438,5367,2013-11-12 17:34:56 -0800,2579,7862 -11439,1225,2013-11-12 17:24:19 -0800,2579,7862 -11440,3163,2013-11-10 17:35:07 -0800,2579,7862 -11441,4744,2013-11-11 08:24:21 -0800,2579,7861 -11442,4389,2013-11-08 16:52:39 -0800,2580,7864 -11443,8581,2013-11-08 14:22:53 -0800,2580,7864 -11444,8233,2013-11-06 16:11:13 -0800,2580,7864 -11445,3531,2013-11-07 09:36:32 -0800,2580,7864 -11446,6978,2013-11-13 02:19:55 -0800,2580,7864 -11447,5873,2013-11-06 18:54:23 -0800,2580,7864 -11448,190,2013-11-06 09:32:33 -0800,2581,7867 -11449,4547,2013-11-08 17:53:39 -0800,2581,7867 -11450,7947,2013-11-08 19:58:20 -0800,2581,7867 -11451,7990,2013-11-11 11:46:47 -0800,2581,7866 -11452,789,2013-11-11 21:10:21 -0800,2581,7869 -11453,3869,2013-11-10 00:07:32 -0800,2582,7870 -11454,1226,2013-11-08 09:14:30 -0800,2582,7870 -11455,6840,2013-11-07 23:37:13 -0800,2582,7871 -11456,3038,2013-11-09 04:10:45 -0800,2582,7871 -11457,9332,2013-11-12 05:44:01 -0800,2582,7871 -11458,6020,2013-11-09 14:19:03 -0800,2583,7872 -11459,7718,2013-11-07 08:53:43 -0800,2583,7873 -11460,2684,2013-11-10 04:16:11 -0800,2583,7872 -11461,7554,2013-11-08 22:27:03 -0800,2583,7873 -11462,5789,2013-11-09 02:18:51 -0800,2583,7873 -11463,8857,2013-11-07 08:03:04 -0800,2583,7873 -11464,4376,2013-11-12 22:05:09 -0800,2583,7873 -11465,777,2013-11-10 23:28:11 -0800,2583,7873 -11466,7840,2013-11-06 15:05:43 -0800,2583,7872 -11467,5422,2013-11-09 08:36:36 -0800,2584,7874 -11468,4138,2013-11-08 01:23:03 -0800,2584,7877 -11469,2146,2013-11-08 00:32:30 -0800,2584,7874 -11470,3661,2013-11-06 19:34:25 -0800,2584,7876 -11471,5030,2013-11-12 04:36:39 -0800,2584,7876 -11472,8183,2013-11-07 07:20:30 -0800,2584,7874 -11473,1241,2013-11-09 23:48:15 -0800,2585,7878 -11474,273,2013-11-09 03:45:51 -0800,2585,7879 -11475,5784,2013-11-12 21:59:52 -0800,2585,7879 -11476,1937,2013-11-10 14:54:49 -0800,2585,7879 -11477,3611,2013-11-09 04:20:49 -0800,2585,7880 -11478,5536,2013-11-13 07:57:58 -0800,2585,7880 -11479,3534,2013-11-13 07:43:02 -0800,2585,7879 -11480,6372,2013-11-08 15:00:55 -0800,2586,7882 -11481,7192,2013-11-13 00:05:41 -0800,2587,7887 -11482,8217,2013-11-06 19:46:44 -0800,2587,7886 -11483,2678,2013-11-07 22:15:19 -0800,2587,7887 -11484,7948,2013-11-10 21:14:01 -0800,2587,7888 -11485,7651,2013-11-11 23:18:54 -0800,2587,7886 -11486,7028,2013-11-08 13:26:16 -0800,2587,7888 -11487,1786,2013-11-13 06:22:15 -0800,2587,7886 -11488,2227,2013-11-11 13:30:18 -0800,2587,7887 -11489,1299,2013-11-08 22:39:40 -0800,2587,7888 -11490,8788,2013-11-11 11:06:33 -0800,2588,7889 -11491,5217,2013-11-06 18:09:07 -0800,2588,7891 -11492,8683,2013-11-07 21:49:30 -0800,2588,7891 -11493,9352,2013-11-07 13:26:35 -0800,2588,7890 -11494,7066,2013-11-06 14:57:14 -0800,2588,7891 -11495,8276,2013-11-07 22:58:08 -0800,2590,7895 -11496,5979,2013-11-08 14:16:17 -0800,2590,7895 -11497,3421,2013-11-07 06:34:29 -0800,2590,7895 -11498,2472,2013-11-09 22:01:19 -0800,2590,7896 -11499,8298,2013-11-08 00:51:37 -0800,2590,7895 -11500,9784,2013-11-09 06:13:34 -0800,2590,7895 -11501,7873,2013-11-13 00:36:41 -0800,2590,7895 -11502,8744,2013-11-07 16:44:07 -0800,2590,7895 -11503,6890,2013-11-12 11:52:40 -0800,2590,7896 -11504,1273,2013-11-06 09:53:14 -0800,2591,7898 -11505,5948,2013-11-08 04:34:01 -0800,2591,7901 -11506,4953,2013-11-10 08:54:19 -0800,2591,7901 -11507,4190,2013-11-11 21:22:25 -0800,2591,7897 -11508,9135,2013-11-12 21:25:55 -0800,2592,7902 -11509,5714,2013-11-13 08:01:57 -0800,2592,7902 -11510,369,2013-11-11 11:54:32 -0800,2592,7902 -11511,9164,2013-11-13 04:42:19 -0800,2592,7902 -11512,3185,2013-11-08 11:44:07 -0800,2592,7902 -11513,4776,2013-11-08 17:47:52 -0800,2592,7902 -11514,811,2013-11-12 08:51:30 -0800,2592,7902 -11515,9470,2013-11-12 02:49:15 -0800,2592,7902 -11516,7948,2013-11-12 15:31:08 -0800,2592,7902 -11517,6368,2013-11-08 23:35:33 -0800,2593,7903 -11518,6296,2013-11-10 22:55:49 -0800,2593,7906 -11519,6297,2013-11-12 18:09:14 -0800,2593,7906 -11520,4581,2013-11-10 06:08:20 -0800,2593,7904 -11521,1796,2013-11-12 08:52:00 -0800,2594,7909 -11522,7816,2013-11-12 23:32:12 -0800,2594,7909 -11523,6980,2013-11-13 05:54:45 -0800,2594,7909 -11524,2544,2013-11-13 07:44:24 -0800,2594,7908 -11525,9163,2013-11-12 06:08:01 -0800,2594,7908 -11526,788,2013-11-13 03:32:19 -0800,2594,7908 -11527,6222,2013-11-08 19:34:46 -0800,2594,7907 -11528,9766,2013-11-11 16:03:17 -0800,2594,7908 -11529,3059,2013-11-07 10:38:31 -0800,2595,7911 -11530,5558,2013-11-09 12:33:33 -0800,2595,7911 -11531,1889,2013-11-11 23:38:13 -0800,2596,7916 -11532,4740,2013-11-07 11:30:36 -0800,2596,7914 -11533,4568,2013-11-10 10:44:38 -0800,2596,7913 -11534,4146,2013-11-07 19:38:40 -0800,2596,7912 -11535,5397,2013-11-12 22:37:25 -0800,2596,7913 -11536,5819,2013-11-12 18:32:10 -0800,2597,7917 -11537,1638,2013-11-06 15:05:33 -0800,2597,7917 -11538,7877,2013-11-10 07:34:57 -0800,2597,7917 -11539,7990,2013-11-06 14:50:47 -0800,2597,7918 -11540,1067,2013-11-06 11:28:04 -0800,2597,7917 -11541,8648,2013-11-07 16:59:35 -0800,2597,7917 -11542,1160,2013-11-07 06:54:09 -0800,2598,7921 -11543,6664,2013-11-09 16:35:20 -0800,2598,7921 -11544,1224,2013-11-08 18:38:59 -0800,2598,7921 -11545,5881,2013-11-11 06:45:36 -0800,2598,7921 -11546,7279,2013-11-10 02:05:12 -0800,2599,7922 -11547,8421,2013-11-07 10:20:08 -0800,2599,7922 -11548,9833,2013-11-08 14:49:52 -0800,2599,7922 -11549,4766,2013-11-07 19:25:39 -0800,2599,7922 -11550,651,2013-11-11 13:53:07 -0800,2599,7924 -11551,2461,2013-11-06 19:57:48 -0800,2599,7923 -11552,650,2013-11-08 19:54:58 -0800,2599,7924 -11553,3700,2013-11-09 00:21:22 -0800,2600,7926 -11554,266,2013-11-08 17:25:11 -0800,2600,7927 -11555,499,2013-11-09 10:12:44 -0800,2600,7926 -11556,5082,2013-11-07 17:50:50 -0800,2600,7927 -11557,8221,2013-11-06 11:16:45 -0800,2600,7927 -11558,4766,2013-11-09 00:06:58 -0800,2600,7927 -11559,5431,2013-11-08 16:11:25 -0800,2600,7926 -11560,3582,2013-11-10 15:59:58 -0800,2600,7926 -11561,1033,2013-11-08 22:45:49 -0800,2601,7928 -11562,8452,2013-11-07 11:16:55 -0800,2601,7928 -11563,8462,2013-11-12 14:47:59 -0800,2601,7928 -11564,5754,2013-11-08 06:47:22 -0800,2601,7928 -11565,8897,2013-11-11 02:19:34 -0800,2601,7928 -11566,8087,2013-11-12 09:18:34 -0800,2601,7928 -11567,7286,2013-11-10 04:55:13 -0800,2601,7928 -11568,4290,2013-11-07 14:24:47 -0800,2601,7928 -11569,950,2013-11-08 09:20:07 -0800,2601,7928 -11570,9481,2013-11-12 20:41:24 -0800,2602,7930 -11571,3497,2013-11-11 20:11:29 -0800,2602,7929 -11572,2511,2013-11-09 23:21:03 -0800,2602,7930 -11573,7690,2013-11-10 13:55:11 -0800,2602,7929 -11574,3149,2013-11-11 15:17:41 -0800,2604,7934 -11575,1610,2013-11-07 04:49:21 -0800,2604,7934 -11576,8692,2013-11-08 07:28:39 -0800,2604,7934 -11577,3577,2013-11-11 10:46:34 -0800,2605,7938 -11578,9777,2013-11-10 20:25:08 -0800,2605,7936 -11579,7064,2013-11-07 07:29:10 -0800,2605,7937 -11580,2090,2013-11-06 18:32:57 -0800,2606,7943 -11581,3635,2013-11-13 07:41:39 -0800,2606,7943 -11582,7726,2013-11-13 02:59:55 -0800,2606,7940 -11583,6989,2013-11-08 16:39:46 -0800,2606,7941 -11584,5744,2013-11-06 15:04:59 -0800,2606,7942 -11585,179,2013-11-08 23:52:28 -0800,2607,7946 -11586,328,2013-11-11 12:47:14 -0800,2607,7944 -11587,4627,2013-11-06 12:37:52 -0800,2607,7944 -11588,4279,2013-11-09 22:08:57 -0800,2607,7945 -11589,5834,2013-11-10 18:02:57 -0800,2607,7944 -11590,3482,2013-11-10 08:15:08 -0800,2607,7945 -11591,570,2013-11-08 14:33:06 -0800,2607,7944 -11592,3365,2013-11-11 01:33:42 -0800,2608,7948 -11593,30,2013-11-09 06:44:20 -0800,2608,7947 -11594,6994,2013-11-10 22:20:16 -0800,2608,7948 -11595,5298,2013-11-08 06:34:30 -0800,2608,7947 -11596,9655,2013-11-11 10:17:54 -0800,2610,7954 -11597,5626,2013-11-07 15:48:10 -0800,2610,7957 -11598,592,2013-11-10 22:36:27 -0800,2610,7954 -11599,7073,2013-11-10 11:59:52 -0800,2611,7959 -11600,2198,2013-11-13 06:20:03 -0800,2611,7960 -11601,434,2013-11-11 12:56:14 -0800,2611,7960 -11602,5364,2013-11-10 12:42:19 -0800,2611,7961 -11603,550,2013-11-07 07:22:13 -0800,2611,7960 -11604,4811,2013-11-12 03:40:00 -0800,2611,7961 -11605,5162,2013-11-11 06:01:43 -0800,2611,7959 -11606,4110,2013-11-11 14:52:11 -0800,2611,7959 -11607,2540,2013-11-10 18:21:07 -0800,2612,7962 -11608,4240,2013-11-07 00:33:35 -0800,2612,7963 -11609,1360,2013-11-08 09:40:33 -0800,2612,7962 -11610,2872,2013-11-07 16:12:40 -0800,2612,7963 -11611,5083,2013-11-06 17:29:07 -0800,2612,7963 -11612,2862,2013-11-13 01:38:03 -0800,2612,7963 -11613,1739,2013-11-10 22:48:57 -0800,2613,7964 -11614,1040,2013-11-08 23:46:39 -0800,2613,7965 -11615,5912,2013-11-13 06:35:31 -0800,2613,7964 -11616,988,2013-11-07 22:39:42 -0800,2613,7965 -11617,4341,2013-11-07 09:15:34 -0800,2613,7965 -11618,4297,2013-11-06 19:04:23 -0800,2613,7964 -11619,279,2013-11-10 01:52:11 -0800,2613,7965 -11620,2983,2013-11-09 16:48:18 -0800,2613,7965 -11621,6567,2013-11-13 02:50:01 -0800,2614,7969 -11622,1061,2013-11-11 13:30:22 -0800,2614,7968 -11623,5636,2013-11-12 09:15:46 -0800,2614,7968 -11624,3799,2013-11-11 20:49:02 -0800,2614,7969 -11625,3974,2013-11-07 15:17:23 -0800,2614,7970 -11626,1515,2013-11-11 10:01:19 -0800,2614,7967 -11627,4134,2013-11-08 18:27:07 -0800,2615,7971 -11628,4581,2013-11-12 12:21:39 -0800,2615,7971 -11629,1197,2013-11-08 20:34:51 -0800,2615,7971 -11630,9540,2013-11-09 13:59:09 -0800,2615,7971 -11631,6842,2013-11-07 13:26:46 -0800,2615,7971 -11632,6062,2013-11-12 17:56:09 -0800,2616,7972 -11633,4899,2013-11-06 17:37:13 -0800,2616,7974 -11634,5183,2013-11-06 15:51:32 -0800,2617,7976 -11635,5178,2013-11-10 01:45:43 -0800,2617,7976 -11636,5180,2013-11-12 20:21:07 -0800,2617,7976 -11637,5938,2013-11-09 03:30:42 -0800,2617,7976 -11638,6598,2013-11-11 11:33:37 -0800,2618,7978 -11639,1943,2013-11-11 23:30:47 -0800,2618,7978 -11640,8490,2013-11-10 10:33:49 -0800,2618,7980 -11641,8935,2013-11-13 06:49:28 -0800,2618,7979 -11642,941,2013-11-08 03:42:33 -0800,2618,7978 -11643,1766,2013-11-08 07:51:05 -0800,2618,7977 -11644,8386,2013-11-09 21:36:04 -0800,2618,7979 -11645,6181,2013-11-11 12:49:34 -0800,2618,7980 -11646,6959,2013-11-11 06:25:55 -0800,2618,7978 -11647,5860,2013-11-12 08:47:22 -0800,2619,7981 -11648,9469,2013-11-11 07:49:45 -0800,2619,7981 -11649,5691,2013-11-08 17:41:38 -0800,2619,7981 -11650,9527,2013-11-08 11:29:37 -0800,2619,7981 -11651,3258,2013-11-09 04:46:20 -0800,2619,7981 -11652,725,2013-11-12 18:55:50 -0800,2619,7981 -11653,3196,2013-11-10 03:36:13 -0800,2619,7981 -11654,8670,2013-11-12 23:35:51 -0800,2619,7981 -11655,3153,2013-11-08 20:24:46 -0800,2619,7981 -11656,2225,2013-11-13 03:49:30 -0800,2620,7983 -11657,7388,2013-11-07 14:16:36 -0800,2620,7985 -11658,6913,2013-11-10 10:25:10 -0800,2620,7982 -11659,5891,2013-11-09 18:31:36 -0800,2620,7984 -11660,3459,2013-11-11 20:10:17 -0800,2620,7983 -11661,8370,2013-11-09 15:02:36 -0800,2620,7985 -11662,3959,2013-11-12 03:14:34 -0800,2620,7983 -11663,1789,2013-11-06 11:37:19 -0800,2620,7985 -11664,9155,2013-11-07 09:31:26 -0800,2622,7992 -11665,3484,2013-11-07 12:29:12 -0800,2622,7992 -11666,5893,2013-11-07 21:11:55 -0800,2622,7991 -11667,9786,2013-11-08 22:21:05 -0800,2622,7991 -11668,3351,2013-11-09 20:13:10 -0800,2623,7997 -11669,6274,2013-11-06 18:08:21 -0800,2623,7996 -11670,5946,2013-11-08 17:14:09 -0800,2623,7995 -11671,5410,2013-11-13 00:12:44 -0800,2623,7996 -11672,2256,2013-11-12 05:16:48 -0800,2623,7994 -11673,1283,2013-11-08 01:31:45 -0800,2623,7994 -11674,3175,2013-11-07 10:47:00 -0800,2623,7997 -11675,3210,2013-11-06 15:24:38 -0800,2623,7995 -11676,4580,2013-11-09 19:16:48 -0800,2623,7997 -11677,7809,2013-11-06 09:13:11 -0800,2624,7998 -11678,238,2013-11-07 14:49:06 -0800,2624,7998 -11679,9055,2013-11-07 04:05:25 -0800,2624,7999 -11680,1485,2013-11-12 11:16:31 -0800,2624,7999 -11681,571,2013-11-08 13:32:32 -0800,2624,8000 -11682,4116,2013-11-06 17:44:35 -0800,2624,7999 -11683,3489,2013-11-12 18:30:42 -0800,2624,8000 -11684,8783,2013-11-11 08:20:07 -0800,2625,8001 -11685,5198,2013-11-12 23:24:52 -0800,2626,8003 -11686,4934,2013-11-10 00:06:40 -0800,2626,8004 -11687,840,2013-11-06 08:38:38 -0800,2626,8002 -11688,8778,2013-11-07 20:21:26 -0800,2627,8009 -11689,6244,2013-11-08 10:16:26 -0800,2627,8009 -11690,2340,2013-11-10 12:40:39 -0800,2627,8009 -11691,2172,2013-11-08 10:19:16 -0800,2627,8009 -11692,5190,2013-11-11 12:25:54 -0800,2627,8006 -11693,9220,2013-11-07 07:47:57 -0800,2628,8010 -11694,6467,2013-11-12 16:30:48 -0800,2628,8010 -11695,2644,2013-11-09 08:44:28 -0800,2628,8010 -11696,4141,2013-11-12 14:42:34 -0800,2628,8012 -11697,2593,2013-11-06 23:57:06 -0800,2628,8011 -11698,3127,2013-11-07 00:04:45 -0800,2629,8015 -11699,2782,2013-11-11 01:05:13 -0800,2629,8015 -11700,3119,2013-11-08 22:22:44 -0800,2629,8013 -11701,6540,2013-11-11 18:20:42 -0800,2629,8014 -11702,3934,2013-11-10 07:21:29 -0800,2629,8015 -11703,6127,2013-11-12 18:38:46 -0800,2629,8015 -11704,7737,2013-11-08 17:19:01 -0800,2630,8016 -11705,4560,2013-11-10 00:54:15 -0800,2630,8016 -11706,5183,2013-11-09 04:44:37 -0800,2631,8017 -11707,3411,2013-11-10 21:58:18 -0800,2631,8017 -11708,9645,2013-11-08 01:49:22 -0800,2631,8017 -11709,384,2013-11-11 06:53:14 -0800,2631,8017 -11710,8050,2013-11-10 20:21:18 -0800,2631,8018 -11711,9213,2013-11-12 06:34:31 -0800,2631,8017 -11712,4332,2013-11-10 09:27:02 -0800,2631,8018 -11713,430,2013-11-09 08:51:37 -0800,2631,8018 -11714,8265,2013-11-12 01:10:24 -0800,2631,8018 -11715,469,2013-11-09 08:52:32 -0800,2632,8019 -11716,9485,2013-11-12 05:13:07 -0800,2632,8020 -11717,9272,2013-11-10 08:09:28 -0800,2632,8019 -11718,1755,2013-11-11 14:19:57 -0800,2632,8020 -11719,6944,2013-11-08 14:08:20 -0800,2632,8021 -11720,3368,2013-11-11 22:10:05 -0800,2632,8019 -11721,1776,2013-11-06 17:48:24 -0800,2633,8022 -11722,4539,2013-11-12 18:50:41 -0800,2633,8022 -11723,5737,2013-11-10 07:19:50 -0800,2633,8022 -11724,9616,2013-11-09 07:58:55 -0800,2633,8022 -11725,1177,2013-11-07 01:09:53 -0800,2633,8022 -11726,6583,2013-11-13 06:53:39 -0800,2633,8022 -11727,4090,2013-11-06 20:47:58 -0800,2633,8022 -11728,1788,2013-11-10 20:27:45 -0800,2633,8022 -11729,7584,2013-11-12 05:16:32 -0800,2633,8022 -11730,1132,2013-11-09 09:23:18 -0800,2634,8027 -11731,6100,2013-11-07 05:32:03 -0800,2634,8026 -11732,8783,2013-11-06 15:08:28 -0800,2634,8027 -11733,7897,2013-11-11 06:24:49 -0800,2634,8027 -11734,8118,2013-11-10 06:34:46 -0800,2635,8028 -11735,4789,2013-11-07 06:29:19 -0800,2635,8028 -11736,2455,2013-11-12 13:05:29 -0800,2635,8028 -11737,9219,2013-11-12 02:15:14 -0800,2635,8028 -11738,9120,2013-11-12 00:19:25 -0800,2635,8028 -11739,5926,2013-11-07 09:27:31 -0800,2635,8028 -11740,1793,2013-11-12 07:52:56 -0800,2635,8028 -11741,7529,2013-11-07 02:40:35 -0800,2635,8028 -11742,317,2013-11-10 03:24:53 -0800,2636,8029 -11743,4378,2013-11-07 14:09:43 -0800,2636,8029 -11744,2263,2013-11-07 21:11:10 -0800,2636,8029 -11745,3770,2013-11-08 02:39:16 -0800,2636,8029 -11746,8255,2013-11-11 07:24:00 -0800,2636,8029 -11747,3729,2013-11-08 13:33:43 -0800,2636,8029 -11748,7091,2013-11-12 11:00:52 -0800,2637,8030 -11749,1242,2013-11-06 20:29:24 -0800,2637,8030 -11750,543,2013-11-10 13:23:49 -0800,2637,8032 -11751,5656,2013-11-10 07:01:38 -0800,2637,8032 -11752,3485,2013-11-11 05:31:53 -0800,2637,8033 -11753,2711,2013-11-07 02:12:46 -0800,2637,8032 -11754,4648,2013-11-07 07:56:58 -0800,2637,8032 -11755,7719,2013-11-09 18:37:55 -0800,2637,8030 -11756,297,2013-11-11 21:39:24 -0800,2637,8033 -11757,3220,2013-11-07 00:41:16 -0800,2638,8038 -11758,1278,2013-11-07 01:53:22 -0800,2638,8037 -11759,1240,2013-11-09 17:36:02 -0800,2638,8038 -11760,5634,2013-11-06 11:47:44 -0800,2638,8035 -11761,9274,2013-11-10 20:37:15 -0800,2638,8037 -11762,6364,2013-11-10 23:02:14 -0800,2638,8034 -11763,9664,2013-11-11 13:35:02 -0800,2638,8035 -11764,3338,2013-11-08 18:42:45 -0800,2640,8041 -11765,6021,2013-11-07 23:27:33 -0800,2640,8041 -11766,4631,2013-11-12 01:25:21 -0800,2640,8041 -11767,3888,2013-11-08 22:21:14 -0800,2640,8041 -11768,9328,2013-11-08 22:39:16 -0800,2640,8041 -11769,9562,2013-11-06 22:00:40 -0800,2640,8041 -11770,3875,2013-11-11 04:33:43 -0800,2642,8045 -11771,5693,2013-11-09 14:31:21 -0800,2642,8045 -11772,9195,2013-11-10 23:11:32 -0800,2642,8044 -11773,1332,2013-11-07 09:09:58 -0800,2642,8044 -11774,4119,2013-11-07 10:10:25 -0800,2642,8045 -11775,1454,2013-11-10 11:54:13 -0800,2642,8044 -11776,4475,2013-11-09 10:26:01 -0800,2642,8043 -11777,1854,2013-11-11 02:36:58 -0800,2643,8047 -11778,3365,2013-11-08 23:01:27 -0800,2643,8049 -11779,742,2013-11-12 00:11:45 -0800,2643,8050 -11780,3122,2013-11-10 07:48:48 -0800,2644,8052 -11781,6550,2013-11-07 11:16:30 -0800,2644,8051 -11782,6513,2013-11-12 23:46:04 -0800,2644,8053 -11783,9422,2013-11-07 13:07:52 -0800,2644,8055 -11784,1667,2013-11-11 23:42:16 -0800,2645,8056 -11785,7075,2013-11-11 03:15:09 -0800,2645,8056 -11786,8843,2013-11-12 02:19:57 -0800,2645,8057 -11787,725,2013-11-10 15:37:38 -0800,2645,8057 -11788,5091,2013-11-11 10:08:06 -0800,2646,8060 -11789,6353,2013-11-08 03:32:02 -0800,2646,8059 -11790,6189,2013-11-07 03:47:14 -0800,2646,8058 -11791,3081,2013-11-11 20:57:30 -0800,2646,8060 -11792,2592,2013-11-07 00:56:50 -0800,2646,8058 -11793,231,2013-11-12 20:40:03 -0800,2646,8059 -11794,3385,2013-11-12 20:43:56 -0800,2647,8061 -11795,8030,2013-11-08 13:40:06 -0800,2647,8061 -11796,5540,2013-11-06 16:01:02 -0800,2647,8062 -11797,5566,2013-11-10 03:27:56 -0800,2647,8062 -11798,3695,2013-11-06 16:34:33 -0800,2647,8061 -11799,8039,2013-11-10 15:24:41 -0800,2647,8061 -11800,2767,2013-11-12 05:15:23 -0800,2648,8065 -11801,5945,2013-11-08 06:46:55 -0800,2648,8063 -11802,1710,2013-11-07 16:13:54 -0800,2648,8066 -11803,3831,2013-11-07 20:27:30 -0800,2648,8063 -11804,44,2013-11-07 16:03:18 -0800,2648,8065 -11805,2550,2013-11-08 01:21:35 -0800,2648,8065 -11806,9867,2013-11-09 00:43:09 -0800,2648,8066 -11807,6823,2013-11-11 02:07:15 -0800,2648,8067 -11808,3250,2013-11-07 22:22:12 -0800,2648,8065 -11809,9148,2013-11-12 01:17:15 -0800,2649,8070 -11810,6543,2013-11-07 17:41:44 -0800,2649,8070 -11811,32,2013-11-07 18:27:42 -0800,2649,8068 -11812,8314,2013-11-07 22:19:41 -0800,2649,8068 -11813,2464,2013-11-09 21:31:53 -0800,2649,8068 -11814,4237,2013-11-11 17:13:49 -0800,2649,8068 -11815,6553,2013-11-06 16:08:42 -0800,2649,8068 -11816,3159,2013-11-09 01:26:39 -0800,2650,8073 -11817,3954,2013-11-12 22:22:07 -0800,2650,8071 -11818,7392,2013-11-12 05:44:33 -0800,2650,8071 -11819,2446,2013-11-11 01:06:14 -0800,2650,8075 -11820,9544,2013-11-13 06:46:57 -0800,2650,8075 -11821,4665,2013-11-11 13:50:52 -0800,2650,8072 -11822,5260,2013-11-09 01:07:05 -0800,2650,8074 -11823,3842,2013-11-08 22:09:24 -0800,2651,8076 -11824,6634,2013-11-08 11:01:36 -0800,2651,8076 -11825,3219,2013-11-07 18:24:23 -0800,2651,8076 -11826,8664,2013-11-09 20:47:56 -0800,2652,8078 -11827,6918,2013-11-13 06:13:09 -0800,2652,8078 -11828,2851,2013-11-08 14:21:20 -0800,2652,8077 -11829,3970,2013-11-09 19:24:16 -0800,2652,8078 -11830,8869,2013-11-07 11:01:18 -0800,2652,8078 -11831,6866,2013-11-09 06:04:45 -0800,2652,8077 -11832,5650,2013-11-08 01:03:49 -0800,2653,8080 -11833,4511,2013-11-09 20:54:15 -0800,2653,8079 -11834,7068,2013-11-07 02:02:19 -0800,2654,8082 -11835,4195,2013-11-12 11:57:40 -0800,2654,8084 -11836,7481,2013-11-13 06:25:36 -0800,2654,8081 -11837,4556,2013-11-09 21:19:02 -0800,2654,8084 -11838,549,2013-11-08 20:23:12 -0800,2654,8082 -11839,1425,2013-11-07 17:40:07 -0800,2655,8085 -11840,5394,2013-11-11 11:41:55 -0800,2655,8086 -11841,2650,2013-11-11 01:42:56 -0800,2655,8086 -11842,5369,2013-11-09 15:04:37 -0800,2655,8086 -11843,1486,2013-11-10 02:02:30 -0800,2655,8086 -11844,8162,2013-11-08 09:34:54 -0800,2655,8086 -11845,1169,2013-11-06 22:21:47 -0800,2655,8086 -11846,2122,2013-11-07 18:23:21 -0800,2655,8085 -11847,8450,2013-11-07 11:19:08 -0800,2655,8086 -11848,5054,2013-11-10 20:25:11 -0800,2656,8087 -11849,5249,2013-11-11 21:03:36 -0800,2656,8087 -11850,2926,2013-11-09 02:03:14 -0800,2656,8089 -11851,248,2013-11-12 14:09:24 -0800,2656,8087 -11852,6045,2013-11-07 13:56:02 -0800,2656,8089 -11853,811,2013-11-11 07:24:09 -0800,2656,8087 -11854,118,2013-11-11 08:32:03 -0800,2656,8087 -11855,3996,2013-11-07 00:30:04 -0800,2657,8090 -11856,896,2013-11-10 05:02:35 -0800,2657,8091 -11857,6013,2013-11-11 05:33:28 -0800,2657,8091 -11858,1378,2013-11-06 08:47:12 -0800,2657,8090 -11859,8888,2013-11-07 10:10:19 -0800,2657,8091 -11860,2575,2013-11-11 09:14:43 -0800,2657,8091 -11861,1778,2013-11-07 22:35:56 -0800,2657,8090 -11862,1563,2013-11-08 06:32:28 -0800,2657,8091 -11863,4940,2013-11-07 15:41:39 -0800,2657,8091 -11864,3050,2013-11-10 02:24:34 -0800,2658,8092 -11865,772,2013-11-11 19:56:01 -0800,2658,8092 -11866,9578,2013-11-11 11:13:50 -0800,2658,8092 -11867,5797,2013-11-10 13:29:47 -0800,2658,8092 -11868,7145,2013-11-06 17:18:51 -0800,2658,8092 -11869,4987,2013-11-07 20:10:16 -0800,2658,8092 -11870,8250,2013-11-07 16:55:33 -0800,2658,8092 -11871,222,2013-11-13 05:35:37 -0800,2658,8092 -11872,56,2013-11-08 19:15:30 -0800,2658,8092 -11873,1384,2013-11-12 06:12:43 -0800,2659,8093 -11874,4891,2013-11-06 10:01:56 -0800,2660,8097 -11875,1620,2013-11-09 04:25:48 -0800,2660,8097 -11876,9285,2013-11-10 08:26:30 -0800,2660,8098 -11877,5343,2013-11-11 14:16:02 -0800,2660,8097 -11878,6396,2013-11-07 08:07:28 -0800,2660,8099 -11879,9430,2013-11-08 10:59:03 -0800,2660,8096 -11880,7840,2013-11-08 13:12:10 -0800,2660,8099 -11881,9290,2013-11-09 12:51:17 -0800,2661,8100 -11882,4932,2013-11-13 02:18:18 -0800,2661,8102 -11883,3697,2013-11-12 21:41:53 -0800,2662,8103 -11884,9268,2013-11-06 22:15:38 -0800,2662,8103 -11885,1227,2013-11-12 07:10:44 -0800,2663,8106 -11886,1360,2013-11-13 08:28:41 -0800,2663,8104 -11887,4480,2013-11-11 16:54:20 -0800,2663,8105 -11888,7328,2013-11-10 15:00:47 -0800,2665,8113 -11889,1392,2013-11-11 09:53:25 -0800,2666,8117 -11890,1469,2013-11-12 17:12:58 -0800,2666,8117 -11891,543,2013-11-07 23:15:36 -0800,2667,8118 -11892,3264,2013-11-11 23:19:37 -0800,2667,8120 -11893,5581,2013-11-08 04:13:21 -0800,2667,8118 -11894,3023,2013-11-07 13:15:45 -0800,2667,8119 -11895,7923,2013-11-07 10:56:06 -0800,2667,8120 -11896,4064,2013-11-10 01:50:53 -0800,2667,8119 -11897,4112,2013-11-09 13:34:50 -0800,2668,8122 -11898,7089,2013-11-08 05:46:25 -0800,2669,8126 -11899,1836,2013-11-12 19:10:54 -0800,2669,8124 -11900,741,2013-11-06 16:53:01 -0800,2669,8125 -11901,6512,2013-11-08 09:49:46 -0800,2669,8126 -11902,6374,2013-11-10 05:43:46 -0800,2669,8124 -11903,9636,2013-11-08 16:34:29 -0800,2669,8124 -11904,275,2013-11-09 15:34:47 -0800,2669,8128 -11905,7934,2013-11-06 12:15:15 -0800,2670,8129 -11906,1426,2013-11-11 13:09:57 -0800,2670,8129 -11907,519,2013-11-12 00:43:13 -0800,2670,8129 -11908,7373,2013-11-07 14:36:11 -0800,2670,8129 -11909,56,2013-11-13 07:43:01 -0800,2670,8129 -11910,5930,2013-11-06 12:23:23 -0800,2670,8129 -11911,6323,2013-11-10 11:31:26 -0800,2670,8129 -11912,3684,2013-11-10 04:53:58 -0800,2670,8129 -11913,9894,2013-11-06 13:28:20 -0800,2670,8129 -11914,770,2013-11-06 20:29:41 -0800,2671,8130 -11915,942,2013-11-12 02:35:20 -0800,2671,8130 -11916,7937,2013-11-11 23:00:44 -0800,2671,8130 -11917,4470,2013-11-10 00:28:52 -0800,2672,8131 -11918,7875,2013-11-12 04:27:37 -0800,2672,8133 -11919,9718,2013-11-08 14:38:10 -0800,2672,8133 -11920,9777,2013-11-07 07:39:53 -0800,2672,8131 -11921,4035,2013-11-08 09:35:18 -0800,2672,8131 -11922,8279,2013-11-11 01:43:26 -0800,2672,8131 -11923,5582,2013-11-09 22:17:00 -0800,2672,8131 -11924,9500,2013-11-08 23:27:26 -0800,2672,8133 -11925,7247,2013-11-07 22:13:03 -0800,2673,8136 -11926,7243,2013-11-10 19:06:28 -0800,2673,8136 -11927,1398,2013-11-06 17:54:43 -0800,2673,8136 -11928,1976,2013-11-10 17:24:07 -0800,2673,8136 -11929,5817,2013-11-10 11:21:27 -0800,2673,8136 -11930,3384,2013-11-08 22:12:28 -0800,2673,8136 -11931,4470,2013-11-08 11:28:38 -0800,2673,8135 -11932,6177,2013-11-06 09:07:01 -0800,2674,8139 -11933,3997,2013-11-10 00:03:27 -0800,2675,8140 -11934,6728,2013-11-12 11:53:45 -0800,2676,8144 -11935,8954,2013-11-11 14:12:01 -0800,2676,8144 -11936,7361,2013-11-13 04:34:12 -0800,2676,8141 -11937,7378,2013-11-08 07:16:40 -0800,2676,8141 -11938,2947,2013-11-08 04:40:26 -0800,2676,8144 -11939,2496,2013-11-08 15:31:50 -0800,2676,8142 -11940,1294,2013-11-10 09:53:25 -0800,2677,8146 -11941,413,2013-11-10 19:32:03 -0800,2677,8146 -11942,4310,2013-11-07 13:18:22 -0800,2677,8147 -11943,1584,2013-11-12 23:34:25 -0800,2677,8145 -11944,8685,2013-11-11 17:57:41 -0800,2677,8145 -11945,180,2013-11-10 00:28:13 -0800,2678,8150 -11946,8353,2013-11-13 06:13:18 -0800,2679,8153 -11947,6839,2013-11-10 13:43:11 -0800,2679,8153 -11948,6880,2013-11-07 07:23:07 -0800,2680,8157 -11949,2656,2013-11-08 12:27:51 -0800,2680,8159 -11950,7190,2013-11-11 19:42:35 -0800,2680,8156 -11951,1721,2013-11-09 00:06:52 -0800,2680,8157 -11952,9419,2013-11-07 01:37:32 -0800,2680,8157 -11953,3794,2013-11-13 08:25:54 -0800,2680,8157 -11954,199,2013-11-08 02:47:13 -0800,2680,8158 -11955,2535,2013-11-06 09:09:42 -0800,2680,8159 -11956,4833,2013-11-06 23:48:02 -0800,2680,8158 -11957,8998,2013-11-13 06:14:39 -0800,2681,8161 -11958,4260,2013-11-11 01:25:50 -0800,2681,8161 -11959,2455,2013-11-12 00:45:32 -0800,2683,8168 -11960,3071,2013-11-12 22:24:14 -0800,2683,8169 -11961,3954,2013-11-06 22:48:31 -0800,2683,8167 -11962,1670,2013-11-10 05:03:29 -0800,2683,8169 -11963,2225,2013-11-13 06:04:38 -0800,2683,8166 -11964,3690,2013-11-10 20:19:07 -0800,2683,8167 -11965,3198,2013-11-11 01:00:13 -0800,2683,8166 -11966,419,2013-11-07 05:43:52 -0800,2683,8168 -11967,5050,2013-11-10 14:37:12 -0800,2683,8166 -11968,8031,2013-11-10 14:55:02 -0800,2684,8170 -11969,8660,2013-11-08 04:21:34 -0800,2684,8171 -11970,9264,2013-11-11 19:01:38 -0800,2684,8171 -11971,3219,2013-11-11 11:24:08 -0800,2684,8171 -11972,153,2013-11-09 15:39:01 -0800,2684,8170 -11973,1669,2013-11-10 13:21:30 -0800,2684,8170 -11974,4231,2013-11-11 13:01:15 -0800,2684,8170 -11975,4950,2013-11-13 06:57:56 -0800,2684,8170 -11976,6028,2013-11-08 08:08:48 -0800,2684,8170 -11977,7338,2013-11-10 11:23:50 -0800,2685,8174 -11978,3815,2013-11-07 07:05:19 -0800,2685,8173 -11979,2836,2013-11-09 05:05:59 -0800,2685,8173 -11980,8951,2013-11-06 11:26:20 -0800,2686,8178 -11981,7994,2013-11-08 08:51:59 -0800,2686,8177 -11982,7718,2013-11-10 05:49:56 -0800,2686,8178 -11983,3000,2013-11-13 03:35:12 -0800,2686,8177 -11984,5200,2013-11-09 23:40:52 -0800,2686,8178 -11985,1816,2013-11-12 01:42:43 -0800,2686,8177 -11986,2362,2013-11-07 10:27:04 -0800,2687,8179 -11987,6113,2013-11-07 17:34:42 -0800,2687,8179 -11988,5419,2013-11-09 21:26:23 -0800,2687,8179 -11989,4751,2013-11-10 05:09:12 -0800,2687,8179 -11990,6291,2013-11-11 23:38:50 -0800,2687,8179 -11991,7440,2013-11-12 17:10:16 -0800,2687,8179 -11992,7050,2013-11-12 04:36:22 -0800,2687,8179 -11993,5127,2013-11-09 09:45:19 -0800,2688,8182 -11994,222,2013-11-12 22:36:46 -0800,2688,8182 -11995,6321,2013-11-13 07:35:49 -0800,2688,8181 -11996,5139,2013-11-11 02:53:07 -0800,2688,8182 -11997,3184,2013-11-07 04:00:22 -0800,2688,8180 -11998,1572,2013-11-12 03:15:52 -0800,2688,8180 -11999,3793,2013-11-08 00:39:35 -0800,2689,8188 -12000,7773,2013-11-10 12:15:19 -0800,2690,8193 -12001,8923,2013-11-10 15:22:35 -0800,2690,8192 -00,2538,2013-11-08 19:38:09 -0800,, -11206,6256.0,2013-11-13 03:09:41 -0800,2538,7733 -11207,2744.0,2013-11-12 03:31:22 -0800,2538,7732 -11208,6667.0,2013-11-09 00:35:43 -0800,2538,7732 -11209,2915.0,2013-11-11 02:51:21 -0800,2538,7732 -11210,1129.0,2013-11-12 17:47:48 -0800,2538,7732 -11211,8957.0,2013-11-08 16:32:24 -0800,2538,7732 -11212,4124.0,2013-11-08 07:22:06 -0800,2538,7732 -11213,8367.0,2013-11-09 14:30:23 -0800,2538,7732 -11214,5767.0,2013-11-12 07:00:31 -0800,2539,7735 -11215,6823.999999999999,2013-11-07 18:09:49 -0800,2539,7736 -11216,6515.000000000001,2013-11-09 08:56:58 -0800,2539,7736 -11217,321.0,2013-11-06 12:42:25 -0800,2539,7735 -11218,745.0,2013-11-12 06:48:48 -0800,2539,7734 -11219,4192.0,2013-11-11 08:56:45 -0800,2540,7738 -11220,1648.9999999999998,2013-11-10 01:30:05 -0800,2540,7738 -11221,5148.0,2013-11-10 12:17:08 -0800,2540,7737 -11222,9515.0,2013-11-12 00:48:02 -0800,2540,7737 -11223,6584.0,2013-11-10 00:35:17 -0800,2540,7738 -11224,3075.0,2013-11-09 06:32:13 -0800,2540,7737 -11225,8084.0,2013-11-08 18:58:06 -0800,2540,7738 -11226,9266.0,2013-11-12 12:26:06 -0800,2541,7740 -11227,6422.0,2013-11-09 02:16:03 -0800,2541,7739 -11228,3010.0,2013-11-08 14:33:03 -0800,2541,7739 -11229,1789.9999999999998,2013-11-09 11:23:48 -0800,2541,7740 -11230,5510.0,2013-11-07 21:40:02 -0800,2541,7741 -11231,9172.0,2013-11-08 01:43:45 -0800,2541,7740 -11232,30.0,2013-11-07 11:27:02 -0800,2542,7744 -11233,7273.999999999999,2013-11-10 01:38:44 -0800,2542,7743 -11234,5725.0,2013-11-09 06:37:00 -0800,2542,7746 -11235,8162.0,2013-11-12 07:23:43 -0800,2542,7745 -11236,9822.0,2013-11-11 01:06:11 -0800,2542,7743 -11237,1196.0,2013-11-06 11:38:14 -0800,2542,7743 -11238,4313.0,2013-11-11 12:29:03 -0800,2542,7746 -11239,4270.0,2013-11-08 18:53:47 -0800,2543,7747 -11240,1720.0,2013-11-11 19:21:33 -0800,2543,7749 -11241,8031.0,2013-11-06 20:00:07 -0800,2543,7748 -11242,1994.0000000000002,2013-11-06 22:56:23 -0800,2543,7751 -11243,1469.0,2013-11-09 21:17:09 -0800,2544,7752 -11244,8677.0,2013-11-07 13:29:51 -0800,2544,7755 -11245,8291.0,2013-11-12 00:04:21 -0800,2544,7755 -11246,3052.0,2013-11-08 21:34:17 -0800,2544,7752 -11247,9213.0,2013-11-08 14:11:11 -0800,2544,7753 -11248,4663.0,2013-11-07 12:35:45 -0800,2544,7754 -11249,811.0,2013-11-10 23:29:08 -0800,2544,7752 -11250,9068.0,2013-11-10 11:37:48 -0800,2544,7754 -11251,2081.0,2013-11-11 08:36:30 -0800,2544,7754 -11252,7383.0,2013-11-07 02:11:00 -0800,2545,7759 -11253,6473.0,2013-11-12 23:53:51 -0800,2545,7757 -11254,1945.0,2013-11-11 17:08:14 -0800,2545,7758 -11255,894.0,2013-11-07 20:42:59 -0800,2545,7756 -11256,2228.0,2013-11-07 08:15:25 -0800,2545,7759 -11257,4129.0,2013-11-09 00:39:40 -0800,2545,7758 -11258,1494.0,2013-11-10 02:36:30 -0800,2545,7758 -11259,8247.0,2013-11-09 18:16:42 -0800,2546,7760 -11260,2629.0,2013-11-09 17:24:20 -0800,2546,7760 -11261,17.0,2013-11-06 19:25:42 -0800,2546,7760 -11262,1932.9999999999998,2013-11-11 22:25:47 -0800,2546,7760 -11263,8780.0,2013-11-11 06:35:33 -0800,2546,7760 -11264,3425.0,2013-11-13 07:17:47 -0800,2546,7760 -11265,5115.0,2013-11-07 18:27:16 -0800,2547,7763 -11266,7141.0,2013-11-10 02:53:58 -0800,2547,7762 -11267,2250.0,2013-11-13 03:29:21 -0800,2547,7761 -11268,4136.0,2013-11-12 06:49:12 -0800,2547,7765 -11269,6351.0,2013-11-13 02:03:16 -0800,2548,7767 -11270,7964.0,2013-11-06 13:32:30 -0800,2548,7766 -11271,5026.0,2013-11-08 23:15:33 -0800,2548,7766 -11272,6425.0,2013-11-08 19:34:02 -0800,2548,7766 -11273,3600.0,2013-11-10 05:27:22 -0800,2548,7766 -11274,4323.0,2013-11-08 07:04:31 -0800,2548,7767 -11275,4638.0,2013-11-08 19:44:48 -0800,2548,7767 -11276,1272.0,2013-11-09 03:54:09 -0800,2548,7766 -11277,1844.0000000000002,2013-11-11 12:19:23 -0800,2548,7767 -11278,5130.0,2013-11-12 22:21:36 -0800,2549,7768 -11279,2310.0,2013-11-09 02:29:46 -0800,2549,7768 -11280,6887.0,2013-11-12 08:39:41 -0800,2549,7768 -11281,480.99999999999994,2013-11-06 23:34:51 -0800,2549,7768 -11282,8080.0,2013-11-13 03:20:02 -0800,2549,7768 -11283,9041.0,2013-11-06 22:44:25 -0800,2549,7768 -11284,9890.0,2013-11-11 02:22:40 -0800,2550,7771 -11285,5430.0,2013-11-12 16:11:04 -0800,2550,7769 -11286,3115.0,2013-11-07 00:50:11 -0800,2550,7771 -11287,6333.0,2013-11-12 03:16:05 -0800,2551,7773 -11288,7716.0,2013-11-09 02:52:15 -0800,2551,7773 -11289,5593.0,2013-11-09 04:16:52 -0800,2551,7774 -11290,5941.0,2013-11-07 01:32:05 -0800,2551,7774 -11291,1661.0,2013-11-09 12:54:42 -0800,2551,7776 -11292,526.0,2013-11-10 12:53:13 -0800,2551,7774 -11293,6555.0,2013-11-13 07:19:46 -0800,2552,7780 -11294,8340.0,2013-11-12 20:42:25 -0800,2552,7780 -11295,2486.0,2013-11-11 06:28:44 -0800,2552,7778 -11296,3677.0000000000005,2013-11-10 01:56:34 -0800,2552,7778 -11297,749.0,2013-11-11 10:59:44 -0800,2552,7777 -11298,1841.0,2013-11-07 01:29:18 -0800,2552,7778 -11299,5589.0,2013-11-09 13:54:52 -0800,2552,7778 -11300,533.0,2013-11-11 23:14:10 -0800,2552,7778 -11301,3060.0,2013-11-09 13:47:16 -0800,2552,7777 -11302,8268.0,2013-11-10 14:44:18 -0800,2553,7782 -11303,9845.0,2013-11-09 15:18:14 -0800,2553,7782 -11304,9361.0,2013-11-13 03:02:36 -0800,2553,7782 -11305,5220.0,2013-11-12 20:05:27 -0800,2554,7787 -11306,5210.0,2013-11-12 14:18:53 -0800,2554,7788 -11307,3356.0,2013-11-08 18:37:51 -0800,2554,7786 -11308,9333.0,2013-11-06 17:23:52 -0800,2554,7790 -11309,8279.0,2013-11-08 23:42:30 -0800,2554,7790 -11310,2160.0,2013-11-12 03:40:49 -0800,2554,7786 -11311,4314.0,2013-11-08 09:01:55 -0800,2554,7787 -11312,3486.0,2013-11-11 02:15:30 -0800,2554,7790 -11313,1457.0,2013-11-09 06:52:34 -0800,2554,7790 -11314,3361.0,2013-11-07 12:12:58 -0800,2555,7791 -11315,9657.0,2013-11-08 05:57:16 -0800,2555,7791 -11316,983.0,2013-11-06 10:43:12 -0800,2555,7791 -11317,1922.0,2013-11-08 19:18:07 -0800,2555,7791 -11318,4238.0,2013-11-10 19:55:54 -0800,2555,7791 -11319,1011.9999999999999,2013-11-09 16:54:25 -0800,2555,7791 -11320,9658.0,2013-11-09 04:21:44 -0800,2555,7791 -11321,7311.0,2013-11-12 10:19:57 -0800,2555,7791 -11322,2668.0,2013-11-08 21:59:29 -0800,2555,7791 -11323,3957.0,2013-11-11 09:49:01 -0800,2556,7792 -11324,3800.0,2013-11-07 11:56:25 -0800,2556,7792 -11325,4797.0,2013-11-10 13:47:28 -0800,2556,7792 -11326,7684.0,2013-11-09 21:50:45 -0800,2556,7792 -11327,8935.0,2013-11-13 01:04:39 -0800,2556,7792 -11328,713.0,2013-11-07 14:05:28 -0800,2556,7792 -11329,9243.0,2013-11-12 20:27:51 -0800,2557,7794 -11330,3229.0,2013-11-09 03:06:07 -0800,2557,7794 -11331,6823.999999999999,2013-11-07 07:22:12 -0800,2557,7793 -11332,4579.0,2013-11-08 03:04:53 -0800,2557,7793 -11333,6062.0,2013-11-07 08:23:07 -0800,2557,7796 -11334,6650.0,2013-11-07 09:41:32 -0800,2557,7795 -11335,2470.0,2013-11-09 15:54:33 -0800,2557,7794 -11336,9061.0,2013-11-06 13:48:32 -0800,2557,7794 -11337,6158.0,2013-11-07 23:47:38 -0800,2557,7795 -11338,7092.0,2013-11-10 12:48:43 -0800,2558,7797 -11339,7991.0,2013-11-12 19:48:46 -0800,2558,7797 -11340,2094.0,2013-11-11 14:29:28 -0800,2559,7802 -11341,112.99999999999999,2013-11-07 15:25:47 -0800,2559,7801 -11342,2774.0,2013-11-07 17:46:24 -0800,2559,7801 -11343,2220.0,2013-11-13 00:18:46 -0800,2559,7799 -11344,1478.0,2013-11-09 21:07:54 -0800,2559,7800 -11345,2227.0,2013-11-08 15:45:47 -0800,2559,7799 -11346,2020.0,2013-11-10 16:40:02 -0800,2559,7800 -11347,614.0,2013-11-07 00:17:26 -0800,2559,7801 -11348,2070.0,2013-11-08 14:28:31 -0800,2559,7801 -11349,7058.0,2013-11-07 22:57:55 -0800,2560,7803 -11350,9067.0,2013-11-12 04:02:20 -0800,2560,7803 -11351,5549.0,2013-11-13 04:20:50 -0800,2561,7805 -11352,9189.0,2013-11-11 02:59:51 -0800,2561,7804 -11353,2648.0,2013-11-11 14:48:33 -0800,2561,7806 -11354,7423.0,2013-11-13 03:41:36 -0800,2561,7806 -11355,918.0,2013-11-06 09:58:47 -0800,2561,7805 -11356,8424.0,2013-11-10 22:51:05 -0800,2561,7805 -11357,5662.0,2013-11-12 14:18:36 -0800,2561,7804 -11358,5084.0,2013-11-06 15:45:08 -0800,2561,7806 -11359,8861.0,2013-11-11 09:14:30 -0800,2561,7805 -11360,2350.0,2013-11-12 21:29:27 -0800,2562,7807 -11361,1739.9999999999998,2013-11-08 18:24:50 -0800,2562,7807 -11362,5888.0,2013-11-10 21:14:44 -0800,2562,7807 -11363,8811.0,2013-11-07 18:05:24 -0800,2562,7807 -11364,1967.0000000000002,2013-11-09 09:18:15 -0800,2562,7807 -11365,9055.0,2013-11-11 09:18:53 -0800,2562,7807 -11366,2491.0,2013-11-12 02:11:44 -0800,2562,7807 -11367,8451.0,2013-11-12 13:08:28 -0800,2562,7807 -11368,4169.0,2013-11-12 13:13:18 -0800,2562,7807 -11369,2032.0,2013-11-07 16:00:24 -0800,2563,7809 -11370,4615.0,2013-11-08 04:31:14 -0800,2563,7811 -11371,2475.0,2013-11-06 08:56:56 -0800,2563,7808 -11372,6071.0,2013-11-12 08:50:23 -0800,2563,7808 -11373,6477.0,2013-11-09 17:18:54 -0800,2563,7811 -11374,9779.0,2013-11-08 16:57:07 -0800,2563,7811 -11375,7955.0,2013-11-11 21:04:35 -0800,2563,7809 -11376,4050.0,2013-11-11 07:53:33 -0800,2564,7814 -11377,5234.0,2013-11-12 15:32:12 -0800,2564,7814 -11378,5090.0,2013-11-06 12:31:20 -0800,2564,7813 -11379,2375.0,2013-11-12 03:43:12 -0800,2564,7812 -11380,64.0,2013-11-08 20:51:27 -0800,2564,7813 -11381,7327.0,2013-11-13 02:09:44 -0800,2566,7818 -11382,6639.0,2013-11-08 05:56:33 -0800,2566,7818 -11383,4250.0,2013-11-10 02:21:28 -0800,2566,7818 -11384,2800.0,2013-11-07 22:26:36 -0800,2566,7819 -11385,670.0,2013-11-09 23:11:21 -0800,2566,7821 -11386,8683.0,2013-11-11 04:51:19 -0800,2568,7828 -11387,509.99999999999994,2013-11-07 18:16:38 -0800,2568,7827 -11388,661.0,2013-11-12 20:33:35 -0800,2568,7828 -11389,8880.0,2013-11-13 02:53:46 -0800,2568,7827 -11390,6756.999999999999,2013-11-11 08:53:38 -0800,2568,7827 -11391,7195.999999999999,2013-11-08 18:32:33 -0800,2568,7827 -11392,7788.0,2013-11-09 01:08:04 -0800,2569,7829 -11393,8298.0,2013-11-07 17:51:39 -0800,2569,7829 -11394,3799.0,2013-11-06 22:49:40 -0800,2569,7831 -11395,1636.0,2013-11-08 01:52:13 -0800,2569,7829 -11396,9152.0,2013-11-13 02:48:07 -0800,2569,7829 -11397,1340.0,2013-11-13 02:53:11 -0800,2570,7833 -11398,2620.0,2013-11-12 18:39:46 -0800,2570,7835 -11399,2676.0,2013-11-10 22:40:07 -0800,2570,7832 -11400,268.0,2013-11-12 07:57:27 -0800,2570,7832 -11401,9854.0,2013-11-12 10:37:57 -0800,2571,7836 -11402,8847.0,2013-11-10 09:04:37 -0800,2571,7836 -11403,6934.0,2013-11-11 02:55:03 -0800,2571,7836 -11404,2647.0,2013-11-10 10:15:24 -0800,2572,7839 -11405,4938.0,2013-11-06 19:26:21 -0800,2572,7840 -11406,3110.0,2013-11-09 10:25:59 -0800,2572,7838 -11407,2976.0,2013-11-08 20:23:46 -0800,2572,7837 -11408,3415.0,2013-11-10 08:52:00 -0800,2572,7838 -11409,700.0,2013-11-10 21:45:55 -0800,2572,7839 -11410,710.0,2013-11-06 20:47:45 -0800,2573,7842 -11411,4726.0,2013-11-11 12:41:12 -0800,2574,7845 -11412,3084.0,2013-11-08 02:08:14 -0800,2574,7847 -11413,6445.0,2013-11-08 01:48:56 -0800,2575,7848 -11414,7556.0,2013-11-07 03:48:12 -0800,2575,7848 -11415,6736.0,2013-11-06 19:25:57 -0800,2575,7848 -11416,6190.0,2013-11-07 08:43:05 -0800,2575,7848 -11417,8871.0,2013-11-11 17:10:08 -0800,2575,7848 -11418,3560.0,2013-11-08 09:34:24 -0800,2575,7848 -11419,4865.0,2013-11-06 22:29:30 -0800,2575,7848 -11420,7397.0,2013-11-13 00:09:39 -0800,2575,7848 -11421,7638.0,2013-11-12 21:00:31 -0800,2575,7848 -11422,1920.0,2013-11-10 18:45:02 -0800,2576,7851 -11423,5561.0,2013-11-09 02:11:52 -0800,2576,7851 -11424,8428.0,2013-11-08 02:55:10 -0800,2576,7851 -11425,6716.0,2013-11-10 16:31:19 -0800,2576,7850 -11426,6343.0,2013-11-10 19:11:02 -0800,2576,7849 -11427,3149.0,2013-11-11 10:20:13 -0800,2576,7850 -11428,5046.0,2013-11-08 10:21:16 -0800,2577,7853 -11429,4221.0,2013-11-09 22:05:37 -0800,2577,7852 -11430,2080.0,2013-11-07 14:02:47 -0800,2578,7859 -11431,8354.0,2013-11-13 06:14:06 -0800,2578,7857 -11432,2225.0,2013-11-12 09:46:21 -0800,2578,7855 -11433,1696.0,2013-11-09 00:56:28 -0800,2578,7855 -11434,2393.0,2013-11-08 16:06:49 -0800,2579,7862 -11435,9186.0,2013-11-06 13:07:12 -0800,2579,7863 -11436,498.00000000000006,2013-11-09 00:09:27 -0800,2579,7863 -11437,293.0,2013-11-07 10:37:48 -0800,2579,7860 -11438,5367.0,2013-11-10 03:16:18 -0800,2579,7862 -11439,1225.0,2013-11-06 11:21:09 -0800,2579,7862 -11440,3163.0,2013-11-11 23:26:22 -0800,2579,7862 -11441,4744.0,2013-11-11 18:03:14 -0800,2579,7861 -11442,4389.0,2013-11-09 02:07:51 -0800,2580,7864 -11443,8581.0,2013-11-08 12:10:33 -0800,2580,7864 -11444,8233.0,2013-11-09 14:26:41 -0800,2580,7864 -11445,3531.0,2013-11-08 20:41:50 -0800,2580,7864 -11446,6978.0,2013-11-09 05:15:41 -0800,2580,7864 -11447,5873.0,2013-11-08 18:52:53 -0800,2580,7864 -11448,190.0,2013-11-10 08:23:01 -0800,2581,7867 -11449,4547.0,2013-11-06 08:54:46 -0800,2581,7867 -11450,7947.0,2013-11-11 01:38:37 -0800,2581,7867 -11451,7990.000000000001,2013-11-08 01:07:28 -0800,2581,7866 -11452,789.0,2013-11-06 12:00:02 -0800,2581,7869 -11453,3869.0,2013-11-07 17:40:21 -0800,2582,7870 -11454,1226.0,2013-11-09 12:30:12 -0800,2582,7870 -11455,6840.000000000001,2013-11-09 21:37:19 -0800,2582,7871 -11456,3038.0,2013-11-10 01:43:07 -0800,2582,7871 -11457,9332.0,2013-11-09 18:47:18 -0800,2582,7871 -11458,6020.0,2013-11-11 07:09:08 -0800,2583,7872 -11459,7718.000000000001,2013-11-06 21:01:20 -0800,2583,7873 -11460,2684.0,2013-11-07 03:03:44 -0800,2583,7872 -11461,7554.000000000001,2013-11-11 14:13:53 -0800,2583,7873 -11462,5789.0,2013-11-11 19:04:53 -0800,2583,7873 -11463,8857.0,2013-11-06 16:20:30 -0800,2583,7873 -11464,4376.0,2013-11-13 02:45:23 -0800,2583,7873 -11465,777.0,2013-11-07 19:35:30 -0800,2583,7873 -11466,7840.000000000001,2013-11-13 03:28:34 -0800,2583,7872 -11467,5422.0,2013-11-07 08:25:40 -0800,2584,7874 -11468,4138.0,2013-11-09 02:23:21 -0800,2584,7877 -11469,2146.0,2013-11-11 03:38:08 -0800,2584,7874 -11470,3661.0,2013-11-12 22:36:07 -0800,2584,7876 -11471,5030.0,2013-11-08 14:51:16 -0800,2584,7876 -11472,8183.0,2013-11-12 06:18:52 -0800,2584,7874 -11473,1241.0,2013-11-12 11:02:27 -0800,2585,7878 -11474,273.0,2013-11-10 10:51:44 -0800,2585,7879 -11475,5784.0,2013-11-10 14:39:04 -0800,2585,7879 -11476,1937.0,2013-11-10 06:40:27 -0800,2585,7879 -11477,3611.9999999999995,2013-11-08 04:11:35 -0800,2585,7880 -11478,5536.0,2013-11-12 03:17:07 -0800,2585,7880 -11479,3534.0000000000005,2013-11-07 21:27:42 -0800,2585,7879 -11480,6372.0,2013-11-12 21:58:41 -0800,2586,7882 -11481,7192.0,2013-11-13 02:27:16 -0800,2587,7887 -11482,8217.0,2013-11-12 03:16:14 -0800,2587,7886 -11483,2678.0,2013-11-07 14:08:57 -0800,2587,7887 -11484,7948.999999999999,2013-11-09 09:55:19 -0800,2587,7888 -11485,7651.000000000001,2013-11-08 12:35:20 -0800,2587,7886 -11486,7028.0,2013-11-08 15:50:19 -0800,2587,7888 -11487,1786.0,2013-11-10 11:21:36 -0800,2587,7886 -11488,2227.0,2013-11-13 01:14:44 -0800,2587,7887 -11489,1299.0,2013-11-08 22:59:26 -0800,2587,7888 -11490,8788.0,2013-11-10 22:34:55 -0800,2588,7889 -11491,5217.0,2013-11-06 17:31:47 -0800,2588,7891 -11492,8683.0,2013-11-12 09:31:45 -0800,2588,7891 -11493,9352.0,2013-11-06 21:03:47 -0800,2588,7890 -11494,7066.0,2013-11-08 05:46:37 -0800,2588,7891 -11495,8276.0,2013-11-13 01:27:48 -0800,2590,7895 -11496,5979.0,2013-11-11 18:14:32 -0800,2590,7895 -11497,3421.0,2013-11-12 06:51:34 -0800,2590,7895 -11498,2472.0,2013-11-09 08:46:04 -0800,2590,7896 -11499,8298.0,2013-11-10 03:04:56 -0800,2590,7895 -11500,9784.0,2013-11-07 11:57:07 -0800,2590,7895 -11501,7873.999999999999,2013-11-12 10:27:19 -0800,2590,7895 -11502,8744.0,2013-11-07 12:22:33 -0800,2590,7895 -11503,6890.000000000001,2013-11-08 17:59:49 -0800,2590,7896 -11504,1273.0,2013-11-07 00:48:43 -0800,2591,7898 -11505,5948.0,2013-11-11 08:33:43 -0800,2591,7901 -11506,4953.0,2013-11-10 19:00:21 -0800,2591,7901 -11507,4190.0,2013-11-12 15:25:08 -0800,2591,7897 -11508,9135.0,2013-11-11 14:26:13 -0800,2592,7902 -11509,5714.0,2013-11-10 23:58:39 -0800,2592,7902 -11510,369.0,2013-11-11 18:44:46 -0800,2592,7902 -11511,9164.0,2013-11-11 13:01:55 -0800,2592,7902 -11512,3185.0,2013-11-06 12:11:22 -0800,2592,7902 -11513,4776.0,2013-11-12 00:11:57 -0800,2592,7902 -11514,811.9999999999999,2013-11-12 06:11:26 -0800,2592,7902 -11515,9470.0,2013-11-06 16:04:48 -0800,2592,7902 -11516,7948.999999999999,2013-11-08 04:44:34 -0800,2592,7902 -11517,6368.0,2013-11-11 13:39:45 -0800,2593,7903 -11518,6296.0,2013-11-11 14:53:23 -0800,2593,7906 -11519,6297.0,2013-11-09 18:58:13 -0800,2593,7906 -11520,4581.0,2013-11-12 23:42:28 -0800,2593,7904 -11521,1796.0,2013-11-07 12:08:23 -0800,2594,7909 -11522,7816.0,2013-11-12 11:43:06 -0800,2594,7909 -11523,6980.0,2013-11-08 15:46:59 -0800,2594,7909 -11524,2544.0,2013-11-12 07:31:28 -0800,2594,7908 -11525,9163.0,2013-11-06 15:55:47 -0800,2594,7908 -11526,788.0,2013-11-13 00:06:39 -0800,2594,7908 -11527,6222.0,2013-11-11 02:47:10 -0800,2594,7907 -11528,9766.0,2013-11-06 16:50:15 -0800,2594,7908 -11529,3059.0,2013-11-11 06:43:57 -0800,2595,7911 -11530,5558.0,2013-11-06 09:49:15 -0800,2595,7911 -11531,1889.9999999999998,2013-11-11 12:51:36 -0800,2596,7916 -11532,4740.0,2013-11-08 03:47:23 -0800,2596,7914 -11533,4568.0,2013-11-07 18:35:59 -0800,2596,7913 -11534,4146.0,2013-11-11 02:27:51 -0800,2596,7912 -11535,5397.0,2013-11-08 21:41:40 -0800,2596,7913 -11536,5819.0,2013-11-11 03:08:55 -0800,2597,7917 -11537,1638.0,2013-11-11 12:14:00 -0800,2597,7917 -11538,7877.0,2013-11-10 03:10:11 -0800,2597,7917 -11539,7990.000000000001,2013-11-10 17:55:05 -0800,2597,7918 -11540,1067.0,2013-11-07 13:05:56 -0800,2597,7917 -11541,8648.0,2013-11-10 11:55:39 -0800,2597,7917 -11542,1160.0,2013-11-07 00:20:56 -0800,2598,7921 -11543,6664.0,2013-11-12 19:43:28 -0800,2598,7921 -11544,1224.0,2013-11-08 06:26:53 -0800,2598,7921 -11545,5881.0,2013-11-11 23:53:20 -0800,2598,7921 -11546,7279.000000000001,2013-11-09 19:13:52 -0800,2599,7922 -11547,8421.0,2013-11-10 12:28:59 -0800,2599,7922 -11548,9833.0,2013-11-07 07:43:19 -0800,2599,7922 -11549,4766.0,2013-11-08 08:22:10 -0800,2599,7922 -11550,651.0,2013-11-10 19:12:04 -0800,2599,7924 -11551,2461.0,2013-11-09 14:05:49 -0800,2599,7923 -11552,650.0,2013-11-10 22:00:51 -0800,2599,7924 -11553,3700.0,2013-11-07 12:07:22 -0800,2600,7926 -11554,266.0,2013-11-06 18:31:17 -0800,2600,7927 -11555,499.0,2013-11-06 11:00:25 -0800,2600,7926 -11556,5082.0,2013-11-07 00:07:00 -0800,2600,7927 -11557,8221.0,2013-11-10 14:58:09 -0800,2600,7927 -11558,4766.0,2013-11-09 00:53:20 -0800,2600,7927 -11559,5431.0,2013-11-08 11:06:21 -0800,2600,7926 -11560,3582.0,2013-11-12 18:26:36 -0800,2600,7926 -11561,1033.0,2013-11-12 18:52:17 -0800,2601,7928 -11562,8452.0,2013-11-11 05:58:31 -0800,2601,7928 -11563,8462.0,2013-11-10 02:21:09 -0800,2601,7928 -11564,5754.0,2013-11-08 19:08:58 -0800,2601,7928 -11565,8897.0,2013-11-12 01:38:01 -0800,2601,7928 -11566,8087.0,2013-11-11 15:03:18 -0800,2601,7928 -11567,7286.0,2013-11-13 07:20:59 -0800,2601,7928 -11568,4290.0,2013-11-09 08:46:07 -0800,2601,7928 -11569,950.0,2013-11-08 07:45:15 -0800,2601,7928 -11570,9481.0,2013-11-06 08:58:49 -0800,2602,7930 -11571,3497.9999999999995,2013-11-09 09:46:10 -0800,2602,7929 -11572,2511.0,2013-11-13 06:46:54 -0800,2602,7930 -11573,7690.000000000001,2013-11-13 03:43:02 -0800,2602,7929 -11574,3149.0,2013-11-08 20:01:33 -0800,2604,7934 -11575,1610.0000000000002,2013-11-11 16:47:21 -0800,2604,7934 -11576,8692.0,2013-11-09 17:06:49 -0800,2604,7934 -11577,3577.0000000000005,2013-11-11 13:38:50 -0800,2605,7938 -11578,9777.0,2013-11-08 02:36:22 -0800,2605,7936 -11579,7064.0,2013-11-07 13:35:52 -0800,2605,7937 -11580,2090.0,2013-11-10 07:26:11 -0800,2606,7943 -11581,3635.0,2013-11-10 09:25:45 -0800,2606,7943 -11582,7726.000000000001,2013-11-13 06:43:29 -0800,2606,7940 -11583,6989.0,2013-11-10 09:23:15 -0800,2606,7941 -11584,5744.0,2013-11-11 05:00:05 -0800,2606,7942 -11585,179.0,2013-11-10 17:34:52 -0800,2607,7946 -11586,328.0,2013-11-10 14:25:28 -0800,2607,7944 -11587,4627.0,2013-11-08 17:14:09 -0800,2607,7944 -11588,4279.0,2013-11-11 07:12:12 -0800,2607,7945 -11589,5834.0,2013-11-08 20:22:46 -0800,2607,7944 -11590,3482.0,2013-11-09 16:04:32 -0800,2607,7945 -11591,570.0,2013-11-11 12:40:28 -0800,2607,7944 -11592,3365.9999999999995,2013-11-12 14:26:21 -0800,2608,7948 -11593,30.0,2013-11-09 02:34:21 -0800,2608,7947 -11594,6994.0,2013-11-06 09:14:03 -0800,2608,7948 -11595,5298.0,2013-11-08 04:52:26 -0800,2608,7947 -11596,9655.0,2013-11-09 16:54:30 -0800,2610,7954 -11597,5626.0,2013-11-09 13:59:37 -0800,2610,7957 -11598,592.0,2013-11-08 16:46:57 -0800,2610,7954 -11599,7073.999999999999,2013-11-11 01:22:31 -0800,2611,7959 -11600,2198.0,2013-11-07 17:46:06 -0800,2611,7960 -11601,434.99999999999994,2013-11-11 04:04:20 -0800,2611,7960 -11602,5364.0,2013-11-10 21:58:10 -0800,2611,7961 -11603,550.0,2013-11-12 04:12:31 -0800,2611,7960 -11604,4811.0,2013-11-07 20:26:45 -0800,2611,7961 -11605,5162.0,2013-11-10 12:21:10 -0800,2611,7959 -11606,4110.0,2013-11-07 02:02:07 -0800,2611,7959 -11607,2540.0,2013-11-10 23:56:17 -0800,2612,7962 -11608,4240.0,2013-11-08 12:15:03 -0800,2612,7963 -11609,1360.0,2013-11-07 05:52:17 -0800,2612,7962 -11610,2872.0,2013-11-13 02:53:34 -0800,2612,7963 -11611,5083.0,2013-11-10 11:36:30 -0800,2612,7963 -11612,2862.0,2013-11-10 01:51:40 -0800,2612,7963 -11613,1739.9999999999998,2013-11-09 17:12:16 -0800,2613,7964 -11614,1040.0,2013-11-06 23:42:46 -0800,2613,7965 -11615,5912.0,2013-11-07 11:07:27 -0800,2613,7964 -11616,988.0000000000001,2013-11-11 21:50:24 -0800,2613,7965 -11617,4341.0,2013-11-07 06:37:36 -0800,2613,7965 -11618,4297.0,2013-11-07 21:50:45 -0800,2613,7964 -11619,279.0,2013-11-12 19:50:38 -0800,2613,7965 -11620,2983.0,2013-11-09 01:25:08 -0800,2613,7965 -11621,6567.0,2013-11-10 02:39:51 -0800,2614,7969 -11622,1061.0,2013-11-11 16:47:04 -0800,2614,7968 -11623,5636.0,2013-11-07 09:42:08 -0800,2614,7968 -11624,3799.0,2013-11-13 05:38:18 -0800,2614,7969 -11625,3974.0,2013-11-08 11:44:09 -0800,2614,7970 -11626,1515.0,2013-11-06 13:18:57 -0800,2614,7967 -11627,4134.0,2013-11-07 13:46:52 -0800,2615,7971 -11628,4581.0,2013-11-11 15:50:54 -0800,2615,7971 -11629,1197.0,2013-11-12 22:22:54 -0800,2615,7971 -11630,9540.0,2013-11-08 05:02:14 -0800,2615,7971 -11631,6842.0,2013-11-12 04:34:01 -0800,2615,7971 -11632,6062.0,2013-11-09 08:04:21 -0800,2616,7972 -11633,4899.0,2013-11-09 17:55:35 -0800,2616,7974 -11634,5183.0,2013-11-12 08:51:25 -0800,2617,7976 -11635,5178.0,2013-11-08 04:32:04 -0800,2617,7976 -11636,5180.0,2013-11-12 16:32:34 -0800,2617,7976 -11637,5938.0,2013-11-08 21:26:39 -0800,2617,7976 -11638,6598.999999999999,2013-11-12 20:57:46 -0800,2618,7978 -11639,1943.0,2013-11-12 11:54:31 -0800,2618,7978 -11640,8490.0,2013-11-10 16:49:45 -0800,2618,7980 -11641,8935.0,2013-11-08 14:28:10 -0800,2618,7979 -11642,941.0,2013-11-11 03:46:22 -0800,2618,7978 -11643,1766.0,2013-11-06 14:21:43 -0800,2618,7977 -11644,8386.0,2013-11-10 09:24:57 -0800,2618,7979 -11645,6181.0,2013-11-09 17:58:04 -0800,2618,7980 -11646,6959.999999999999,2013-11-09 10:59:32 -0800,2618,7978 -11647,5860.0,2013-11-12 12:32:28 -0800,2619,7981 -11648,9469.0,2013-11-06 11:22:31 -0800,2619,7981 -11649,5691.0,2013-11-09 22:00:10 -0800,2619,7981 -11650,9527.0,2013-11-08 22:08:09 -0800,2619,7981 -11651,3258.0,2013-11-10 11:23:40 -0800,2619,7981 -11652,725.0,2013-11-09 03:07:34 -0800,2619,7981 -11653,3196.0,2013-11-10 03:49:27 -0800,2619,7981 -11654,8670.0,2013-11-12 07:55:39 -0800,2619,7981 -11655,3153.0,2013-11-08 14:14:17 -0800,2619,7981 -11656,2225.0,2013-11-12 00:31:27 -0800,2620,7983 -11657,7388.0,2013-11-07 02:48:13 -0800,2620,7985 -11658,6913.0,2013-11-13 03:01:34 -0800,2620,7982 -11659,5891.0,2013-11-09 18:35:18 -0800,2620,7984 -11660,3459.0000000000005,2013-11-11 21:53:08 -0800,2620,7983 -11661,8370.0,2013-11-11 05:35:18 -0800,2620,7985 -11662,3959.0000000000005,2013-11-12 15:07:03 -0800,2620,7983 -11663,1789.9999999999998,2013-11-06 16:05:27 -0800,2620,7985 -11664,9155.0,2013-11-10 06:05:41 -0800,2622,7992 -11665,3484.0000000000005,2013-11-08 03:50:48 -0800,2622,7992 -11666,5893.0,2013-11-09 21:59:32 -0800,2622,7991 -11667,9786.0,2013-11-09 14:06:01 -0800,2622,7991 -11668,3351.0,2013-11-12 22:38:43 -0800,2623,7997 -11669,6274.0,2013-11-11 16:07:37 -0800,2623,7996 -11670,5946.0,2013-11-06 13:54:54 -0800,2623,7995 -11671,5410.0,2013-11-08 21:21:46 -0800,2623,7996 -11672,2256.0,2013-11-07 06:04:08 -0800,2623,7994 -11673,1283.0,2013-11-09 19:58:54 -0800,2623,7994 -11674,3175.0,2013-11-10 14:14:04 -0800,2623,7997 -11675,3210.0,2013-11-07 08:51:38 -0800,2623,7995 -11676,4580.0,2013-11-12 08:23:09 -0800,2623,7997 -11677,7809.999999999999,2013-11-08 16:43:01 -0800,2624,7998 -11678,238.0,2013-11-08 15:20:34 -0800,2624,7998 -11679,9055.0,2013-11-12 06:11:08 -0800,2624,7999 -11680,1485.0,2013-11-08 16:24:59 -0800,2624,7999 -11681,571.0,2013-11-11 18:27:51 -0800,2624,8000 -11682,4116.0,2013-11-06 20:03:44 -0800,2624,7999 -11683,3489.0,2013-11-09 23:41:48 -0800,2624,8000 -11684,8783.0,2013-11-13 04:39:48 -0800,2625,8001 -11685,5198.0,2013-11-07 23:19:32 -0800,2626,8003 -11686,4934.0,2013-11-11 12:55:55 -0800,2626,8004 -11687,840.0,2013-11-08 06:41:46 -0800,2626,8002 -11688,8778.0,2013-11-11 18:47:59 -0800,2627,8009 -11689,6244.0,2013-11-12 10:10:05 -0800,2627,8009 -11690,2340.0,2013-11-08 18:40:59 -0800,2627,8009 -11691,2172.0,2013-11-06 17:46:58 -0800,2627,8009 -11692,5190.0,2013-11-09 04:13:22 -0800,2627,8006 -11693,9220.0,2013-11-08 16:43:21 -0800,2628,8010 -11694,6467.0,2013-11-08 19:40:48 -0800,2628,8010 -11695,2644.0,2013-11-09 17:10:23 -0800,2628,8010 -11696,4141.0,2013-11-12 11:34:33 -0800,2628,8012 -11697,2593.0,2013-11-09 10:33:04 -0800,2628,8011 -11698,3127.0,2013-11-12 11:10:37 -0800,2629,8015 -11699,2782.0,2013-11-08 19:10:23 -0800,2629,8015 -11700,3119.0,2013-11-12 22:01:04 -0800,2629,8013 -11701,6540.000000000001,2013-11-08 10:26:17 -0800,2629,8014 -11702,3934.0000000000005,2013-11-08 14:19:00 -0800,2629,8015 -11703,6127.0,2013-11-12 21:22:02 -0800,2629,8015 -11704,7737.0,2013-11-07 15:15:03 -0800,2630,8016 -11705,4560.0,2013-11-11 11:45:42 -0800,2630,8016 -11706,5183.0,2013-11-06 11:40:59 -0800,2631,8017 -11707,3411.9999999999995,2013-11-07 13:57:41 -0800,2631,8017 -11708,9645.0,2013-11-13 02:25:44 -0800,2631,8017 -11709,384.0,2013-11-10 12:03:02 -0800,2631,8017 -11710,8050.0,2013-11-13 00:31:05 -0800,2631,8018 -11711,9213.0,2013-11-11 06:52:59 -0800,2631,8017 -11712,4332.0,2013-11-08 05:26:07 -0800,2631,8018 -11713,430.0,2013-11-07 20:13:01 -0800,2631,8018 -11714,8265.0,2013-11-13 02:17:03 -0800,2631,8018 -11715,469.00000000000006,2013-11-08 06:55:36 -0800,2632,8019 -11716,9485.0,2013-11-08 19:07:10 -0800,2632,8020 -11717,9272.0,2013-11-12 19:52:35 -0800,2632,8019 -11718,1755.0,2013-11-10 18:06:07 -0800,2632,8020 -11719,6944.0,2013-11-08 04:35:27 -0800,2632,8021 -11720,3368.0,2013-11-09 14:40:30 -0800,2632,8019 -11721,1776.0000000000002,2013-11-10 06:00:42 -0800,2633,8022 -11722,4539.0,2013-11-08 07:54:56 -0800,2633,8022 -11723,5737.0,2013-11-10 19:43:13 -0800,2633,8022 -11724,9616.0,2013-11-06 13:20:25 -0800,2633,8022 -11725,1177.0,2013-11-08 03:39:07 -0800,2633,8022 -11726,6583.0,2013-11-08 03:53:32 -0800,2633,8022 -11727,4090.9999999999995,2013-11-11 20:39:36 -0800,2633,8022 -11728,1788.0,2013-11-09 05:51:05 -0800,2633,8022 -11729,7584.0,2013-11-07 01:24:08 -0800,2633,8022 -11730,1132.0,2013-11-06 18:04:49 -0800,2634,8027 -11731,6100.0,2013-11-08 07:43:09 -0800,2634,8026 -11732,8783.0,2013-11-06 19:28:45 -0800,2634,8027 -11733,7897.0,2013-11-06 10:20:13 -0800,2634,8027 -11734,8118.000000000001,2013-11-09 10:40:20 -0800,2635,8028 -11735,4789.0,2013-11-09 09:40:18 -0800,2635,8028 -11736,2455.0,2013-11-10 21:58:50 -0800,2635,8028 -11737,9219.0,2013-11-13 01:50:10 -0800,2635,8028 -11738,9120.0,2013-11-09 18:17:40 -0800,2635,8028 -11739,5926.0,2013-11-12 23:46:48 -0800,2635,8028 -11740,1793.0,2013-11-09 10:00:56 -0800,2635,8028 -11741,7529.000000000001,2013-11-10 21:48:32 -0800,2635,8028 -11742,317.0,2013-11-06 09:53:01 -0800,2636,8029 -11743,4378.0,2013-11-08 16:34:41 -0800,2636,8029 -11744,2263.0,2013-11-06 14:08:47 -0800,2636,8029 -11745,3770.0000000000005,2013-11-06 17:58:27 -0800,2636,8029 -11746,8255.0,2013-11-08 23:20:39 -0800,2636,8029 -11747,3729.9999999999995,2013-11-13 06:23:23 -0800,2636,8029 -11748,7091.0,2013-11-11 00:15:59 -0800,2637,8030 -11749,1242.0,2013-11-07 07:07:26 -0800,2637,8030 -11750,543.0,2013-11-08 07:19:18 -0800,2637,8032 -11751,5656.0,2013-11-11 21:12:35 -0800,2637,8032 -11752,3485.0,2013-11-09 13:43:47 -0800,2637,8033 -11753,2711.0,2013-11-09 00:23:06 -0800,2637,8032 -11754,4648.0,2013-11-12 21:02:36 -0800,2637,8032 -11755,7719.0,2013-11-11 18:57:36 -0800,2637,8030 -11756,297.0,2013-11-12 21:55:19 -0800,2637,8033 -11757,3220.0000000000005,2013-11-06 09:48:58 -0800,2638,8038 -11758,1278.0,2013-11-11 07:03:25 -0800,2638,8037 -11759,1240.0,2013-11-10 00:21:59 -0800,2638,8038 -11760,5634.0,2013-11-10 01:26:00 -0800,2638,8035 -11761,9274.0,2013-11-13 00:29:47 -0800,2638,8037 -11762,6364.0,2013-11-08 21:54:14 -0800,2638,8034 -11763,9664.0,2013-11-11 23:03:37 -0800,2638,8035 -11764,3338.0000000000005,2013-11-06 17:22:16 -0800,2640,8041 -11765,6021.0,2013-11-11 02:13:29 -0800,2640,8041 -11766,4631.0,2013-11-08 03:13:33 -0800,2640,8041 -11767,3888.0000000000005,2013-11-11 21:14:35 -0800,2640,8041 -11768,9328.0,2013-11-09 09:38:57 -0800,2640,8041 -11769,9562.0,2013-11-11 21:03:07 -0800,2640,8041 -11770,3875.0,2013-11-11 16:47:40 -0800,2642,8045 -11771,5693.0,2013-11-11 01:13:42 -0800,2642,8045 -11772,9195.0,2013-11-08 04:40:34 -0800,2642,8044 -11773,1332.0,2013-11-11 11:50:27 -0800,2642,8044 -11774,4119.0,2013-11-09 09:22:42 -0800,2642,8045 -11775,1454.0,2013-11-07 10:43:26 -0800,2642,8044 -11776,4475.0,2013-11-12 08:59:56 -0800,2642,8043 -11777,1854.0,2013-11-12 09:41:30 -0800,2643,8047 -11778,3365.0,2013-11-09 00:17:50 -0800,2643,8049 -11779,742.0,2013-11-09 05:34:16 -0800,2643,8050 -11780,3122.0,2013-11-11 20:24:54 -0800,2644,8052 -11781,6550.0,2013-11-11 09:10:13 -0800,2644,8051 -11782,6513.0,2013-11-10 02:04:57 -0800,2644,8053 -11783,9422.0,2013-11-06 13:25:56 -0800,2644,8055 -11784,1667.0000000000002,2013-11-10 07:56:13 -0800,2645,8056 -11785,7075.0,2013-11-12 07:20:14 -0800,2645,8056 -11786,8843.0,2013-11-08 08:41:30 -0800,2645,8057 -11787,725.0,2013-11-12 05:12:34 -0800,2645,8057 -11788,5091.0,2013-11-11 13:25:35 -0800,2646,8060 -11789,6353.0,2013-11-07 20:33:02 -0800,2646,8059 -11790,6189.0,2013-11-10 11:03:59 -0800,2646,8058 -11791,3081.0,2013-11-12 21:57:07 -0800,2646,8060 -11792,2592.0,2013-11-10 05:21:28 -0800,2646,8058 -11793,231.99999999999997,2013-11-10 06:06:35 -0800,2646,8059 -11794,3385.0,2013-11-10 02:58:07 -0800,2647,8061 -11795,8030.0,2013-11-07 06:05:58 -0800,2647,8061 -11796,5540.0,2013-11-13 05:04:24 -0800,2647,8062 -11797,5566.0,2013-11-08 20:16:17 -0800,2647,8062 -11798,3695.0000000000005,2013-11-09 08:26:18 -0800,2647,8061 -11799,8039.0,2013-11-12 18:37:28 -0800,2647,8061 -11800,2767.0,2013-11-08 19:39:54 -0800,2648,8065 -11801,5945.0,2013-11-13 06:00:16 -0800,2648,8063 -11802,1710.0000000000002,2013-11-09 12:57:15 -0800,2648,8066 -11803,3831.0,2013-11-12 00:01:30 -0800,2648,8063 -11804,44.0,2013-11-07 22:43:21 -0800,2648,8065 -11805,2550.0,2013-11-11 13:37:28 -0800,2648,8065 -11806,9867.0,2013-11-09 19:05:28 -0800,2648,8066 -11807,6823.999999999999,2013-11-12 10:55:26 -0800,2648,8067 -11808,3250.0,2013-11-12 21:14:44 -0800,2648,8065 -11809,9148.0,2013-11-06 20:44:45 -0800,2649,8070 -11810,6543.000000000001,2013-11-10 20:45:58 -0800,2649,8070 -11811,32.0,2013-11-07 00:44:27 -0800,2649,8068 -11812,8314.0,2013-11-07 04:07:22 -0800,2649,8068 -11813,2464.0,2013-11-11 10:03:33 -0800,2649,8068 -11814,4237.0,2013-11-12 16:25:29 -0800,2649,8068 -11815,6553.0,2013-11-11 21:11:09 -0800,2649,8068 -11816,3159.0,2013-11-13 07:40:42 -0800,2650,8073 -11817,3954.0,2013-11-12 11:57:52 -0800,2650,8071 -11818,7392.0,2013-11-06 18:55:29 -0800,2650,8071 -11819,2446.0,2013-11-09 09:34:27 -0800,2650,8075 -11820,9544.0,2013-11-08 16:35:20 -0800,2650,8075 -11821,4665.0,2013-11-10 05:00:34 -0800,2650,8072 -11822,5260.0,2013-11-08 05:14:32 -0800,2650,8074 -11823,3842.0,2013-11-06 23:34:09 -0800,2651,8076 -11824,6634.0,2013-11-10 10:20:50 -0800,2651,8076 -11825,3219.0,2013-11-08 22:59:44 -0800,2651,8076 -11826,8664.0,2013-11-06 18:34:24 -0800,2652,8078 -11827,6918.000000000001,2013-11-12 09:21:48 -0800,2652,8078 -11828,2851.0,2013-11-10 10:34:05 -0800,2652,8077 -11829,3970.0000000000005,2013-11-08 03:29:36 -0800,2652,8078 -11830,8869.0,2013-11-11 07:26:37 -0800,2652,8078 -11831,6866.0,2013-11-11 14:59:00 -0800,2652,8077 -11832,5650.0,2013-11-11 06:49:11 -0800,2653,8080 -11833,4511.0,2013-11-09 12:08:15 -0800,2653,8079 -11834,7068.000000000001,2013-11-12 06:27:48 -0800,2654,8082 -11835,4195.0,2013-11-09 09:04:50 -0800,2654,8084 -11836,7481.0,2013-11-09 10:54:47 -0800,2654,8081 -11837,4556.0,2013-11-06 20:09:08 -0800,2654,8084 -11838,549.0,2013-11-12 10:47:42 -0800,2654,8082 -11839,1425.0,2013-11-09 20:14:10 -0800,2655,8085 -11840,5394.0,2013-11-06 13:47:03 -0800,2655,8086 -11841,2650.0,2013-11-11 17:14:17 -0800,2655,8086 -11842,5369.0,2013-11-07 15:05:07 -0800,2655,8086 -11843,1486.0,2013-11-07 13:39:24 -0800,2655,8086 -11844,8162.0,2013-11-09 08:18:18 -0800,2655,8086 -11845,1169.0,2013-11-12 14:31:55 -0800,2655,8086 -11846,2122.0,2013-11-09 00:45:24 -0800,2655,8085 -11847,8450.0,2013-11-07 16:01:46 -0800,2655,8086 -11848,5054.0,2013-11-07 02:14:41 -0800,2656,8087 -11849,5249.0,2013-11-08 16:17:59 -0800,2656,8087 -11850,2926.0,2013-11-09 17:53:15 -0800,2656,8089 -11851,248.0,2013-11-11 16:50:53 -0800,2656,8087 -11852,6045.0,2013-11-13 07:01:02 -0800,2656,8089 -11853,811.0,2013-11-09 21:15:42 -0800,2656,8087 -11854,118.0,2013-11-10 03:51:00 -0800,2656,8087 -11855,3996.0,2013-11-11 05:47:17 -0800,2657,8090 -11856,896.0000000000001,2013-11-07 08:36:40 -0800,2657,8091 -11857,6013.0,2013-11-08 11:40:10 -0800,2657,8091 -11858,1378.0,2013-11-07 08:18:57 -0800,2657,8090 -11859,8888.0,2013-11-08 03:35:43 -0800,2657,8091 -11860,2575.0,2013-11-07 22:39:50 -0800,2657,8091 -11861,1778.0,2013-11-11 22:50:09 -0800,2657,8090 -11862,1563.0,2013-11-08 02:44:02 -0800,2657,8091 -11863,4940.0,2013-11-07 09:52:58 -0800,2657,8091 -11864,3050.0,2013-11-10 08:45:20 -0800,2658,8092 -11865,772.0,2013-11-12 04:11:18 -0800,2658,8092 -11866,9578.0,2013-11-09 04:30:37 -0800,2658,8092 -11867,5797.0,2013-11-10 20:50:51 -0800,2658,8092 -11868,7145.999999999999,2013-11-09 20:58:32 -0800,2658,8092 -11869,4987.0,2013-11-11 15:37:28 -0800,2658,8092 -11870,8250.0,2013-11-12 00:07:41 -0800,2658,8092 -11871,222.00000000000003,2013-11-12 20:47:51 -0800,2658,8092 -11872,56.00000000000001,2013-11-10 07:48:56 -0800,2658,8092 -11873,1384.0,2013-11-09 12:42:01 -0800,2659,8093 -11874,4891.0,2013-11-12 21:44:04 -0800,2660,8097 -11875,1620.0,2013-11-12 02:08:38 -0800,2660,8097 -11876,9285.0,2013-11-10 19:52:52 -0800,2660,8098 -11877,5343.0,2013-11-10 02:41:11 -0800,2660,8097 -11878,6396.0,2013-11-10 04:24:29 -0800,2660,8099 -11879,9430.0,2013-11-08 12:27:10 -0800,2660,8096 -11880,7840.000000000001,2013-11-07 12:16:56 -0800,2660,8099 -11881,9290.0,2013-11-12 18:06:13 -0800,2661,8100 -11882,4932.0,2013-11-13 01:43:03 -0800,2661,8102 -11883,3697.0,2013-11-09 19:40:31 -0800,2662,8103 -11884,9268.0,2013-11-10 02:17:52 -0800,2662,8103 -11885,1227.0,2013-11-12 14:39:51 -0800,2663,8106 -11886,1360.0,2013-11-13 05:40:10 -0800,2663,8104 -11887,4480.0,2013-11-10 13:49:56 -0800,2663,8105 -11888,7328.0,2013-11-12 02:22:44 -0800,2665,8113 -11889,1392.0,2013-11-11 15:24:28 -0800,2666,8117 -11890,1469.0,2013-11-12 07:58:33 -0800,2666,8117 -11891,543.0,2013-11-07 10:58:23 -0800,2667,8118 -11892,3264.0,2013-11-08 17:59:35 -0800,2667,8120 -11893,5581.0,2013-11-07 07:40:49 -0800,2667,8118 -11894,3023.0,2013-11-10 09:07:24 -0800,2667,8119 -11895,7923.999999999999,2013-11-08 14:56:29 -0800,2667,8120 -11896,4064.0,2013-11-12 01:00:40 -0800,2667,8119 -11897,4112.0,2013-11-07 12:33:10 -0800,2668,8122 -11898,7089.0,2013-11-12 01:04:51 -0800,2669,8126 -11899,1836.0,2013-11-08 09:28:37 -0800,2669,8124 -11900,741.0,2013-11-13 07:13:59 -0800,2669,8125 -11901,6512.0,2013-11-06 14:18:59 -0800,2669,8126 -11902,6374.0,2013-11-08 12:38:53 -0800,2669,8124 -11903,9636.0,2013-11-13 03:11:06 -0800,2669,8124 -11904,275.0,2013-11-12 20:50:32 -0800,2669,8128 -11905,7934.0,2013-11-11 18:56:01 -0800,2670,8129 -11906,1426.0,2013-11-09 21:12:11 -0800,2670,8129 -11907,519.0,2013-11-06 23:56:08 -0800,2670,8129 -11908,7373.0,2013-11-09 15:30:51 -0800,2670,8129 -11909,56.99999999999999,2013-11-07 10:49:25 -0800,2670,8129 -11910,5930.0,2013-11-11 18:11:17 -0800,2670,8129 -11911,6323.0,2013-11-09 17:18:25 -0800,2670,8129 -11912,3684.0000000000005,2013-11-07 14:31:39 -0800,2670,8129 -11913,9894.0,2013-11-07 16:20:35 -0800,2670,8129 -11914,770.0,2013-11-12 16:35:35 -0800,2671,8130 -11915,942.0,2013-11-06 10:15:34 -0800,2671,8130 -11916,7937.0,2013-11-07 07:51:13 -0800,2671,8130 -11917,4470.0,2013-11-10 21:29:05 -0800,2672,8131 -11918,7875.0,2013-11-11 10:37:22 -0800,2672,8133 -11919,9718.0,2013-11-07 07:39:14 -0800,2672,8133 -11920,9777.0,2013-11-12 21:11:52 -0800,2672,8131 -11921,4035.0,2013-11-07 18:18:00 -0800,2672,8131 -11922,8279.0,2013-11-08 01:46:03 -0800,2672,8131 -11923,5582.0,2013-11-07 23:13:02 -0800,2672,8131 -11924,9500.0,2013-11-07 08:19:25 -0800,2672,8133 -11925,7247.0,2013-11-09 23:28:12 -0800,2673,8136 -11926,7243.000000000001,2013-11-07 21:01:27 -0800,2673,8136 -11927,1398.0,2013-11-06 20:31:05 -0800,2673,8136 -11928,1976.0000000000002,2013-11-06 19:52:58 -0800,2673,8136 -11929,5817.0,2013-11-07 20:36:43 -0800,2673,8136 -11930,3384.0000000000005,2013-11-10 07:01:13 -0800,2673,8136 -11931,4470.0,2013-11-10 14:36:17 -0800,2673,8135 -11932,6177.0,2013-11-10 13:33:05 -0800,2674,8139 -11933,3997.9999999999995,2013-11-08 08:55:40 -0800,2675,8140 -11934,6728.0,2013-11-10 14:10:14 -0800,2676,8144 -11935,8954.0,2013-11-06 08:37:48 -0800,2676,8144 -11936,7361.0,2013-11-08 15:51:28 -0800,2676,8141 -11937,7378.0,2013-11-12 08:41:09 -0800,2676,8141 -11938,2947.0,2013-11-06 21:45:29 -0800,2676,8144 -11939,2496.0,2013-11-09 12:40:39 -0800,2676,8142 -11940,1294.0,2013-11-08 04:28:50 -0800,2677,8146 -11941,413.99999999999994,2013-11-09 18:54:08 -0800,2677,8146 -11942,4310.0,2013-11-07 00:52:44 -0800,2677,8147 -11943,1584.0,2013-11-08 23:56:22 -0800,2677,8145 -11944,8685.0,2013-11-07 00:53:55 -0800,2677,8145 -11945,180.0,2013-11-13 04:07:42 -0800,2678,8150 -11946,8353.0,2013-11-13 01:54:30 -0800,2679,8153 -11947,6839.0,2013-11-08 13:22:10 -0800,2679,8153 -11948,6880.0,2013-11-12 01:20:36 -0800,2680,8157 -11949,2656.0,2013-11-11 11:11:53 -0800,2680,8159 -11950,7190.000000000001,2013-11-09 06:56:49 -0800,2680,8156 -11951,1721.0,2013-11-07 00:05:57 -0800,2680,8157 -11952,9419.0,2013-11-10 20:33:33 -0800,2680,8157 -11953,3794.0,2013-11-10 12:57:44 -0800,2680,8157 -11954,199.0,2013-11-13 07:47:58 -0800,2680,8158 -11955,2535.0,2013-11-10 20:06:28 -0800,2680,8159 -11956,4833.0,2013-11-11 15:22:21 -0800,2680,8158 -11957,8998.0,2013-11-11 18:35:08 -0800,2681,8161 -11958,4260.0,2013-11-07 12:36:17 -0800,2681,8161 -11959,2455.0,2013-11-08 19:55:09 -0800,2683,8168 -11960,3071.0,2013-11-07 00:32:21 -0800,2683,8169 -11961,3954.9999999999995,2013-11-09 10:50:58 -0800,2683,8167 -11962,1670.0,2013-11-10 01:18:52 -0800,2683,8169 -11963,2225.0,2013-11-11 19:04:43 -0800,2683,8166 -11964,3690.0,2013-11-08 06:32:45 -0800,2683,8167 -11965,3198.0,2013-11-12 19:19:25 -0800,2683,8166 -11966,419.00000000000006,2013-11-09 20:35:48 -0800,2683,8168 -11967,5050.0,2013-11-10 19:26:51 -0800,2683,8166 -11968,8031.0,2013-11-09 11:25:11 -0800,2684,8170 -11969,8660.0,2013-11-12 02:33:57 -0800,2684,8171 -11970,9264.0,2013-11-13 03:48:40 -0800,2684,8171 -11971,3219.0,2013-11-10 23:32:55 -0800,2684,8171 -11972,153.0,2013-11-13 06:41:44 -0800,2684,8170 -11973,1669.0000000000002,2013-11-06 22:57:35 -0800,2684,8170 -11974,4231.0,2013-11-07 12:52:04 -0800,2684,8170 -11975,4950.0,2013-11-06 13:32:09 -0800,2684,8170 -11976,6028.0,2013-11-12 16:03:57 -0800,2684,8170 -11977,7338.0,2013-11-08 10:17:41 -0800,2685,8174 -11978,3815.9999999999995,2013-11-10 12:01:17 -0800,2685,8173 -11979,2836.0,2013-11-12 10:47:19 -0800,2685,8173 -11980,8951.0,2013-11-06 20:30:41 -0800,2686,8178 -11981,7994.0,2013-11-13 03:26:16 -0800,2686,8177 -11982,7718.000000000001,2013-11-08 16:46:07 -0800,2686,8178 -11983,3000.0,2013-11-09 11:57:46 -0800,2686,8177 -11984,5200.0,2013-11-07 02:05:10 -0800,2686,8178 -11985,1816.0,2013-11-08 19:06:17 -0800,2686,8177 -11986,2362.0,2013-11-11 09:59:17 -0800,2687,8179 -11987,6113.0,2013-11-07 14:41:55 -0800,2687,8179 -11988,5419.0,2013-11-13 05:44:27 -0800,2687,8179 -11989,4751.0,2013-11-09 14:50:31 -0800,2687,8179 -11990,6291.0,2013-11-12 10:45:52 -0800,2687,8179 -11991,7440.000000000001,2013-11-07 06:41:43 -0800,2687,8179 -11992,7050.0,2013-11-09 06:09:13 -0800,2687,8179 -11993,5127.0,2013-11-13 04:40:49 -0800,2688,8182 -11994,222.00000000000003,2013-11-07 18:21:32 -0800,2688,8182 -11995,6321.0,2013-11-10 07:40:43 -0800,2688,8181 -11996,5139.0,2013-11-11 12:03:31 -0800,2688,8182 -11997,3184.0,2013-11-11 11:44:40 -0800,2688,8180 -11998,1572.0,2013-11-12 22:23:49 -0800,2688,8180 -11999,3793.0,2013-11-10 00:44:52 -0800,2689,8188 -12000,7773.999999999999,2013-11-10 22:35:57 -0800,2690,8193 -12001,8923.0,2013-11-12 02:03:31 -0800,2690,8192 diff --git a/support/vendors.csv b/support/vendors.csv index 20075ff9..8b050725 100644 --- a/support/vendors.csv +++ b/support/vendors.csv @@ -814,1877 +814,3 @@ 814,Kuvalis Inc,3,150 815,Rolfson-Mertz,4,150 816,Schneider-Abbott,7,150 -817,Brakus-Willms,6,151 -818,Connelly Group,4,151 -819,Graham Inc,9,151 -820,Collier Inc,8,152 -821,Hackett-Osinski,7,152 -822,Bosco and Sons,7,152 -823,"Rohan, Barrows and Marvin",4,152 -824,Lang-Zulauf,7,152 -825,Klocko-O'Reilly,6,153 -826,Eichmann-Homenick,1,153 -827,Gutmann Group,6,153 -828,"Mills, Roberts and Corwin",3,153 -829,Padberg Group,8,154 -830,Kuhlman-Collins,7,154 -831,Moen-Strosin,9,154 -832,"Kutch, O'Reilly and Moen",3,154 -833,O'Connell Inc,2,154 -834,Schuppe LLC,4,154 -835,Murray Inc,9,154 -836,Becker-Kirlin,5,154 -837,Hilll-Terry,9,154 -838,Keebler-Kuphal,10,155 -839,"Rohan, Glover and Swaniawski",8,155 -840,Wehner Inc,2,155 -841,Hoppe LLC,5,155 -842,"Blanda, Reichel and West",10,155 -843,Medhurst and Sons,3,155 -844,Mills-Treutel,9,155 -845,Murphy Inc,5,155 -846,Okuneva-Tromp,2,155 -847,"Huel, Kihn and Farrell",4,156 -848,Johnston LLC,6,156 -849,Greenholt Group,6,156 -850,"Ziemann, O'Conner and Harber",1,157 -851,O'Keefe-Mayert,11,158 -852,Rempel Inc,1,159 -853,Walker LLC,1,159 -854,Rice LLC,2,159 -855,Mertz Inc,11,159 -856,Stamm Inc,5,159 -857,Homenick-Schoen,11,160 -858,"Crona, Jacobi and Streich",8,160 -859,Hintz LLC,11,160 -860,Jaskolski Inc,4,160 -861,"Veum, Waelchi and Fay",11,160 -862,Doyle Inc,3,160 -863,Stiedemann-Kuhic,1,160 -864,"Hackett, West and Goyette",6,160 -865,Satterfield-Von,5,160 -866,Turcotte-Auer,10,161 -867,Murazik-Schinner,5,161 -868,Mayert Inc,5,161 -869,Hyatt Group,8,161 -870,"Larson, McGlynn and Anderson",7,161 -871,"Abernathy, Lowe and Jaskolski",10,161 -872,Feil LLC,4,162 -873,"Rau, Strosin and Kling",2,162 -874,"Adams, Bashirian and Bartell",9,162 -875,Hane-Kilback,4,162 -876,Padberg and Sons,7,162 -877,"Yundt, Wilderman and Casper",11,163 -878,"Tremblay, Bergstrom and Zemlak",3,163 -879,Blanda-Hintz,1,163 -880,Cormier Group,3,163 -881,Schmitt Group,6,163 -882,"Hyatt, Blanda and Davis",3,163 -883,Bergnaum-Beier,2,164 -884,Bauch Inc,1,164 -885,"Dooley, Dickens and Nader",1,164 -886,"Lang, Johnston and Barrows",7,164 -887,Schimmel-Nader,6,164 -888,Hilpert-Langworth,8,165 -889,"Schulist, Goldner and Wilderman",2,165 -890,Dooley-Spinka,8,165 -891,Wisozk-Frami,8,166 -892,Crist-Dach,4,166 -893,Gleichner Inc,3,166 -894,"Cassin, Kemmer and Boyle",7,166 -895,Rosenbaum Inc,11,166 -896,Bode LLC,5,166 -897,"Bradtke, Howell and Lindgren",3,166 -898,Larson and Sons,6,166 -899,Cummings Group,1,167 -900,Keebler-Conroy,9,168 -901,"Streich, Altenwerth and Brown",10,168 -902,"Torphy, O'Hara and Daniel",2,168 -903,Douglas-Miller,8,168 -904,"Johns, Cummings and Hudson",9,168 -905,Skiles-Stoltenberg,7,169 -906,Stehr-Nienow,11,169 -907,Graham-Beer,3,169 -908,Schinner-Cummings,4,169 -909,VonRueden Inc,8,169 -910,"Muller, Jast and Hayes",3,169 -911,Becker-Kassulke,3,169 -912,"Cormier, Walter and Zulauf",10,169 -913,Eichmann LLC,11,170 -914,Wyman-Stamm,4,170 -915,Howell-Harvey,3,170 -916,"Schneider, Zieme and Rippin",9,170 -917,Heaney and Sons,10,170 -918,Brown Inc,10,170 -919,"King, Rohan and Bode",6,170 -920,Toy-Nitzsche,3,170 -921,McKenzie Inc,4,170 -922,Harvey and Sons,2,170 -923,"Hand, Boyer and Wunsch",7,171 -924,Hoeger-Schoen,5,171 -925,Graham-Bergnaum,2,171 -926,Douglas Group,10,171 -927,"Bradtke, Schowalter and O'Hara",10,171 -928,Ritchie-Feil,8,172 -929,Bosco Inc,3,173 -930,"Balistreri, Lind and Osinski",4,173 -931,Turner-Waelchi,7,173 -932,"Wyman, Wilderman and Terry",1,173 -933,Farrell-Bayer,6,173 -934,Kautzer Group,2,173 -935,Hills LLC,11,173 -936,Reinger-Price,10,173 -937,"Bosco, Schmeler and Schultz",3,173 -938,Sipes Group,5,174 -939,"Sawayn, Morissette and Bartoletti",11,174 -940,"Kulas, Ruecker and Bogisich",5,174 -941,"Kuhn, Schimmel and Ebert",11,174 -942,Kulas Inc,2,174 -943,Hudson-Wunsch,9,174 -944,"Spencer, Ondricka and Romaguera",6,174 -945,"Orn, Gusikowski and Reilly",7,174 -946,Abbott Inc,8,174 -947,Green-Daniel,4,175 -948,"Stiedemann, Miller and Hahn",2,175 -949,"Swaniawski, Jaskolski and Ullrich",1,175 -950,Ward-Marquardt,9,175 -951,Blanda and Sons,3,175 -952,Bosco LLC,5,175 -953,"Becker, Boyle and Langworth",7,176 -954,"Waelchi, Daniel and O'Hara",2,176 -955,McCullough Group,10,176 -956,Hoppe-Mayert,7,176 -957,Murazik LLC,7,176 -958,"Pagac, White and O'Kon",5,176 -959,Stoltenberg Group,7,176 -960,Larson-Dach,4,176 -961,Hintz Inc,4,176 -962,"Prosacco, Streich and Howe",1,177 -963,Bradtke Inc,7,177 -964,Hermiston Group,10,177 -965,"Stokes, Pollich and Klocko",11,177 -966,"Schuster, Marquardt and D'Amore",5,177 -967,Grant Inc,8,177 -968,"Heller, Reinger and Hartmann",1,177 -969,MacGyver-Wyman,7,177 -970,"Marvin, Haag and Little",11,177 -971,"Wunsch, Runte and Langosh",2,178 -972,Kiehn Inc,8,178 -973,Flatley Group,7,178 -974,Maggio LLC,6,178 -975,Lebsack-Hayes,11,178 -976,"Johns, Hessel and Kunze",7,178 -977,Gorczany Group,6,178 -978,Dickinson-Rohan,9,178 -979,Stanton LLC,10,179 -980,"Ruecker, Lubowitz and D'Amore",4,179 -981,Hermann-Hackett,10,179 -982,Sipes-Hegmann,5,179 -983,Homenick LLC,7,179 -984,Hauck-Sipes,4,179 -985,Gerlach-Ritchie,10,179 -986,Schowalter-D'Amore,7,179 -987,Lind-Raynor,6,180 -988,Stracke-Mitchell,5,180 -989,Schamberger LLC,3,180 -990,"Hoppe, Langosh and Wiza",5,180 -991,"Moore, Ferry and Auer",8,181 -992,"Morar, Schmitt and Feil",1,181 -993,Kiehn-Hartmann,4,181 -994,Braun-Prohaska,3,181 -995,Mohr LLC,7,181 -996,Nitzsche Group,11,181 -997,Littel Inc,11,181 -998,Buckridge-Kunde,10,182 -999,"Goldner, Fadel and Berge",1,182 -1000,Hahn-Steuber,3,183 -1001,Batz LLC,10,183 -1002,Jakubowski-McDermott,3,183 -1003,"Emard, Armstrong and Kreiger",11,184 -1004,Nienow-Gleason,8,184 -1005,"Runolfsson, Littel and Paucek",10,184 -1006,Hackett-Doyle,6,184 -1007,Treutel LLC,4,185 -1008,Waelchi and Sons,6,185 -1009,Strosin and Sons,9,185 -1010,Auer LLC,11,185 -1011,"Harvey, Kovacek and Yundt",5,185 -1012,Bode Group,6,185 -1013,"Toy, Thompson and Williamson",2,185 -1014,Brown-Rippin,3,185 -1015,Bartoletti-Grimes,11,185 -1016,Spinka and Sons,4,186 -1017,Aufderhar-Kozey,11,186 -1018,Williamson-Smitham,9,186 -1019,Larkin-Koch,8,187 -1020,"Douglas, Feeney and Von",11,187 -1021,Kunde Group,9,187 -1022,Glover-Schuster,3,187 -1023,Dickinson Group,10,187 -1024,"Tremblay, Monahan and O'Hara",3,188 -1025,Effertz-Howell,9,188 -1026,"Auer, Weimann and Konopelski",4,188 -1027,"Klocko, Hagenes and Wiegand",2,188 -1028,Robel Group,4,188 -1029,"Gorczany, Rodriguez and Harris",5,189 -1030,Williamson-Roob,9,189 -1031,"Ruecker, McKenzie and Bayer",6,189 -1032,"Ziemann, Stehr and Hessel",11,189 -1033,Stokes LLC,6,189 -1034,"Paucek, Rempel and Considine",3,189 -1035,Collier Group,3,189 -1036,Altenwerth-Beer,8,190 -1037,Prosacco Inc,9,191 -1038,Leffler Inc,11,191 -1039,Gleichner-Nolan,6,191 -1040,"Lindgren, Stark and Wintheiser",5,191 -1041,Gottlieb and Sons,4,192 -1042,"Trantow, Deckow and O'Keefe",4,192 -1043,"Morissette, King and Raynor",10,192 -1044,"Jacobi, Towne and Veum",9,192 -1045,"Heaney, Huels and Block",1,192 -1046,Jerde Group,7,192 -1047,Barton-Yundt,2,192 -1048,"Wisozk, VonRueden and Schmeler",8,192 -1049,Crist Inc,6,193 -1050,Bernhard Group,11,193 -1051,Collier Group,6,193 -1052,Torp-Terry,8,193 -1053,Raynor and Sons,1,193 -1054,Denesik-Hahn,9,193 -1055,Kulas-Lang,4,193 -1056,Runolfsson-Langworth,1,193 -1057,"Crist, Connelly and Walsh",9,193 -1058,Fadel-Becker,8,194 -1059,Hartmann Group,5,194 -1060,Wiegand-Effertz,8,194 -1061,"Fay, Weimann and Quigley",8,194 -1062,"Jast, Schowalter and Christiansen",4,194 -1063,"Christiansen, Anderson and Hoppe",3,194 -1064,Raynor and Sons,2,195 -1065,Prosacco Inc,11,195 -1066,Stracke Group,6,195 -1067,Schuster LLC,1,195 -1068,"Flatley, Kovacek and Willms",3,195 -1069,Turner-Fritsch,2,195 -1070,Legros LLC,6,195 -1071,Lockman-Osinski,9,195 -1072,Hegmann Group,6,195 -1073,Barton-Beatty,2,196 -1074,Zboncak and Sons,10,196 -1075,"Shanahan, Hane and Bailey",3,196 -1076,Wyman-Russel,5,196 -1077,"Runolfsdottir, Welch and Ratke",3,196 -1078,"Hane, Lockman and Russel",7,197 -1079,"Donnelly, Rodriguez and Schumm",8,198 -1080,"Schamberger, Grady and O'Connell",7,198 -1081,Blanda Inc,5,198 -1082,"Wehner, Swift and Carroll",10,198 -1083,Kassulke-Kirlin,9,198 -1084,"Cronin, Schimmel and Reichert",10,198 -1085,Satterfield Group,3,198 -1086,Beier and Sons,4,199 -1087,"Mills, Lind and Klein",4,200 -1088,Wyman Group,1,200 -1089,Mertz Inc,2,200 -1090,"Effertz, Zulauf and Volkman",5,200 -1091,"Prosacco, Brown and Bailey",11,200 -1092,Huels-VonRueden,3,201 -1093,"Rogahn, Bauch and Bailey",3,201 -1094,Huel-Kozey,7,201 -1095,Herman LLC,9,201 -1096,Jacobson and Sons,2,201 -1097,"Okuneva, Lang and Gleichner",4,202 -1098,Abernathy Inc,4,202 -1099,Koss LLC,8,202 -1100,Halvorson Group,11,202 -1101,"Wuckert, Kilback and Dickinson",2,202 -1102,Runte-Block,4,202 -1103,Metz LLC,9,202 -1104,"Leffler, Hettinger and Hudson",1,202 -1105,"Lowe, Mann and Collins",5,202 -1106,"Ondricka, Ebert and Schulist",7,202 -1107,"Rosenbaum, Rempel and Mitchell",10,203 -1108,Schuster and Sons,7,203 -1109,Marvin Inc,7,203 -1110,Ziemann and Sons,11,203 -1111,Mueller Group,8,203 -1112,Kling Inc,4,203 -1113,Gulgowski and Sons,11,203 -1114,"Monahan, Reinger and Ankunding",4,203 -1115,Kulas-Douglas,6,204 -1116,Kutch-Maggio,10,204 -1117,Boyer Group,8,205 -1118,Kihn and Sons,9,205 -1119,Jacobson LLC,6,205 -1120,Walker-Corwin,10,205 -1121,Casper Inc,4,205 -1122,"Marvin, Veum and Conn",4,205 -1123,Thompson and Sons,2,205 -1124,Keeling-Legros,5,205 -1125,"Rau, Altenwerth and Towne",2,205 -1126,"Turner, Schimmel and Graham",8,205 -1127,Morissette Inc,7,206 -1128,"Shields, Fahey and Schmeler",7,206 -1129,"Schmitt, D'Amore and Kemmer",8,206 -1130,Yundt LLC,1,206 -1131,Berge-Rath,6,206 -1132,Von LLC,11,206 -1133,Prohaska and Sons,7,207 -1134,Crona Group,3,208 -1135,Waters LLC,8,208 -1136,Rolfson-Nitzsche,8,209 -1137,"Zieme, Johnson and McGlynn",9,209 -1138,Nader and Sons,3,209 -1139,Lynch-O'Conner,3,209 -1140,Yundt Group,9,209 -1141,Beatty LLC,11,210 -1142,"Schimmel, Parisian and Daugherty",10,210 -1143,Prosacco and Sons,2,210 -1144,"Quigley, Koepp and Gislason",1,210 -1145,Langworth-Bins,11,210 -1146,"Runolfsson, Braun and Koelpin",8,210 -1147,"Casper, Mosciski and Emmerich",7,210 -1148,Zboncak-Keebler,8,210 -1149,"Nienow, Metz and Gutkowski",11,211 -1150,"Kunze, Mueller and Collier",10,211 -1151,"Cremin, Crooks and Murazik",9,211 -1152,Bernhard-O'Keefe,8,212 -1153,Sporer and Sons,7,212 -1154,Stoltenberg-McClure,6,212 -1155,"Marquardt, Pacocha and Koch",2,212 -1156,Pouros and Sons,6,212 -1157,Littel and Sons,11,213 -1158,Hahn and Sons,6,213 -1159,Reichert LLC,6,213 -1160,"Maggio, Spencer and Bergstrom",9,213 -1161,Wolf LLC,4,213 -1162,"Luettgen, Tromp and Grady",3,213 -1163,"Cassin, Kunze and Graham",11,214 -1164,"Stoltenberg, Hyatt and Weber",2,214 -1165,Bergnaum-Effertz,1,214 -1166,"Hodkiewicz, Stracke and Leffler",9,214 -1167,"Hilll, Schaefer and Yost",4,214 -1168,Littel and Sons,7,214 -1169,O'Hara-Rau,3,214 -1170,"Ratke, Wuckert and Windler",6,215 -1171,Russel Inc,3,215 -1172,"Herman, Hoeger and Rosenbaum",6,215 -1173,"Turcotte, Hickle and Lynch",4,215 -1174,Conroy LLC,2,216 -1175,Schroeder-Dietrich,1,216 -1176,Hills and Sons,9,216 -1177,Kovacek-Kihn,7,216 -1178,Reilly-Abbott,8,216 -1179,Cruickshank Inc,7,217 -1180,"Yost, Casper and Koelpin",11,217 -1181,"Vandervort, Wolf and Kunde",10,217 -1182,Haag and Sons,4,217 -1183,"Bauch, Littel and Quigley",10,218 -1184,Orn Group,9,219 -1185,Lindgren-Jones,9,219 -1186,"Kihn, Bogisich and Kutch",1,219 -1187,Windler-Kiehn,7,219 -1188,Macejkovic-Kiehn,7,219 -1189,"Kerluke, Graham and Klein",5,219 -1190,Nader-Moen,6,219 -1191,Schoen Group,11,219 -1192,Hansen Group,6,219 -1193,Upton LLC,7,220 -1194,Aufderhar LLC,6,220 -1195,Reilly-Kohler,11,220 -1196,Leffler-Cremin,1,221 -1197,Eichmann Inc,11,221 -1198,Blick LLC,11,221 -1199,Koepp Group,4,221 -1200,Farrell-Runolfsdottir,8,221 -1201,Gutmann-Mueller,9,221 -1202,Franecki-Dooley,10,222 -1203,Bradtke-Lueilwitz,2,222 -1204,"Orn, Moore and Lowe",5,222 -1205,Sawayn and Sons,2,222 -1206,"Zieme, Connelly and Carroll",10,222 -1207,Kshlerin and Sons,8,222 -1208,Konopelski Group,3,222 -1209,Kozey LLC,6,223 -1210,Hansen-Rau,3,223 -1211,Torp and Sons,8,223 -1212,Mosciski LLC,11,223 -1213,Rodriguez-Rempel,1,224 -1214,Tillman-Ortiz,11,224 -1215,Beier-Jenkins,1,224 -1216,Renner-Ebert,7,224 -1217,Lemke Inc,10,225 -1218,Monahan Inc,7,225 -1219,"Olson, Schuster and Simonis",2,225 -1220,Corwin-Walsh,6,225 -1221,"Spencer, Kuhic and Kulas",3,225 -1222,Veum-Bailey,2,225 -1223,Daugherty LLC,4,225 -1224,Zemlak-Ritchie,7,225 -1225,"Brakus, Cummerata and Wilkinson",8,225 -1226,"Ruecker, Harris and Weber",4,226 -1227,"Strosin, Emmerich and Bogan",1,226 -1228,"Ruecker, Ryan and Bauch",3,226 -1229,Corkery-Hickle,2,226 -1230,Runolfsdottir-Mitchell,7,226 -1231,Pacocha Group,10,226 -1232,"Lindgren, Stanton and Lehner",7,226 -1233,Weber-Nolan,4,226 -1234,Mann and Sons,8,226 -1235,Bergstrom Group,5,227 -1236,Larson Group,4,227 -1237,Jacobson LLC,11,227 -1238,Kris Inc,10,228 -1239,Gerlach LLC,2,228 -1240,Krajcik-Kulas,2,228 -1241,Satterfield Inc,11,229 -1242,Jerde Inc,2,229 -1243,Dicki-Hills,4,229 -1244,Schiller-Wolf,6,229 -1245,"Dibbert, Wolff and Carroll",1,229 -1246,Keebler-Lindgren,3,229 -1247,Nitzsche-Rolfson,1,229 -1248,Hills-Krajcik,4,229 -1249,Orn-Connelly,1,229 -1250,"Stamm, DuBuque and Mraz",8,229 -1251,Witting LLC,9,230 -1252,Hackett Inc,5,230 -1253,"Stracke, Stroman and Blanda",11,230 -1254,Larson-Yost,5,230 -1255,"Zieme, Kuvalis and Spinka",1,231 -1256,"Hackett, McLaughlin and Kassulke",8,231 -1257,"Ratke, Walter and Oberbrunner",10,231 -1258,"Hammes, Huels and Crooks",1,231 -1259,"Harber, Predovic and Murphy",11,231 -1260,"Jenkins, Lesch and Rowe",2,231 -1261,Powlowski Inc,2,231 -1262,"Hermann, Little and Kilback",5,231 -1263,"Beier, Walsh and Ankunding",1,232 -1264,Yundt Inc,5,232 -1265,Hettinger Group,9,232 -1266,Spinka and Sons,6,232 -1267,"Mann, O'Conner and Gleason",1,233 -1268,Lakin-Ondricka,5,233 -1269,Jones-Schoen,3,233 -1270,Hoppe-Hahn,8,233 -1271,Johnston-Cole,3,233 -1272,Kuphal-Mante,5,233 -1273,Morar-Quigley,4,233 -1274,"Cormier, Douglas and Lind",7,233 -1275,Rodriguez LLC,7,234 -1276,Gusikowski-Grimes,3,234 -1277,Stracke LLC,5,234 -1278,Stroman-Willms,2,234 -1279,Spinka-Hahn,3,234 -1280,Jenkins and Sons,2,234 -1281,Becker and Sons,1,234 -1282,Swaniawski-McDermott,11,234 -1283,Walsh LLC,6,234 -1284,Schimmel Group,1,235 -1285,"Rohan, Smith and Christiansen",7,235 -1286,Batz-Brekke,9,235 -1287,Fay-Larkin,7,235 -1288,Kemmer-Reichert,9,235 -1289,McKenzie-Steuber,11,236 -1290,"Wuckert, Barrows and Hayes",5,236 -1291,Streich-Witting,8,236 -1292,"Gerlach, Conroy and Hills",6,237 -1293,"Kreiger, Klocko and Powlowski",8,237 -1294,"Shanahan, Shanahan and Donnelly",11,237 -1295,"Collins, Smith and Stracke",2,237 -1296,Hand Inc,10,237 -1297,Robel-Jenkins,5,237 -1298,"Hickle, Hoppe and Sawayn",7,237 -1299,"Muller, Goldner and Stoltenberg",10,237 -1300,Kihn LLC,5,238 -1301,"Feeney, Heller and Collier",9,238 -1302,"Gottlieb, Lang and Torphy",10,238 -1303,"Padberg, Cronin and Lebsack",3,238 -1304,Hansen LLC,1,238 -1305,Steuber-Hahn,6,239 -1306,"Homenick, Christiansen and Jast",8,239 -1307,"Schmitt, Roberts and Flatley",3,239 -1308,Reynolds-Johns,6,239 -1309,Collins-Emard,8,239 -1310,Russel-West,2,239 -1311,Jaskolski Group,1,239 -1312,Rau-Schulist,3,239 -1313,MacGyver and Sons,1,239 -1314,Larson-Hermiston,9,240 -1315,Mertz-Frami,1,241 -1316,"Watsica, Rolfson and Satterfield",1,241 -1317,Russel and Sons,7,241 -1318,"Shanahan, Weber and Schmidt",5,241 -1319,Morissette-Romaguera,1,241 -1320,Klein-Auer,6,241 -1321,"Prosacco, Leannon and Jakubowski",7,241 -1322,Abshire Inc,11,241 -1323,"Dickens, Steuber and Blanda",1,241 -1324,West-Lind,10,241 -1325,Heaney-Stoltenberg,3,242 -1326,"Considine, Fahey and Hegmann",9,242 -1327,Boyer-Stracke,7,242 -1328,Grant-Little,8,242 -1329,Hansen LLC,4,242 -1330,"Kreiger, Barrows and Homenick",2,242 -1331,Casper Inc,10,242 -1332,Abshire-Kohler,4,242 -1333,Cartwright-Morar,5,242 -1334,Runolfsdottir Inc,2,242 -1335,Kunde-Reichert,9,243 -1336,Rice-Runolfsson,5,243 -1337,Barton-Boehm,5,243 -1338,"Rohan, Spencer and Torp",5,244 -1339,Kautzer LLC,6,244 -1340,Flatley Inc,11,244 -1341,Grant-Hintz,7,244 -1342,Torp Group,7,244 -1343,McLaughlin LLC,7,245 -1344,Leffler-Zboncak,10,245 -1345,"Muller, Rice and Cole",7,245 -1346,Renner-Crist,1,245 -1347,Botsford-Larkin,8,245 -1348,"Sawayn, Reichel and Stiedemann",5,245 -1349,Koss-Mraz,4,245 -1350,"Aufderhar, Thiel and Sipes",8,246 -1351,Mohr-Daugherty,2,246 -1352,"O'Keefe, Stoltenberg and Ernser",5,246 -1353,"McDermott, Gutmann and Roberts",11,247 -1354,"Schiller, Champlin and Feest",9,247 -1355,Orn-Keeling,9,247 -1356,Dare Group,9,248 -1357,"Gutmann, Toy and Ziemann",1,249 -1358,Satterfield and Sons,5,249 -1359,Walter LLC,9,250 -1360,Corkery-Bogan,8,250 -1361,"Marquardt, Kunde and Kling",2,250 -1362,"Labadie, Marks and Bechtelar",10,250 -1363,Hirthe-Yost,8,250 -1364,"Anderson, Trantow and Howell",9,250 -1365,Kuhlman Inc,2,250 -1366,Runolfsson Inc,10,251 -1367,Gutkowski-Bernhard,2,252 -1368,"Shields, Stracke and Kris",11,253 -1369,"Champlin, Kautzer and Cummerata",10,253 -1370,Hettinger-Rolfson,7,253 -1371,Hane-Trantow,2,253 -1372,Mayer-Hagenes,6,253 -1373,Rohan and Sons,2,253 -1374,"McGlynn, Purdy and Lindgren",5,253 -1375,Brakus-Homenick,5,253 -1376,Crona and Sons,9,253 -1377,Hartmann and Sons,5,253 -1378,"Willms, Baumbach and Runolfsson",7,254 -1379,Franecki Inc,11,254 -1380,"Prosacco, Erdman and Gorczany",6,254 -1381,"Harris, Shanahan and Bailey",4,254 -1382,Ebert-Kirlin,4,255 -1383,"Senger, Runolfsson and Stokes",5,255 -1384,Veum Group,7,255 -1385,Leannon LLC,2,256 -1386,"Conroy, Wisozk and Ziemann",9,256 -1387,"Dietrich, Jones and Reichert",3,256 -1388,Wisoky-Price,6,256 -1389,"Reinger, Buckridge and Carter",1,256 -1390,Ferry Inc,5,256 -1391,"Hettinger, Medhurst and Rempel",2,256 -1392,Nicolas LLC,7,256 -1393,Altenwerth and Sons,11,256 -1394,Buckridge-Wilderman,2,256 -1395,Collier Group,8,257 -1396,Paucek-Howell,10,257 -1397,White Group,8,257 -1398,Kuhn and Sons,10,257 -1399,"Marks, Rutherford and Smitham",4,257 -1400,"Skiles, Okuneva and Thiel",10,258 -1401,Mueller-Von,9,259 -1402,Dooley-Mosciski,9,259 -1403,Kihn and Sons,5,260 -1404,Parisian Inc,6,260 -1405,Spencer-Leffler,7,260 -1406,Goyette LLC,10,260 -1407,Langworth-Breitenberg,8,260 -1408,Wyman Group,11,260 -1409,Cartwright Inc,1,261 -1410,Stehr-Murphy,5,261 -1411,Johns LLC,9,262 -1412,Kutch Group,7,262 -1413,"Bradtke, Hoeger and Schmeler",5,262 -1414,Halvorson-Schmitt,3,262 -1415,"Murazik, Aufderhar and Bode",3,262 -1416,Daugherty and Sons,4,262 -1417,Smith Inc,11,262 -1418,Nikolaus Inc,8,262 -1419,Simonis-Ferry,11,262 -1420,"Nienow, Runolfsson and Satterfield",2,263 -1421,"Leannon, Rempel and Gislason",8,263 -1422,"Block, Hayes and Pollich",1,263 -1423,"Treutel, Bruen and Blick",6,263 -1424,"Ferry, Kuphal and Schmidt",11,263 -1425,Bosco and Sons,4,263 -1426,"Dibbert, Kutch and Kling",10,263 -1427,"Bernhard, Murphy and Kshlerin",5,263 -1428,Sipes Group,5,264 -1429,Spinka-Cassin,3,264 -1430,Heidenreich and Sons,3,264 -1431,"Sporer, Hackett and Larson",3,264 -1432,Moen LLC,8,264 -1433,"Lesch, Pfannerstill and Pollich",1,264 -1434,Treutel Inc,2,264 -1435,Ferry-Klein,2,265 -1436,"Morar, Ritchie and Kohler",9,265 -1437,Beatty-Haag,3,265 -1438,Abbott and Sons,9,265 -1439,Jakubowski-Marks,7,265 -1440,Fahey Group,7,265 -1441,"Homenick, Ryan and Corwin",9,265 -1442,Bernhard and Sons,3,265 -1443,Harvey-Bode,2,266 -1444,Hansen LLC,1,267 -1445,Stoltenberg Inc,6,267 -1446,"Schimmel, Beer and Medhurst",1,267 -1447,Durgan-Crist,8,267 -1448,Legros-Pagac,5,267 -1449,Wiegand-McGlynn,2,267 -1450,Robel LLC,1,267 -1451,Gleichner Group,5,267 -1452,Tremblay and Sons,4,268 -1453,Will and Sons,2,268 -1454,Littel Inc,3,268 -1455,"Bogisich, Wilkinson and Rau",10,269 -1456,Kozey LLC,10,269 -1457,Mayert Group,11,269 -1458,"Pfannerstill, Skiles and Schowalter",7,269 -1459,Bednar LLC,10,269 -1460,Lindgren-Leuschke,7,269 -1461,Mann Group,4,269 -1462,Rosenbaum and Sons,2,269 -1463,Schmidt LLC,11,270 -1464,"Homenick, Grant and Schulist",7,270 -1465,"Gleason, Goodwin and Buckridge",9,270 -1466,Larson-Goldner,4,270 -1467,Conn LLC,5,270 -1468,Stanton-Braun,11,270 -1469,Trantow Inc,8,271 -1470,Quitzon LLC,8,271 -1471,"Hilll, Kris and Moen",5,271 -1472,"Nikolaus, Schmeler and Haley",6,271 -1473,Boehm Group,9,272 -1474,Hagenes and Sons,5,272 -1475,Waelchi LLC,5,272 -1476,"Effertz, Fay and Schinner",5,273 -1477,"Rodriguez, Johnston and Krajcik",6,273 -1478,Kuphal Inc,4,273 -1479,"Gislason, Grant and Greenholt",11,273 -1480,Simonis Group,1,273 -1481,"Lehner, Kunde and Schiller",1,273 -1482,Bins-Marks,1,273 -1483,Trantow Group,10,274 -1484,Conroy LLC,11,274 -1485,Huel LLC,3,274 -1486,Bernier Group,1,274 -1487,"Koch, Dooley and Bednar",4,275 -1488,"Stiedemann, Beatty and Krajcik",4,275 -1489,Schroeder-Tromp,8,275 -1490,"MacGyver, Nienow and Brakus",8,275 -1491,Lebsack-Bahringer,7,275 -1492,"Conroy, Lubowitz and Herman",7,275 -1493,"Kling, Konopelski and Pouros",5,275 -1494,Schulist Inc,7,276 -1495,"Murray, Reichert and Kiehn",7,277 -1496,Heathcote-Ullrich,3,277 -1497,Shanahan LLC,4,277 -1498,Green-DuBuque,3,277 -1499,"Schumm, Goyette and Cronin",9,277 -1500,Ondricka-Powlowski,11,278 -1501,Rau Inc,3,278 -1502,"Brekke, Friesen and Schneider",9,278 -1503,Rippin Group,3,278 -1504,"Goldner, Jacobi and Daugherty",6,278 -1505,"Blanda, Lesch and Paucek",3,278 -1506,Murray-Schaden,8,278 -1507,"Rogahn, Adams and Satterfield",1,279 -1508,Roob-Satterfield,7,279 -1509,Rutherford-Harber,9,279 -1510,McLaughlin-Wolf,3,279 -1511,Weissnat-Witting,8,279 -1512,Howell-Klocko,9,279 -1513,Leffler and Sons,5,279 -1514,Kuvalis-Schultz,8,279 -1515,Borer Inc,7,279 -1516,"Haley, King and Thiel",2,280 -1517,Haag-McClure,5,281 -1518,Kris LLC,5,281 -1519,Ullrich Inc,11,281 -1520,Gutmann-Runolfsson,5,281 -1521,Little Group,9,281 -1522,Keeling-Ernser,10,281 -1523,"Hilpert, Casper and Nolan",11,281 -1524,Cole Group,7,281 -1525,Nitzsche-Bergnaum,2,282 -1526,Larkin-Rogahn,7,282 -1527,"Hauck, Rice and Buckridge",3,282 -1528,Abernathy-Kuvalis,3,282 -1529,Gerlach-Kovacek,10,282 -1530,Durgan Inc,11,282 -1531,"Kuhlman, Moore and Von",7,282 -1532,Upton and Sons,2,282 -1533,Labadie-Green,6,283 -1534,Keebler Inc,6,283 -1535,Harris-Ullrich,3,283 -1536,Kohler-Champlin,2,283 -1537,"Feeney, Boyer and Turcotte",3,283 -1538,"Sporer, Haag and Reynolds",3,283 -1539,Hudson-Hermiston,11,283 -1540,Hilll and Sons,11,283 -1541,"Hand, Johns and Rosenbaum",3,283 -1542,Wolff Inc,6,283 -1543,Russel Inc,2,284 -1544,Quitzon-Hamill,9,284 -1545,Daniel-Kuphal,5,285 -1546,"Beer, McDermott and Douglas",3,286 -1547,Trantow-Wisoky,11,286 -1548,"Flatley, O'Keefe and Medhurst",1,286 -1549,Marquardt and Sons,10,287 -1550,Zulauf LLC,4,287 -1551,Cartwright-Conroy,1,287 -1552,"Kuphal, Hettinger and Fritsch",6,287 -1553,"Rodriguez, Doyle and Towne",5,288 -1554,Rice LLC,3,288 -1555,Mitchell-Becker,3,289 -1556,Anderson LLC,8,289 -1557,Auer-Breitenberg,1,289 -1558,"Ernser, Mayer and Nienow",1,289 -1559,"Eichmann, Dicki and Torphy",8,289 -1560,Larkin-Stracke,4,289 -1561,"Rempel, Larson and Strosin",5,290 -1562,"Jacobson, Veum and Keebler",3,290 -1563,"Ondricka, Larson and Schamberger",2,290 -1564,Cronin-Ritchie,9,290 -1565,Von Inc,7,290 -1566,"Turner, Wisoky and Bogan",4,291 -1567,"Howell, Witting and Bergstrom",10,291 -1568,"Conroy, Ernser and Johnson",11,291 -1569,"MacGyver, Ruecker and Johns",2,292 -1570,Wunsch Inc,6,293 -1571,"Kutch, Schuster and Turcotte",11,293 -1572,"Collins, Runte and D'Amore",5,294 -1573,Jacobson-McClure,2,294 -1574,Koss LLC,3,294 -1575,Lakin-Erdman,3,294 -1576,Rodriguez-Schaefer,2,294 -1577,Ferry-Harvey,1,294 -1578,"Macejkovic, Kerluke and Abernathy",5,295 -1579,"Weber, Murray and Stark",9,295 -1580,Sanford Inc,10,295 -1581,Rosenbaum-Lueilwitz,7,295 -1582,Pollich LLC,11,295 -1583,"Wunsch, Wintheiser and Fahey",2,296 -1584,Quitzon-Jacobi,3,296 -1585,Lind-O'Reilly,5,296 -1586,Grimes and Sons,3,297 -1587,"Rodriguez, Schmidt and Bogan",3,297 -1588,"Langworth, Olson and Mosciski",7,297 -1589,Langosh-Cummings,4,297 -1590,McGlynn-Sporer,4,297 -1591,Kovacek and Sons,11,297 -1592,Emard LLC,3,297 -1593,Kshlerin-Rutherford,9,297 -1594,"Rogahn, Doyle and Rath",5,298 -1595,Carroll LLC,8,298 -1596,Pfannerstill Inc,6,298 -1597,Bode-Luettgen,9,298 -1598,"Hyatt, Paucek and Sauer",10,299 -1599,VonRueden-Dooley,2,299 -1600,"Wiza, Douglas and Nolan",6,299 -1601,"Shanahan, Kirlin and Torphy",9,299 -1602,Bode Inc,1,299 -1603,Wiza-Kuhlman,1,299 -1604,Gibson Group,11,300 -1605,Ebert-Huels,4,301 -1606,Schoen-Kozey,2,302 -1607,Stokes and Sons,8,302 -1608,Walker and Sons,9,302 -1609,"Macejkovic, Kertzmann and Marks",6,302 -1610,Dicki Inc,8,302 -1611,Zemlak-Jacobs,1,302 -1612,Bergnaum-Ebert,2,302 -1613,Williamson-Corkery,10,302 -1614,Harber-Kulas,10,302 -1615,Reilly-Raynor,9,302 -1616,DuBuque Group,5,303 -1617,"Lemke, Metz and Welch",10,303 -1618,Muller and Sons,8,303 -1619,Becker and Sons,7,303 -1620,"Rath, Zieme and Greenfelder",11,303 -1621,"Collins, Gerhold and Wisozk",11,304 -1622,Nitzsche-Russel,7,304 -1623,Crist Group,10,305 -1624,Bartell-Raynor,1,305 -1625,Boyle Group,10,305 -1626,Prohaska-Mertz,11,305 -1627,Daugherty-Wisozk,5,305 -1628,Larkin-Schulist,7,306 -1629,Runte-Mueller,10,306 -1630,Tillman and Sons,4,306 -1631,Barton Inc,2,306 -1632,Jones and Sons,2,306 -1633,Fahey-Hoeger,8,307 -1634,Jakubowski-Roob,7,307 -1635,"Upton, Ortiz and Torp",7,307 -1636,Corkery Inc,9,308 -1637,"Goodwin, Kulas and Johns",9,308 -1638,Hudson-Wilkinson,11,308 -1639,Reynolds-Funk,7,308 -1640,"Metz, Kiehn and Kerluke",5,308 -1641,Turner Group,8,308 -1642,Turner and Sons,1,308 -1643,"O'Hara, Hermiston and Bauch",11,309 -1644,Robel-Kautzer,3,309 -1645,Hoppe and Sons,8,309 -1646,Goodwin and Sons,3,309 -1647,"Medhurst, Gibson and Rau",4,309 -1648,Crona-Hammes,1,309 -1649,Cummerata LLC,7,309 -1650,"O'Reilly, Schmitt and Dare",7,309 -1651,Upton-Altenwerth,1,310 -1652,"Roberts, Torp and Hackett",6,310 -1653,"Aufderhar, Carter and Klocko",9,310 -1654,Rice LLC,7,310 -1655,Batz LLC,4,311 -1656,Jakubowski-Abbott,10,311 -1657,Collier Inc,5,311 -1658,Bosco-Rippin,3,311 -1659,"Lockman, Gleason and Hettinger",2,311 -1660,Schultz and Sons,10,311 -1661,Weimann-Langosh,3,311 -1662,Steuber-Schuppe,2,311 -1663,Ernser-O'Hara,6,311 -1664,"Will, Gottlieb and Wuckert",5,311 -1665,Bernhard-Ritchie,11,312 -1666,Haag-Hahn,2,312 -1667,Wolff and Sons,5,312 -1668,"Bartoletti, Rohan and Kemmer",10,312 -1669,"White, Bechtelar and Osinski",9,313 -1670,Waters-Bashirian,1,313 -1671,Ruecker LLC,5,314 -1672,Gusikowski-Lowe,8,315 -1673,"Renner, Lang and Heathcote",1,315 -1674,O'Keefe-Toy,1,315 -1675,"Feeney, Padberg and Lehner",6,315 -1676,Stokes-Doyle,8,315 -1677,Reichert Inc,1,315 -1678,Emmerich Inc,10,315 -1679,Gutmann-Hahn,6,315 -1680,Zulauf Inc,9,315 -1681,Bernhard Group,8,316 -1682,Sawayn Inc,8,316 -1683,Fisher Inc,7,316 -1684,"Considine, Hane and Hintz",3,316 -1685,Cassin-Goldner,9,317 -1686,"Homenick, Klein and Kozey",11,317 -1687,Rogahn Inc,9,317 -1688,Willms-Dibbert,9,317 -1689,"Pouros, Roob and Bailey",4,317 -1690,Veum-Wiegand,8,317 -1691,Rice-Legros,6,317 -1692,"Lakin, Corwin and Luettgen",6,317 -1693,Little Group,7,317 -1694,Gislason-Murazik,3,317 -1695,"Waters, Friesen and Ledner",11,318 -1696,"Champlin, Lebsack and Welch",5,318 -1697,Kutch-Littel,3,318 -1698,Nolan-Weber,4,319 -1699,Stoltenberg-Upton,11,319 -1700,"McClure, McClure and Dare",9,320 -1701,Becker Inc,4,320 -1702,Kutch-Collins,7,320 -1703,Ernser-Heathcote,6,320 -1704,"Hilll, Sporer and Jacobi",6,320 -1705,"Leannon, Hand and Wilderman",8,320 -1706,"Lesch, Wyman and DuBuque",5,321 -1707,"Stehr, Wiza and Mann",5,321 -1708,Hartmann Inc,8,321 -1709,Jaskolski-Stark,2,321 -1710,"Hoeger, Dietrich and Cartwright",2,322 -1711,Rutherford-Brekke,2,322 -1712,Lockman-Bayer,11,322 -1713,Lang Group,9,322 -1714,"Hoeger, Haag and Mertz",7,322 -1715,"Metz, Lesch and Christiansen",2,322 -1716,"Jacobs, Goldner and Zboncak",5,323 -1717,Mitchell LLC,1,323 -1718,"Willms, Cassin and Turcotte",10,323 -1719,Gibson and Sons,4,323 -1720,Langworth Inc,2,323 -1721,"Kemmer, Blick and Kulas",8,323 -1722,Orn and Sons,3,323 -1723,"Herzog, Pollich and Vandervort",3,323 -1724,Yundt-Dietrich,11,323 -1725,"Wisozk, Walsh and Bashirian",8,323 -1726,"Vandervort, Bradtke and Fadel",9,324 -1727,"Borer, Schaden and Gorczany",3,324 -1728,"D'Amore, Krajcik and Buckridge",11,324 -1729,Kohler Group,5,324 -1730,Fadel and Sons,8,324 -1731,Friesen-Greenfelder,8,324 -1732,"Zboncak, Ebert and Okuneva",1,324 -1733,"Greenholt, Reichert and Blanda",4,324 -1734,"Koch, Schuster and Veum",3,324 -1735,Jacobs-Effertz,2,325 -1736,Gibson Inc,7,325 -1737,Thiel and Sons,2,325 -1738,"Terry, Rohan and Heaney",7,325 -1739,"Hahn, McGlynn and Hintz",1,325 -1740,Cruickshank Inc,2,326 -1741,Hessel-Hyatt,9,326 -1742,Weimann-Murray,5,326 -1743,Littel Inc,11,326 -1744,O'Keefe-Schmitt,6,326 -1745,Bernier and Sons,7,326 -1746,Rolfson-Parker,3,326 -1747,"Haag, Goodwin and Toy",10,327 -1748,Nitzsche-Torp,11,327 -1749,Kulas-Schimmel,4,328 -1750,Fadel-Spinka,10,328 -1751,Parisian LLC,7,328 -1752,"Lowe, Kshlerin and Blick",4,328 -1753,"Zulauf, Bernier and O'Conner",1,328 -1754,Hammes LLC,6,328 -1755,"Murphy, Oberbrunner and Beer",8,328 -1756,Sipes-Paucek,5,329 -1757,Prosacco LLC,10,329 -1758,Schultz LLC,4,330 -1759,"Pouros, Hermiston and Huel",11,330 -1760,Leuschke and Sons,11,330 -1761,"McLaughlin, Hagenes and Emmerich",4,330 -1762,"Jast, Wisozk and Olson",5,330 -1763,Ullrich-Leffler,2,331 -1764,Pagac-Mraz,7,331 -1765,"Dickens, Welch and Schaden",10,331 -1766,Weber-VonRueden,5,331 -1767,"Reinger, Quitzon and Gorczany",3,331 -1768,"Bartoletti, Casper and Dach",11,331 -1769,Jacobs Inc,9,332 -1770,Satterfield and Sons,8,332 -1771,Predovic LLC,3,332 -1772,Roob Inc,6,332 -1773,"Koss, Feest and Klein",10,332 -1774,"Kunde, Hoeger and Connelly",11,332 -1775,"Littel, Emard and Stroman",11,332 -1776,Mayer Group,8,333 -1777,Dickens-Glover,10,333 -1778,Hermiston-Herman,1,333 -1779,Stiedemann LLC,10,333 -1780,"Huels, Smith and Ferry",9,333 -1781,"Abshire, Schaden and Purdy",9,334 -1782,Bins Group,5,334 -1783,"Ledner, Johnson and Lakin",7,334 -1784,"Raynor, Bode and Muller",11,334 -1785,Carter Group,6,334 -1786,Douglas-Jenkins,11,334 -1787,Keeling-Pfannerstill,11,334 -1788,Abshire LLC,5,335 -1789,Hayes Inc,3,335 -1790,Lynch Inc,10,335 -1791,Kling Group,6,335 -1792,Leannon LLC,10,335 -1793,Berge and Sons,7,335 -1794,"Gaylord, Rau and Harvey",1,335 -1795,"Hudson, Orn and Haag",7,336 -1796,Schultz Inc,8,337 -1797,"Rogahn, Kreiger and Padberg",8,337 -1798,"Spencer, Leffler and Will",2,337 -1799,Ferry Group,8,337 -1800,"Beatty, Stroman and Spinka",8,337 -1801,"Beahan, Paucek and Bogisich",10,337 -1802,"Kovacek, Torphy and Barton",10,338 -1803,Rau-Block,2,338 -1804,Kuhlman LLC,10,338 -1805,Legros-Quitzon,6,338 -1806,West Inc,9,338 -1807,Kessler-Koss,2,339 -1808,Murray-Padberg,4,339 -1809,Wuckert-Cummerata,1,339 -1810,Prohaska Inc,9,339 -1811,"Johns, Lesch and Grant",4,339 -1812,Batz LLC,6,339 -1813,Schimmel Group,2,339 -1814,Ondricka LLC,10,339 -1815,Altenwerth Inc,10,339 -1816,Kozey-Keebler,8,339 -1817,Reynolds-Steuber,2,340 -1818,Konopelski-D'Amore,5,340 -1819,"Considine, Sporer and Kuhic",10,341 -1820,Monahan Inc,8,341 -1821,Ullrich-Pagac,2,341 -1822,Walker-Harris,10,341 -1823,"Koss, Graham and Jacobs",9,342 -1824,Spinka-Goldner,6,342 -1825,"DuBuque, Wehner and Herzog",3,342 -1826,Klein Group,7,342 -1827,Weber-Feil,4,342 -1828,Pollich LLC,8,342 -1829,Brown-Hansen,5,342 -1830,Nitzsche-Feest,7,342 -1831,Toy-Kris,11,343 -1832,Cruickshank Group,6,343 -1833,Harris-Raynor,10,343 -1834,"Howell, Sanford and Jerde",11,344 -1835,Prohaska and Sons,4,345 -1836,"Hickle, Turcotte and MacGyver",1,345 -1837,"Armstrong, Murray and Walsh",1,345 -1838,Donnelly-Denesik,2,345 -1839,Ferry-Hayes,7,345 -1840,Lang Group,10,345 -1841,"Abernathy, Rohan and Hamill",7,345 -1842,Kohler and Sons,4,345 -1843,Terry Group,4,345 -1844,Sporer-Stark,11,345 -1845,Kiehn-Prohaska,3,346 -1846,Powlowski Group,4,347 -1847,"Raynor, Mitchell and Satterfield",11,347 -1848,"Wolf, Mills and Pacocha",11,347 -1849,Douglas LLC,9,347 -1850,Howe Group,8,348 -1851,Stroman-Ratke,9,348 -1852,Ziemann Inc,9,348 -1853,"Reinger, Ankunding and Schaefer",11,348 -1854,"Hahn, Krajcik and Kovacek",5,348 -1855,Kohler-Waters,4,348 -1856,"Lynch, Carroll and Dickens",4,348 -1857,"Littel, Boyle and Labadie",2,348 -1858,Sporer Inc,2,348 -1859,Eichmann and Sons,3,348 -1860,Swaniawski Inc,10,349 -1861,Mann and Sons,3,349 -1862,"Breitenberg, Lemke and Witting",6,350 -1863,Durgan Group,9,350 -1864,"Schulist, Fisher and Jones",3,350 -1865,Romaguera-Koss,11,350 -1866,Stoltenberg Group,5,351 -1867,"Bosco, Balistreri and Cummerata",5,351 -1868,"O'Hara, Cole and Bradtke",4,351 -1869,Glover LLC,1,351 -1870,"Schultz, Walter and Rice",2,351 -1871,Mills and Sons,10,351 -1872,"Kassulke, Thompson and Reinger",11,351 -1873,Thiel-Friesen,8,351 -1874,Kilback Inc,9,352 -1875,Erdman Inc,10,352 -1876,"Hansen, Morissette and Renner",2,352 -1877,Mayert and Sons,10,352 -1878,Ullrich and Sons,10,352 -1879,Grant-Cruickshank,7,352 -1880,"Heller, Ledner and Schaden",2,352 -1881,Beatty-Kunde,10,352 -1882,Bradtke LLC,1,353 -1883,Rempel-Braun,10,354 -1884,Moen-Wolf,6,354 -1885,Runte-Fisher,7,355 -1886,Spencer Group,3,355 -1887,"Batz, Ward and Torp",4,355 -1888,"Reichert, Hermann and Kiehn",5,355 -1889,"Schinner, Heaney and Medhurst",9,356 -1890,Frami and Sons,11,356 -1891,McKenzie-Fisher,7,357 -1892,Stanton-Tromp,6,357 -1893,"Tremblay, Casper and Heidenreich",8,357 -1894,"Beatty, Russel and Barton",3,358 -1895,Toy and Sons,5,358 -1896,Hermiston-O'Hara,2,358 -1897,Deckow-McDermott,10,359 -1898,"Cormier, Conn and McDermott",2,359 -1899,Effertz-Stroman,8,359 -1900,Reynolds Group,11,359 -1901,Grimes Group,11,359 -1902,Moore Group,5,360 -1903,Barton LLC,11,360 -1904,"Hyatt, Gottlieb and Koss",7,360 -1905,"Conn, Wilderman and Daniel",9,360 -1906,Pacocha-Miller,8,360 -1907,"Kirlin, Abernathy and Mills",11,361 -1908,Smith Inc,7,361 -1909,Spencer and Sons,4,361 -1910,"Keeling, Franecki and Kshlerin",9,362 -1911,O'Keefe-Hauck,6,362 -1912,Koss Group,1,362 -1913,"Carter, Carroll and Jacobson",11,362 -1914,Haley Inc,1,362 -1915,Schuppe-Parisian,9,362 -1916,Nicolas and Sons,9,363 -1917,"Herzog, Murazik and Willms",11,363 -1918,Barrows-Greenfelder,11,364 -1919,Bogisich-Goldner,3,365 -1920,"Wehner, Donnelly and Berge",5,365 -1921,"Prosacco, Schmidt and Sanford",10,365 -1922,Borer LLC,1,365 -1923,Streich LLC,1,365 -1924,Gusikowski LLC,10,365 -1925,Dietrich and Sons,5,365 -1926,O'Reilly Inc,1,366 -1927,"Jacobson, Ortiz and Smith",4,366 -1928,"Schroeder, Kutch and Dibbert",10,366 -1929,"Adams, Haley and Funk",2,366 -1930,"Kuhic, Emard and Heathcote",5,366 -1931,Gerlach Group,7,366 -1932,Wiegand-Gottlieb,11,366 -1933,"Simonis, Boyle and Nienow",9,366 -1934,Weimann-Hudson,6,367 -1935,"Koepp, Nader and Conroy",5,367 -1936,Kovacek-Mann,3,367 -1937,"Windler, Russel and Davis",8,367 -1938,Koch and Sons,7,367 -1939,"Aufderhar, McLaughlin and Mraz",4,368 -1940,Brown Group,3,368 -1941,"Schoen, Olson and Crooks",8,369 -1942,Hintz-Emmerich,2,369 -1943,Smith Group,10,369 -1944,Hirthe LLC,1,369 -1945,Nitzsche-Parisian,9,369 -1946,Lebsack-Zemlak,7,369 -1947,O'Reilly-Cummerata,11,369 -1948,Auer LLC,5,370 -1949,Greenfelder-Weber,1,370 -1950,Tromp Group,2,370 -1951,"Blanda, Stiedemann and Blick",8,370 -1952,Koch and Sons,1,370 -1953,"Beahan, Macejkovic and Fadel",11,370 -1954,Hartmann LLC,9,370 -1955,Hoppe Inc,2,370 -1956,Farrell Group,7,370 -1957,Grady-Abbott,7,370 -1958,"Shanahan, Funk and Strosin",4,371 -1959,Boyle-Crooks,4,371 -1960,"Kozey, Davis and Brown",1,371 -1961,Kuhn Group,7,371 -1962,Blick-Dibbert,11,371 -1963,"Leuschke, Skiles and Kuvalis",7,371 -1964,"Gorczany, Schaefer and Kutch",11,371 -1965,Lynch LLC,6,372 -1966,Ferry-Ward,8,373 -1967,Kreiger and Sons,10,373 -1968,Stamm-Zulauf,4,373 -1969,Walker-Berge,1,373 -1970,Monahan-Rau,7,373 -1971,Hermann Group,11,373 -1972,Lubowitz-Berge,1,373 -1973,Hodkiewicz-Hane,11,374 -1974,Yost LLC,2,374 -1975,"Fritsch, Littel and Kautzer",8,374 -1976,Willms-Runolfsson,8,374 -1977,Wiegand and Sons,11,374 -1978,Romaguera Inc,5,374 -1979,Walker Inc,8,374 -1980,Berge Group,8,374 -1981,"Legros, Maggio and Haley",4,374 -1982,"Davis, Franecki and Robel",9,375 -1983,Bernhard-Schimmel,11,375 -1984,Gibson and Sons,10,376 -1985,Stark and Sons,11,376 -1986,Lehner Inc,7,376 -1987,Hettinger-West,11,376 -1988,"Dickens, Wilkinson and Runolfsson",4,376 -1989,"Berge, Turner and Senger",11,376 -1990,"Kerluke, Quitzon and Willms",4,377 -1991,Weimann LLC,9,377 -1992,"Boyle, Romaguera and Farrell",9,377 -1993,Rau Group,5,377 -1994,"Donnelly, Weissnat and Crona",1,377 -1995,Vandervort-Graham,4,377 -1996,Stehr-McDermott,7,378 -1997,"Frami, Dicki and Jakubowski",7,378 -1998,"Corwin, Gleason and Durgan",4,378 -1999,Stark and Sons,7,378 -2000,"Schoen, Turner and Carroll",5,378 -2001,Runte Inc,11,378 -2002,"Price, Pouros and Hahn",1,378 -2003,"Gottlieb, Russel and Howell",10,379 -2004,Murray-Denesik,3,379 -2005,Williamson-Buckridge,11,379 -2006,Bergnaum-Wintheiser,6,379 -2007,Hilpert LLC,3,379 -2008,Weissnat LLC,9,379 -2009,Smitham-O'Connell,4,380 -2010,"Glover, Lehner and Collier",3,380 -2011,Boyle Inc,11,380 -2012,"Bartoletti, Hermiston and Lang",1,380 -2013,Bogisich-O'Conner,11,380 -2014,Mante Inc,1,381 -2015,"King, Wilkinson and Strosin",5,382 -2016,Rowe-Collins,7,382 -2017,"Ortiz, Ritchie and Bode",2,382 -2018,Cremin-Pfeffer,1,382 -2019,"Bruen, Carroll and Will",8,382 -2020,"Maggio, Gerhold and Corwin",5,383 -2021,McKenzie-Carroll,2,383 -2022,Satterfield and Sons,7,384 -2023,"Dickens, Brakus and Donnelly",5,384 -2024,Donnelly Group,5,384 -2025,Jakubowski-Dibbert,10,384 -2026,Spinka-Schaden,6,385 -2027,"Haley, Oberbrunner and Murray",1,385 -2028,"Sauer, Kirlin and Lindgren",4,385 -2029,Blick-Feest,9,385 -2030,Bahringer-O'Kon,5,385 -2031,Kohler-Wuckert,1,385 -2032,"Tillman, Stehr and Watsica",4,385 -2033,Ryan-Walter,7,385 -2034,"Gerhold, Considine and Kohler",4,386 -2035,McClure-Botsford,6,387 -2036,Howell-Lubowitz,11,387 -2037,"Upton, Greenfelder and Olson",8,387 -2038,Quigley Group,9,387 -2039,Stamm Group,5,387 -2040,Cormier and Sons,4,387 -2041,"Kulas, Blick and Casper",10,387 -2042,Osinski Group,1,387 -2043,Champlin Inc,10,388 -2044,McClure-Kuhic,1,388 -2045,Pfannerstill-Funk,10,389 -2046,"Goyette, Connelly and Pacocha",3,390 -2047,Reichert Group,6,390 -2048,Stroman and Sons,11,390 -2049,Armstrong Inc,5,390 -2050,"Corwin, Moore and McLaughlin",10,390 -2051,Collins LLC,9,390 -2052,Stokes and Sons,9,390 -2053,"Lueilwitz, Senger and Rau",10,390 -2054,"Schroeder, Huel and Langosh",6,391 -2055,"Vandervort, Cormier and Hettinger",2,391 -2056,Kertzmann and Sons,4,391 -2057,Crona-Schamberger,2,392 -2058,Steuber Group,10,393 -2059,"Lind, Hauck and Gerhold",3,394 -2060,Parker Inc,9,395 -2061,"Gusikowski, McKenzie and Toy",2,395 -2062,Goodwin Group,2,395 -2063,"Ratke, Ullrich and O'Conner",10,395 -2064,"Rogahn, Gerlach and Mosciski",9,395 -2065,"Littel, Pagac and Rosenbaum",4,395 -2066,"Rempel, Prosacco and Jaskolski",9,395 -2067,McKenzie LLC,8,395 -2068,Predovic Inc,6,395 -2069,Kihn LLC,2,396 -2070,Harvey-Dach,1,396 -2071,Miller LLC,11,396 -2072,Runolfsson Inc,8,396 -2073,"Greenholt, McClure and Effertz",3,396 -2074,Mertz Group,2,397 -2075,"Williamson, Gutkowski and Rohan",1,397 -2076,Cassin-Senger,1,397 -2077,"Turcotte, Gleichner and O'Keefe",4,397 -2078,VonRueden LLC,8,397 -2079,"Reynolds, Schaden and Beier",9,397 -2080,"Moore, Morissette and Konopelski",3,398 -2081,Wehner and Sons,2,398 -2082,Jerde-Skiles,6,398 -2083,Gottlieb-Howell,8,398 -2084,Bauch-Ondricka,10,398 -2085,Lind Group,2,398 -2086,"Murphy, Littel and Tillman",7,398 -2087,Buckridge and Sons,6,398 -2088,Spinka Inc,6,398 -2089,Crooks-Breitenberg,6,398 -2090,Brakus-Terry,4,399 -2091,Buckridge Inc,6,399 -2092,Moore-Cruickshank,11,399 -2093,Aufderhar-Larkin,5,399 -2094,Marvin Inc,7,399 -2095,Kunze-Hessel,9,399 -2096,"Hilpert, Sanford and Ritchie",8,399 -2097,McLaughlin-Metz,1,400 -2098,Wehner LLC,5,400 -2099,"Rowe, Jacobson and Zieme",2,400 -2100,Kling LLC,6,400 -2101,Hyatt LLC,10,400 -2102,"Harris, Bernier and Rosenbaum",1,400 -2103,Bartell Inc,8,400 -2104,Crooks Group,6,400 -2105,"Schmidt, Schmitt and McClure",10,400 -2106,Beahan LLC,6,400 -2107,Hilll Group,4,401 -2108,"Kub, Robel and Paucek",6,401 -2109,Zulauf-Hackett,8,401 -2110,Kuhlman Group,11,401 -2111,Gutkowski-Prohaska,9,402 -2112,Swaniawski and Sons,2,402 -2113,Labadie and Sons,4,402 -2114,"Pfeffer, Kuphal and Spinka",2,402 -2115,Macejkovic LLC,4,402 -2116,Dare-Shanahan,5,402 -2117,"Anderson, Rau and Strosin",1,402 -2118,"Kuhlman, Gleichner and Stokes",4,402 -2119,McDermott Inc,6,402 -2120,Hudson-Aufderhar,10,402 -2121,"Pacocha, Rippin and Kreiger",3,403 -2122,"Zulauf, Beatty and Donnelly",9,403 -2123,Kunde LLC,4,403 -2124,Hahn Inc,11,403 -2125,"Kozey, Ziemann and Yost",3,403 -2126,Rempel-Kuphal,3,403 -2127,"Beier, O'Reilly and Considine",6,403 -2128,Goodwin-Miller,8,403 -2129,Morar-Mosciski,4,404 -2130,Hoppe LLC,11,405 -2131,Kling-Huels,3,405 -2132,"Greenfelder, Rice and McGlynn",7,405 -2133,Streich-Will,10,405 -2134,"Runte, Beer and Brown",2,405 -2135,Block-Turcotte,3,405 -2136,"Homenick, Auer and Ward",5,405 -2137,Kirlin LLC,11,405 -2138,"Kozey, Rolfson and Upton",4,406 -2139,"Kutch, Altenwerth and Goyette",9,406 -2140,Konopelski and Sons,1,406 -2141,Collins-McGlynn,2,406 -2142,Turner-Wilderman,3,407 -2143,"Lowe, Kerluke and Ullrich",8,408 -2144,"Koelpin, Kautzer and Prohaska",2,408 -2145,"Terry, Jakubowski and Quitzon",5,408 -2146,"Hansen, Cole and Bogan",7,408 -2147,Bins and Sons,2,408 -2148,Stoltenberg-Abernathy,10,408 -2149,Stokes LLC,1,408 -2150,"Gusikowski, Rogahn and Weimann",2,408 -2151,Kuhic-Batz,7,408 -2152,Hirthe-Dare,5,409 -2153,Hamill-Strosin,4,409 -2154,"Trantow, Cummings and Wyman",1,410 -2155,Hauck Inc,5,410 -2156,"Rath, Gottlieb and Harvey",8,410 -2157,"Mraz, Schaefer and Hauck",3,410 -2158,Shanahan-Beatty,6,410 -2159,Parker-Hartmann,8,411 -2160,Leffler Group,6,411 -2161,O'Hara Group,10,411 -2162,Strosin-Roberts,11,411 -2163,D'Amore-Beer,10,411 -2164,Hintz-Cartwright,9,411 -2165,Lesch-White,10,411 -2166,"Feeney, Rau and Wisoky",10,411 -2167,Fay-Windler,7,412 -2168,"Toy, Connelly and Quigley",10,412 -2169,Nitzsche LLC,11,412 -2170,Schneider Group,7,412 -2171,Schneider Group,8,412 -2172,"Ernser, Kuhic and Willms",5,412 -2173,"Langworth, Glover and Gaylord",11,413 -2174,"Sipes, Schmidt and Jaskolski",9,413 -2175,Mills Inc,10,413 -2176,Stracke and Sons,3,413 -2177,Schowalter-Doyle,3,413 -2178,"Schaden, Sanford and Langosh",9,413 -2179,"Langworth, Greenholt and Johnston",11,413 -2180,"Fadel, Goldner and Abernathy",11,413 -2181,Bradtke-Nader,2,413 -2182,West and Sons,8,413 -2183,Beahan Inc,6,414 -2184,Lindgren Inc,10,414 -2185,"Hegmann, Weimann and O'Reilly",6,415 -2186,"Terry, Larkin and Jerde",8,415 -2187,Brown-Jast,2,415 -2188,Herzog Group,10,415 -2189,Lind Group,10,415 -2190,Boyle-Collier,8,415 -2191,Hammes Inc,2,415 -2192,"Ruecker, Rolfson and Willms",6,415 -2193,Spencer LLC,3,415 -2194,Kilback-Weimann,7,415 -2195,Swaniawski LLC,2,416 -2196,Casper-Bergnaum,3,416 -2197,Greenholt Group,8,416 -2198,Parisian LLC,2,416 -2199,"Keebler, Muller and Kling",11,416 -2200,"Hand, Greenfelder and Schoen",1,416 -2201,Hane-Schiller,9,416 -2202,"Hodkiewicz, Baumbach and Kovacek",8,417 -2203,"Paucek, McDermott and Doyle",1,417 -2204,Wintheiser Group,11,417 -2205,Maggio and Sons,8,417 -2206,Gleason-Daniel,11,417 -2207,Walsh-Nitzsche,3,418 -2208,"Champlin, Will and Gutmann",7,419 -2209,Stehr Group,9,420 -2210,Rowe Group,6,420 -2211,"Schimmel, Ullrich and Lebsack",8,420 -2212,Hand-Konopelski,7,420 -2213,Glover-Ward,6,420 -2214,"Barton, Ziemann and Koss",10,420 -2215,"Witting, Hansen and Harvey",9,420 -2216,Jacobson and Sons,5,420 -2217,"Turner, Keeling and Hills",10,421 -2218,Wisoky Group,3,421 -2219,"Corwin, Crona and Anderson",10,421 -2220,"Hodkiewicz, Kunze and Ortiz",8,421 -2221,Zulauf Inc,5,421 -2222,Haag-Goyette,9,421 -2223,Schmeler-West,6,421 -2224,"Crona, Ziemann and Ullrich",6,421 -2225,Rosenbaum and Sons,2,421 -2226,"Marquardt, Tromp and Bartoletti",4,422 -2227,Torp Inc,3,422 -2228,Ritchie Group,6,422 -2229,Zieme and Sons,6,423 -2230,Bartoletti-Erdman,7,423 -2231,"Carter, Ward and Davis",2,423 -2232,Trantow and Sons,10,423 -2233,"Kunze, Hickle and Lebsack",9,423 -2234,Bradtke Group,2,423 -2235,Upton-O'Hara,2,423 -2236,"Huel, Leuschke and Feeney",5,423 -2237,"Huel, Rippin and Roberts",9,423 -2238,Tremblay-Reichert,11,423 -2239,"Bogisich, Wilkinson and Hills",8,424 -2240,O'Hara-Schmitt,9,424 -2241,Hyatt Group,9,424 -2242,Nicolas and Sons,7,424 -2243,Swaniawski-Ziemann,1,424 -2244,Pfeffer Group,8,424 -2245,Hessel-Kuhn,3,424 -2246,"Erdman, Smitham and Runte",2,425 -2247,Littel-Predovic,9,425 -2248,Thompson Group,11,425 -2249,Jacobson Group,5,425 -2250,Klocko-Schroeder,3,425 -2251,Kautzer and Sons,10,425 -2252,Ebert LLC,10,426 -2253,Moen Group,7,426 -2254,Funk and Sons,10,426 -2255,"Kris, Gusikowski and Yost",7,426 -2256,Ratke Inc,9,426 -2257,Gutkowski-Shields,3,426 -2258,Hamill-D'Amore,3,426 -2259,Weber Group,6,426 -2260,"Boehm, Mills and Marquardt",4,427 -2261,"Langosh, Beer and Wiza",8,428 -2262,Wolff and Sons,3,428 -2263,Emmerich Group,10,428 -2264,Gaylord-Botsford,11,428 -2265,Stracke Group,11,428 -2266,Schaefer and Sons,10,428 -2267,Boyle-Dooley,3,428 -2268,"Homenick, Quigley and Fadel",10,428 -2269,"Runolfsson, Abbott and Medhurst",5,428 -2270,McCullough-Hauck,9,429 -2271,"Wisozk, Harvey and Stiedemann",11,429 -2272,Hansen and Sons,5,430 -2273,"Shields, Waters and Terry",2,430 -2274,Lebsack-Reichel,1,430 -2275,Anderson-Jacobson,3,431 -2276,Armstrong Inc,8,431 -2277,"Boehm, Lynch and Wolf",5,431 -2278,Murphy Group,10,431 -2279,Moore-Huel,10,431 -2280,"Kerluke, Kertzmann and Hodkiewicz",3,431 -2281,"Windler, Feeney and Von",1,431 -2282,Rogahn-Vandervort,1,431 -2283,Roob LLC,11,431 -2284,Rempel Group,5,432 -2285,Bins-Pollich,11,432 -2286,"Runte, Effertz and Denesik",3,432 -2287,Reinger-Bergnaum,8,432 -2288,Stoltenberg-Ebert,4,432 -2289,"Kub, Walker and Smitham",4,433 -2290,Runolfsdottir-Wilderman,7,433 -2291,Rohan Group,10,433 -2292,Orn Inc,6,433 -2293,Flatley-Blanda,5,433 -2294,Bartell-Howe,5,433 -2295,Hagenes Group,1,434 -2296,Luettgen and Sons,9,434 -2297,Boyer LLC,6,434 -2298,Ward Inc,1,435 -2299,Kirlin Inc,8,435 -2300,Bashirian-Von,11,435 -2301,Bauch Inc,4,435 -2302,"Ankunding, Weber and Satterfield",2,435 -2303,Nolan-Hayes,4,435 -2304,Bernier-Schaden,6,435 -2305,Wiza Group,1,435 -2306,Franecki LLC,11,435 -2307,Pagac Inc,2,435 -2308,"Bartoletti, Koss and Dietrich",2,436 -2309,"Kling, O'Hara and Predovic",6,437 -2310,Dach-Toy,1,437 -2311,Turcotte-Jenkins,5,437 -2312,Batz-Kerluke,2,437 -2313,Botsford-Monahan,10,437 -2314,"Abshire, Conroy and Murazik",3,437 -2315,Hayes Group,10,437 -2316,Langosh-Nienow,8,437 -2317,Pfannerstill Inc,8,437 -2318,"Schinner, Medhurst and Batz",5,438 -2319,DuBuque-Treutel,8,438 -2320,"Kihn, Donnelly and Boyer",6,438 -2321,Schumm-Lesch,6,438 -2322,Bergnaum LLC,6,438 -2323,"Feil, Gislason and Christiansen",5,438 -2324,Becker-Veum,5,439 -2325,"Schneider, Gutkowski and Morar",5,439 -2326,Barrows-Sanford,8,439 -2327,Waters-Hudson,8,439 -2328,Bins-Murray,5,439 -2329,Hand Inc,6,439 -2330,Rempel-Mills,10,439 -2331,"Hartmann, Braun and Wilkinson",5,439 -2332,"Emard, Tromp and Dicki",11,439 -2333,Wiegand LLC,10,440 -2334,Herman LLC,2,440 -2335,Wilkinson and Sons,3,440 -2336,"O'Conner, Weissnat and Kris",3,441 -2337,"Simonis, Bahringer and Hahn",6,441 -2338,"Gleichner, Nolan and Green",3,441 -2339,"Dicki, Bahringer and O'Reilly",2,441 -2340,Ullrich LLC,2,441 -2341,"Mohr, Wolff and Terry",9,441 -2342,Wehner Inc,2,442 -2343,"Eichmann, Rippin and Mayert",7,442 -2344,Hermann-Klocko,2,443 -2345,Tromp Inc,5,443 -2346,Keebler LLC,4,443 -2347,"Kohler, Larkin and Predovic",5,443 -2348,Gibson-Schulist,6,443 -2349,Orn Group,4,444 -2350,Lang LLC,10,444 -2351,Cummerata-White,10,444 -2352,Terry-Borer,2,444 -2353,Olson Inc,6,444 -2354,Streich-Halvorson,8,444 -2355,Kutch Group,10,444 -2356,"Hoppe, Jacobs and Kuhn",6,445 -2357,"Homenick, Pacocha and Kassulke",9,445 -2358,Wiza LLC,7,445 -2359,Funk-Dooley,11,445 -2360,Boehm and Sons,5,445 -2361,Vandervort LLC,3,445 -2362,Becker Group,9,445 -2363,Conroy-Brekke,8,445 -2364,Rempel-Reinger,7,446 -2365,"Huel, Swift and King",7,447 -2366,MacGyver-Koelpin,7,447 -2367,Wintheiser-Klocko,6,447 -2368,Okuneva LLC,8,447 -2369,Kemmer-Zieme,2,447 -2370,Koelpin-Ritchie,8,447 -2371,"Donnelly, Ruecker and Lakin",9,447 -2372,"Hermiston, Leannon and Greenholt",1,447 -2373,Heidenreich-Armstrong,8,447 -2374,"Osinski, Ankunding and Kirlin",6,447 -2375,Haag Group,1,448 -2376,"Mraz, Greenfelder and Fritsch",3,448 -2377,Corwin and Sons,11,448 -2378,O'Conner-Breitenberg,5,448 -2379,"Haley, Glover and Considine",10,448 -2380,Adams LLC,2,448 -2381,"Turcotte, Friesen and Kovacek",5,448 -2382,"Smith, Hand and Nicolas",11,448 -2383,Waters LLC,10,449 -2384,"Lynch, Ryan and Heller",3,449 -2385,Mertz LLC,1,449 -2386,"Robel, Stroman and Batz",8,449 -2387,Buckridge Inc,11,449 -2388,Dibbert Group,5,449 -2389,Schaden Inc,2,449 -2390,"Hauck, Flatley and Wilkinson",3,450 -2391,Hauck-Miller,2,450 -2392,Gorczany-Wuckert,6,450 -2393,Gusikowski Inc,4,450 -2394,"Sauer, Walker and Bayer",10,450 -2395,Legros-Morar,2,451 -2396,Monahan-Ortiz,4,451 -2397,Will Inc,2,452 -2398,Ratke-Goldner,8,452 -2399,Pollich Inc,9,452 -2400,"Anderson, Gaylord and Larson",8,452 -2401,Thompson Inc,8,452 -2402,Zulauf-Gorczany,1,453 -2403,Bernier and Sons,3,453 -2404,Will-Leannon,9,453 -2405,Morar-Heidenreich,8,453 -2406,"Jerde, Kemmer and Abbott",9,453 -2407,Anderson-Bradtke,4,453 -2408,Fahey and Sons,6,453 -2409,"Greenfelder, Bergstrom and Buckridge",11,453 -2410,"Rice, Rutherford and Cartwright",3,453 -2411,Goyette-Legros,11,454 -2412,"Waters, Kuhlman and McDermott",9,454 -2413,"Larson, Beatty and Leannon",11,454 -2414,Littel-Ruecker,2,454 -2415,Heidenreich-Streich,6,454 -2416,Reichel-Mayer,2,454 -2417,Kunze LLC,6,454 -2418,Zboncak Inc,5,454 -2419,Jenkins-Gibson,3,454 -2420,Runolfsdottir-Hackett,2,454 -2421,Mitchell Group,4,455 -2422,"Gleichner, Denesik and Mitchell",10,455 -2423,"Kuhlman, Keebler and McCullough",3,455 -2424,Larson-Crist,3,455 -2425,Glover and Sons,2,455 -2426,Becker-Thompson,2,455 -2427,Mertz-Roob,3,456 -2428,O'Reilly-Kshlerin,8,456 -2429,Morissette-Reinger,6,456 -2430,Kassulke-Hackett,8,456 -2431,Veum-Streich,10,456 -2432,Littel-Wiegand,9,456 -2433,"Cartwright, Medhurst and Gusikowski",8,456 -2434,Sauer-Mohr,11,456 -2435,Schinner Inc,2,457 -2436,"Muller, Hansen and Lakin",8,457 -2437,Schuster-Christiansen,9,457 -2438,Little Inc,9,457 -2439,Kilback-Kutch,2,457 -2440,Krajcik Group,8,457 -2441,Macejkovic Inc,6,457 -2442,"Pollich, Pfannerstill and Weissnat",1,457 -2443,Mayer LLC,5,457 -2444,"Grant, Robel and McLaughlin",1,457 -2445,"Quitzon, Roberts and Volkman",8,458 -2446,"Pollich, Leffler and Tremblay",6,458 -2447,Wehner-Grimes,9,458 -2448,Hilll and Sons,6,458 -2449,"Ziemann, Grimes and Rosenbaum",8,458 -2450,Hackett Group,2,458 -2451,Rippin-O'Connell,7,458 -2452,Purdy-Kris,9,458 -2453,"Wilkinson, Lemke and Kessler",2,458 -2454,Thiel and Sons,6,459 -2455,Satterfield-Parisian,3,459 -2456,"Treutel, Zulauf and Robel",2,459 -2457,Grimes Inc,8,459 -2458,Harris Group,5,459 -2459,Johnston-Kreiger,4,460 -2460,"Hodkiewicz, Murphy and Beatty",2,461 -2461,Blanda Inc,3,461 -2462,Schmitt LLC,1,461 -2463,Reichert-Bauch,3,461 -2464,"Lakin, Volkman and Mayert",5,461 -2465,Kihn-Witting,6,462 -2466,Larson Inc,6,462 -2467,Douglas-Gusikowski,5,462 -2468,Tillman-Schowalter,11,462 -2469,"Wilderman, Veum and Gleichner",3,462 -2470,Ankunding-Aufderhar,3,462 -2471,Altenwerth Inc,9,462 -2472,Strosin-Nolan,8,462 -2473,Wiza-Mayert,3,463 -2474,"Hills, Pfeffer and Crona",1,463 -2475,"Predovic, MacGyver and West",1,463 -2476,Rutherford Group,2,464 -2477,Dare-Crist,6,464 -2478,"Aufderhar, VonRueden and Hamill",3,464 -2479,Nikolaus-Sporer,6,464 -2480,Nader-Armstrong,11,464 -2481,"Marvin, Little and Hilll",9,464 -2482,Vandervort Group,2,465 -2483,"McLaughlin, Spencer and Stehr",6,465 -2484,Miller Inc,1,465 -2485,"Fritsch, Stark and Gulgowski",7,465 -2486,"Senger, Miller and Spencer",5,465 -2487,Hintz Group,7,465 -2488,"Franecki, Fay and Ortiz",3,466 -2489,Schinner-Rempel,6,466 -2490,Sanford-Huels,6,466 -2491,"Wehner, Hansen and Hirthe",4,466 -2492,Borer-Weber,5,466 -2493,Crooks Inc,9,466 -2494,Orn Inc,4,466 -2495,Lesch LLC,8,466 -2496,Reinger Group,5,467 -2497,Thompson and Sons,5,467 -2498,Nolan Inc,7,467 -2499,Walter-MacGyver,11,467 -2500,Cartwright Inc,4,467 -2501,Bashirian-Lang,7,468 -2502,Green Group,1,468 -2503,Rogahn and Sons,3,468 -2504,"Kovacek, Willms and Heidenreich",4,468 -2505,Wehner-Homenick,11,468 -2506,Abshire-Kiehn,6,468 -2507,Weimann Inc,8,468 -2508,"Simonis, Leffler and Barrows",9,468 -2509,Jast-Rice,4,469 -2510,Turner-Bergstrom,7,469 -2511,"Keeling, Ratke and Muller",5,469 -2512,Reichert Group,1,469 -2513,Corkery and Sons,11,469 -2514,Smitham-Beatty,7,469 -2515,Rodriguez and Sons,11,470 -2516,Okuneva-Stiedemann,3,470 -2517,Hackett Inc,2,470 -2518,Lang-Gerlach,3,470 -2519,Ward Inc,5,470 -2520,Corwin and Sons,9,470 -2521,"Daugherty, Hermann and Carter",2,470 -2522,"Champlin, Bahringer and O'Kon",4,470 -2523,Bergstrom Inc,3,470 -2524,Orn Inc,9,471 -2525,Quigley-Lang,2,471 -2526,"Corkery, Will and Conn",8,472 -2527,"Thompson, Bogisich and Daniel",3,472 -2528,"Aufderhar, Bergnaum and Anderson",1,472 -2529,"Wisoky, Donnelly and Larkin",2,473 -2530,Stamm-Casper,7,473 -2531,Weimann LLC,5,473 -2532,Kerluke-Glover,1,473 -2533,Murphy and Sons,9,473 -2534,"Veum, Fisher and Jacobson",10,473 -2535,Mayert-Heidenreich,6,473 -2536,Zulauf Inc,2,473 -2537,"Rippin, Dooley and Bayer",11,473 -2538,Konopelski-Effertz,2,473 -2539,"Reynolds, Lowe and Kuhic",2,474 -2540,"Runolfsdottir, Armstrong and Hane",7,474 -2541,Sawayn and Sons,9,474 -2542,Botsford and Sons,3,474 -2543,"Raynor, Jones and Parker",3,474 -2544,Spencer LLC,7,474 -2545,Bahringer-Hirthe,10,474 -2546,Dare Group,6,475 -2547,Koss and Sons,2,475 -2548,Altenwerth Group,9,475 -2549,Prohaska-Doyle,2,475 -2550,"Gusikowski, Bergstrom and Weimann",7,475 -2551,"Ankunding, Kuhn and Grady",6,475 -2552,"Gulgowski, Berge and Ruecker",4,475 -2553,Koss Group,2,475 -2554,Will-Fahey,10,475 -2555,Greenfelder Group,1,476 -2556,Aufderhar Group,3,476 -2557,"Yost, Greenholt and Casper",8,476 -2558,"Ledner, Smith and Huel",1,476 -2559,"Hamill, Rutherford and McClure",6,476 -2560,"Ward, Wilkinson and Hackett",9,477 -2561,"Cummings, Orn and Roberts",11,477 -2562,"Mann, Abernathy and Bechtelar",9,477 -2563,Gorczany LLC,10,477 -2564,Weimann Inc,10,477 -2565,Weber-Murphy,9,477 -2566,Rolfson-Towne,3,477 -2567,Schmeler-Erdman,5,477 -2568,Gibson Group,7,478 -2569,White LLC,3,478 -2570,"Mueller, Turner and Gerlach",10,478 -2571,"Hessel, Bergnaum and Kuhlman",6,478 -2572,"Mayert, Hayes and Heidenreich",6,478 -2573,Prohaska Inc,8,478 -2574,"Predovic, Koch and Cole",3,478 -2575,"D'Amore, Wunsch and Kerluke",3,478 -2576,Ankunding Group,7,478 -2577,Hermann Group,1,478 -2578,Schaden Group,9,479 -2579,Schinner LLC,8,480 -2580,"Cronin, Orn and Spencer",1,480 -2581,"Kris, Beatty and Bernhard",10,480 -2582,Conroy and Sons,10,480 -2583,Towne-Bosco,7,480 -2584,"Stroman, Ruecker and Ankunding",8,480 -2585,Kessler-Howell,4,480 -2586,"Homenick, Stroman and Klocko",7,480 -2587,Kub Inc,9,480 -2588,Fisher-Haley,11,481 -2589,"Pouros, Lynch and Aufderhar",8,482 -2590,Swaniawski-Schmeler,11,482 -2591,Ziemann-Ullrich,9,482 -2592,Crooks-Waters,5,482 -2593,Stark and Sons,5,482 -2594,Bins and Sons,5,482 -2595,"Senger, Graham and Corkery",11,482 -2596,"Conroy, Kshlerin and Leuschke",11,482 -2597,Haag-Rice,6,482 -2598,"Toy, Walter and Feest",11,482 -2599,Mills and Sons,10,483 -2600,"Huels, Parker and Gutkowski",6,483 -2601,Langworth Group,1,483 -2602,"Jacobs, Kihn and Bartoletti",7,483 -2603,Goyette Inc,1,483 -2604,Williamson and Sons,7,483 -2605,Gibson and Sons,5,483 -2606,Kub Inc,6,483 -2607,"Okuneva, Ernser and Kuhlman",5,483 -2608,Funk and Sons,8,484 -2609,Daniel and Sons,3,484 -2610,"Jast, Witting and Flatley",3,484 -2611,"Harris, Wolff and Bergstrom",5,484 -2612,"Hagenes, Erdman and D'Amore",4,485 -2613,Farrell LLC,8,485 -2614,Wehner-Rosenbaum,4,485 -2615,White-Harvey,6,485 -2616,Borer-Quigley,8,485 -2617,Hane-Stark,3,485 -2618,Sipes Inc,11,485 -2619,"Nicolas, Cruickshank and Treutel",3,485 -2620,"Windler, Eichmann and Bosco",10,485 -2621,Price LLC,1,486 -2622,"Trantow, Miller and Yundt",5,487 -2623,Moen-Graham,5,487 -2624,"McDermott, Green and Mertz",2,487 -2625,Will Inc,3,487 -2626,"Gleason, Batz and Lubowitz",11,487 -2627,"Christiansen, Franecki and Spencer",6,488 -2628,"Cassin, Windler and Wilderman",6,488 -2629,"MacGyver, Cole and Treutel",2,488 -2630,Little-Dicki,2,488 -2631,Reichel LLC,4,488 -2632,Runolfsdottir Inc,2,488 -2633,Cormier and Sons,3,488 -2634,Casper Inc,8,488 -2635,Dibbert-Waters,2,488 -2636,Cassin-Wiza,4,488 -2637,"Bailey, Breitenberg and Fay",6,489 -2638,MacGyver-Morar,3,489 -2639,Sporer-Sipes,4,489 -2640,Kuhlman LLC,2,489 -2641,Thiel-Gusikowski,6,490 -2642,Bosco-Bradtke,8,490 -2643,"Crooks, Kemmer and Green",4,490 -2644,Rath Group,6,490 -2645,Schoen and Sons,2,491 -2646,Heidenreich Inc,10,491 -2647,"Cruickshank, Hudson and Haag",4,492 -2648,"Lindgren, Feest and Gaylord",2,492 -2649,Jacobs-Schuppe,9,492 -2650,Bins and Sons,2,492 -2651,Kihn Group,1,492 -2652,"Grady, Wyman and Bechtelar",5,492 -2653,"Simonis, McDermott and Balistreri",1,492 -2654,Luettgen-Pouros,8,492 -2655,Glover-Hills,11,493 -2656,Langosh and Sons,10,493 -2657,Goyette-Mitchell,4,493 -2658,Becker Inc,10,493 -2659,"Kuhn, Reynolds and McGlynn",2,494 -2660,"Crona, Yundt and Turcotte",4,494 -2661,Daniel-O'Keefe,2,494 -2662,Oberbrunner Inc,7,495 -2663,Kunze and Sons,5,495 -2664,"Dickinson, Brakus and Heathcote",8,495 -2665,Morissette Group,3,495 -2666,Lemke-Bernhard,4,495 -2667,Renner LLC,11,496 -2668,"King, Kessler and Zboncak",11,496 -2669,Toy LLC,5,496 -2670,"Veum, Berge and Cruickshank",9,496 -2671,Ondricka Group,4,496 -2672,Herzog LLC,8,497 -2673,Lind-Wehner,5,497 -2674,Kautzer LLC,7,497 -2675,"Kozey, Kuhn and Koepp",10,497 -2676,Cruickshank Group,4,498 -2677,Koepp-Haley,8,498 -2678,Koelpin LLC,11,499 -2679,Collins-Oberbrunner,4,499 -2680,"Leannon, Mohr and Nicolas",1,499 -2681,Erdman-Blanda,4,500 -2682,"Quigley, Nienow and Lang",1,500 -2683,Wiza-Mills,4,500 -2684,Bahringer Group,10,500 -2685,Rolfson-Willms,5,500 -2686,Friesen-Ullrich,9,500 -2687,Pacocha Group,5,500 -2688,Hauck-Jaskolski,8,500 -2689,Durgan-Moen,1,500 -2690,Mann-Lueilwitz,4,500